:root {
  color-scheme: light;
  --tc-page: #f7f9fc;
  --tc-surface: #fff;
  --tc-text: #0f172a;
  --tc-muted: #475569;
  --tc-border: #e2e8f0;
  --tc-primary: #2563eb;
  --tc-primary-pressed: #1d4ed8;
  --tc-soft: #eff6ff;
  --tc-frame-width: clamp(196px, 56vw, 216px);
  --tc-dot-size: 7px;
  --tc-dot-growth: 13px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  background: var(--tc-page);
}
body {
  margin: 0;
  color: var(--tc-text);
  background: var(--tc-page);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
[hidden] {
  display: none !important;
}
#tc-icons {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
}
button,
.tc-social {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid #93b4ff;
  outline-offset: 4px;
}
.tc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.tc-skip {
  position: fixed;
  z-index: 10;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--tc-text);
  color: #fff;
  transform: translateY(-160%);
}
.tc-skip:focus {
  transform: none;
}
.tc-site {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding: 20px 20px 24px;
}
.tc-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 24px 20px;
  border: 1px solid #dce5f1;
  border-radius: 22px;
  background-color: var(--tc-surface);
  background-image: radial-gradient(
    ellipse 90% 75% at 50% 0%,
    rgb(219 234 254 / 65%) 0%,
    rgb(239 246 255 / 35%) 50%,
    rgb(239 246 255 / 0%) 100%
  );
  box-shadow:
    0 2px 6px rgb(15 23 42 / 2%),
    0 12px 28px -12px rgb(30 64 175 / 13%);
}
.tc-app-details {
  min-width: 0;
  text-align: center;
}
.tc-app-icon-frame {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid #dde3ec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 12px rgb(15 23 42 / 7%);
}
.tc-app-icon-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tc-app-icon-frame > span {
  display: none;
  color: var(--tc-muted);
  font-weight: 600;
  font-size: 1rem;
}
.tc-app-icon-frame[data-missing="true"] > span {
  display: block;
}
.tc-app-details h1 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
}
.tc-platform {
  margin: 10px 0 0;
  color: var(--tc-muted);
  font-size: 0.875rem;
}
.tc-metadata {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--tc-muted);
  font-size: 0.875rem;
}
.tc-version {
  padding: 4px 9px;
  border-radius: 8px;
  background: var(--tc-soft);
  color: var(--tc-primary-pressed);
}
.tc-download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  min-height: 56px;
  margin: 22px 0 0;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--tc-primary);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 14px rgb(37 99 235 / 18%);
  transition:
    background-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.tc-download-icon {
  object-fit: contain;
}

.tc-download-label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  line-height: 22px;
  white-space: nowrap;
}

.tc-download-button:hover {
  background: var(--tc-primary-pressed);
  box-shadow: 0 8px 18px rgb(37 99 235 / 24%);
  transform: translateY(-1px);
}

.tc-download-button:active {
  background: var(--tc-primary-pressed);
  box-shadow: 0 2px 5px rgb(37 99 235 / 14%);
  transform: scale(0.985);
}
.tc-floating-download {
  position: fixed;
  z-index: 15;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(28px, calc(env(safe-area-inset-bottom) + 12px));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--tc-primary);
  box-shadow: 0 6px 14px rgb(37 99 235 / 18%);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(0.94);
  transition:
    opacity 210ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 210ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 210ms,
    background-color 150ms ease,
    box-shadow 150ms ease;
  will-change: opacity, transform;
}
.tc-floating-download[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 210ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 210ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear,
    background-color 150ms ease,
    box-shadow 150ms ease;
}
.tc-floating-download .tc-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}
.tc-floating-download-label {
  display: none;
  white-space: nowrap;
}

@keyframes tc-download-spin {
  to {
    transform: rotate(360deg);
  }
}

.tc-download-button[data-download-state="busy"] .tc-download-icon,
.tc-floating-download[data-download-state="busy"] .tc-download-icon {
  display: none;
}

.tc-download-button[data-download-state="busy"]::before,
.tc-floating-download[data-download-state="busy"]::before {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: tc-download-spin 720ms linear infinite;
  content: "";
}

.tc-download-button:disabled,
.tc-floating-download[data-visible="true"]:disabled {
  cursor: default;
  opacity: 0.72;
}

.tc-download-button[data-download-state="busy"],
.tc-floating-download[data-visible="true"][data-download-state="busy"] {
  cursor: default;
}

.tc-icon {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tc-qr {
  display: none;
}
.tc-section {
  min-width: 0;
  margin-top: 30px;
}
.tc-section > h2 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.tc-section > p {
  margin: 0;
  color: var(--tc-muted);
  overflow-wrap: anywhere;
  white-space: pre-line;
}
.tc-details {
  display: block;
}
.tc-details > .tc-section + .tc-section {
  margin-top: 46px;
}
.tc-about > .tc-prose {
  max-width: 82ch;
}
.tc-prose {
  min-width: 0;
  color: var(--tc-muted);
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.tc-prose > * {
  margin: 0;
}
.tc-prose > * + * {
  margin-top: 14px;
}
.tc-prose strong {
  color: var(--tc-text);
  font-weight: 650;
}
.tc-prose mark {
  padding: 0.08em 0.28em;
  border-radius: 0.35em;
  background: #fef3c7;
  color: #92400e;
}
.tc-feature-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tc-feature-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--tc-border);
  border-radius: 16px;
  background: var(--tc-surface);
  box-shadow: 0 4px 14px rgb(15 23 42 / 3%);
}
.tc-feature-card--wide {
  grid-column: 1 / -1;
}
.tc-feature-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tc-feature-number {
  flex: 0 0 auto;
  min-width: 30px;
  padding-top: 2px;
  color: var(--tc-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.tc-feature-heading h3 {
  margin: 0;
  color: var(--tc-text);
  font-size: 1.0625rem;
  font-weight: 650;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.tc-feature-body {
  margin-top: 16px;
}
.tc-content-list {
  margin: 0;
  padding-left: 1.25rem;
}
.tc-content-list li + li {
  margin-top: 7px;
}
.tc-content-list li::marker {
  color: var(--tc-primary);
}
.tc-plan-sections {
  display: grid;
  gap: 22px;
}
.tc-plan-group {
  min-width: 0;
}
.tc-plan-group + .tc-plan-group {
  padding-top: 22px;
  border-top: 1px solid var(--tc-border);
}
.tc-plan-group h4,
.tc-lifetime-panel h4 {
  margin: 0;
  color: var(--tc-text);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.4;
}
.tc-plan-group > .tc-prose,
.tc-lifetime-panel > .tc-prose {
  margin-top: 12px;
}
.tc-plan-table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid var(--tc-border);
  border-spacing: 0;
  border-radius: 12px;
  background: var(--tc-surface);
  color: var(--tc-text);
  font-size: 0.9375rem;
  overflow: hidden;
}
.tc-plan-table th,
.tc-plan-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--tc-border);
  text-align: left;
  vertical-align: top;
}
.tc-plan-table thead th {
  background: var(--tc-soft);
  color: var(--tc-primary-pressed);
  font-weight: 650;
}
.tc-plan-table tbody th {
  font-weight: 600;
}
.tc-plan-table tbody tr:last-child th,
.tc-plan-table tbody tr:last-child td {
  border-bottom: 0;
}
.tc-plan-table td {
  color: var(--tc-muted);
}
.tc-limit-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tc-limit-options li {
  padding: 6px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: var(--tc-soft);
  color: var(--tc-primary-pressed);
  font-size: 0.875rem;
  font-weight: 650;
}
.tc-lifetime-panel {
  padding: 16px 18px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
}
.tc-gallery-window {
  position: relative;
  min-width: 0;
}
.tc-gallery-track {
  position: relative;
  display: flex;
  gap: 16px;
  width: 100%;
  min-width: 0;
  padding: 10px max(8px, calc((100% - var(--tc-frame-width)) / 2)) 20px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  touch-action: auto;
  border-radius: 12px;
}
.tc-gallery-track::-webkit-scrollbar {
  display: none;
}
.tc-gallery-track[data-dragging="true"] {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.tc-gallery-item {
  flex: 0 0 var(--tc-frame-width);
  min-width: 0;
  margin: 0;
  scroll-snap-align: center;
}
.tc-phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 258 / 547;
  border-radius: 13.32% / 6.28%;
  filter: drop-shadow(0 5px 7px rgb(15 23 42 / 10%));
}
.tc-phone-frame[data-missing="true"] {
  background: #172033;
  box-shadow: inset 0 0 0 1px #0b1220;
}
.tc-phone-screen {
  position: absolute;
  z-index: 1;
  top: 1.927185%;
  left: 3.636372%;
  width: 92.727194%;
  height: 96.145576%;
  overflow: hidden;
  border-radius: 11.274533% / 5.122507%;
  background: #f1f5f9;
}
.tc-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tc-phone-screen[data-missing="true"]::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #64748b;
  content: attr(data-empty-label);
  font-size: 0.875rem;
  text-align: center;
}
.tc-phone-frame > img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.tc-gallery img {
  -webkit-user-drag: none;
  user-select: none;
}
.tc-gallery-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--tc-border);
  border-radius: 50%;
  background: var(--tc-surface);
  box-shadow: 0 3px 8px rgb(15 23 42 / 5%);
  color: var(--tc-muted);
  cursor: pointer;
  transition:
    background-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}
.tc-gallery-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}
.tc-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2px;
}
.tc-gallery-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.tc-gallery-dot::before {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(
    var(--tc-dot-size) + var(--tc-dot-growth) * var(--tc-progress, 0)
  );
  height: var(--tc-dot-size);
  border-radius: 999px;
  background: var(--tc-dot-color, #cbd5e1);
  content: "";
}
.tc-gallery-dot::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: background-color 120ms ease;
}
.tc-gallery-dot:active::after {
  background: rgb(37 99 235 / 5%);
}
.tc-social-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}
.tc-social {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  min-height: 64px;
  padding: 11px 14px;
  border: 1px solid var(--tc-border);
  border-radius: 14px;
  background: var(--tc-surface);
  color: var(--tc-text);
  text-align: left;
  text-decoration: none;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}
.tc-social-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
}
.tc-social-mark .tc-icon {
  width: 20px;
  height: 20px;
}
[data-social="whatsapp"] .tc-social-mark {
  color: #128c50;
  background: #edf9f1;
}
[data-social="telegram"] .tc-social-mark {
  color: #007cb5;
  background: #edf6fc;
}
[data-social="youtube"] .tc-social-mark {
  color: #d72d35;
  background: #fff1f2;
}
.tc-social-copy {
  display: grid;
  flex: 1;
  min-width: 0;
  gap: 1px;
}
.tc-social-copy strong {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}
.tc-social-copy small {
  color: var(--tc-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}
.tc-external {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  color: #64748b;
}
.tc-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 30px;
  padding-top: 20px;
  color: var(--tc-muted);
  font-size: 0.8125rem;
  text-align: center;
}

.tc-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  border-radius: 999px;
  background: var(--tc-border);
  content: "";
  pointer-events: none;
}
.tc-footer a {
  text-decoration: none;
}
.tc-toast {
  position: fixed;
  z-index: 20;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 50%;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  transform: translate(-50%, 12px);
  border-radius: 12px;
  background: #172033;
  box-shadow: 0 6px 20px rgb(15 23 42 / 15%);
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 150ms ease,
    transform 150ms ease,
    visibility 150ms ease;
}
.tc-toast[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.tc-noscript {
  margin: 20px;
  color: var(--tc-muted);
  font-size: 0.875rem;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .tc-download-button:hover {
    background: var(--tc-primary-pressed);
  }
  .tc-floating-download:hover {
    background: var(--tc-primary-pressed);
    box-shadow: 0 8px 18px rgb(37 99 235 / 24%);
    transform: translate3d(0, -1px, 0) scale(1);
  }
  .tc-social:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
  }
  .tc-gallery-arrow:hover:not(:disabled) {
    background: var(--tc-soft);
    color: var(--tc-primary);
  }
  .tc-gallery-dot:hover {
    background: transparent;
  }
  .tc-gallery-dot:hover::after {
    background: rgb(37 99 235 / 4%);
  }
  .tc-gallery-track {
    cursor: grab;
  }
  .tc-footer a:hover {
    color: var(--tc-primary);
  }
}
.tc-download-button:active {
  background: var(--tc-primary-pressed);
  transform: scale(0.985);
}
.tc-floating-download:active {
  background: var(--tc-primary-pressed);
  box-shadow: 0 2px 5px rgb(37 99 235 / 14%);
  transform: translate3d(0, 0, 0) scale(0.96);
}
@media (hover: hover) and (pointer: fine) {
  .tc-download-button:hover:active {
    transform: translateY(-1px) scale(0.985);
  }

  .tc-floating-download:hover:active {
    transform: translate3d(0, -1px, 0) scale(0.96);
  }
}
.tc-social:active {
  background: var(--tc-soft);
  transform: scale(0.985);
}
.tc-gallery-arrow:active:not(:disabled) {
  background: var(--tc-soft);
  transform: scale(0.96);
}
@media (max-width: 359px) {
  .tc-site {
    padding: 16px;
  }
  .tc-download-panel {
    padding: 24px 16px;
  }
  .tc-app-details h1 {
    font-size: 1.625rem;
  }
}
@media (min-width: 768px) {
  :root {
    --tc-frame-width: clamp(205px, 19vw, 228px);
    --tc-dot-size: 8px;
    --tc-dot-growth: 14px;
  }
  .tc-site {
    padding: 32px 28px 24px;
  }
  .tc-download-panel {
    grid-template-columns: minmax(0, 1fr) 242px;
    align-items: center;
    gap: 28px;
    padding: 30px;
    background-image:
      radial-gradient(
        ellipse 65% 110% at 100% 0%,
        rgb(219 234 254 / 74%) 0%,
        rgb(239 246 255 / 30%) 55%,
        rgb(239 246 255 / 0%) 100%
      ),
      radial-gradient(
        ellipse 45% 75% at 28% 0%,
        rgb(219 234 254 / 48%) 0%,
        rgb(239 246 255 / 0%) 100%
      );
    box-shadow:
      0 3px 8px rgb(15 23 42 / 3%),
      0 16px 36px -18px rgb(30 64 175 / 14%);
  }
  .tc-app-details {
    width: min(100%, 520px);
    margin-inline: auto;
    text-align: center;
  }
  .tc-app-icon-frame {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    padding: 14px;
    border-radius: 20px;
  }
  .tc-app-details h1 {
    font-size: 2rem;
  }
  .tc-metadata {
    justify-content: center;
  }
  .tc-download-button {
    width: 272px;
    max-width: 100%;
    margin: 24px auto 0;
  }
  .tc-floating-download {
    right: max(24px, env(safe-area-inset-right));
    bottom: max(32px, calc(env(safe-area-inset-bottom) + 8px));
    width: 170px;
    height: 48px;
    gap: 9px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
  }
  .tc-floating-download-label {
    display: inline;
  }
  .tc-qr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-direction: column;
    min-width: 0;
    padding-left: 28px;
    text-align: center;
  }

  .tc-qr::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    border-radius: 999px;
    background: var(--tc-border);
    content: "";
    pointer-events: none;
  }
  .tc-qr h2 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }
  .tc-qr-art {
    display: grid;
    place-items: center;
    width: 200px;
    max-width: 100%;
    aspect-ratio: 1;
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid var(--tc-border);
    border-radius: 16px;
    background: #fff;
  }
  .tc-qr-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .tc-qr-art > span {
    display: none;
    padding: 10px;
    color: var(--tc-muted);
    font-size: 0.875rem;
    overflow-wrap: anywhere;
  }
  .tc-qr-art[data-missing="true"] > span {
    display: block;
  }
  .tc-qr p {
    margin: 14px 0 0;
    color: var(--tc-muted);
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .tc-section {
    margin-top: 34px;
  }
  .tc-details {
    display: block;
  }
  .tc-details > .tc-section + .tc-section {
    margin-top: 52px;
  }
  .tc-feature-list {
    gap: 20px;
  }
  .tc-feature-card {
    padding: 24px;
    border-radius: 18px;
  }
  .tc-feature-heading {
    gap: 12px;
  }
  .tc-plan-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .tc-plan-group + .tc-plan-group {
    position: relative;
    padding-top: 0;
    padding-left: 28px;
    border-top: 0;
    border-left: 0;
  }

  .tc-plan-group + .tc-plan-group::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    border-radius: 999px;
    background: var(--tc-border);
    content: "";
  }
  .tc-lifetime-panel {
    padding: 20px 22px;
  }
  .tc-gallery-window {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
  }
  .tc-gallery-arrow {
    display: flex;
  }
  .tc-gallery-track {
    gap: 20px;
    padding-inline: 8px;
    scroll-padding-inline: 8px;
    scroll-snap-type: none;
  }

  .tc-gallery-item {
    scroll-snap-align: start;
  }
  .tc-gallery[data-scrollable="false"] .tc-gallery-track {
    justify-content: center;
  }
  .tc-gallery[data-scrollable="false"] .tc-gallery-arrow {
    visibility: hidden;
  }
  .tc-gallery-dot {
    width: 36px;
  }
  .tc-gallery-dot::after {
    width: 36px;
    height: 36px;
  }
  .tc-social-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .tc-social {
    min-height: 68px;
    padding: 12px 14px;
  }
  .tc-footer {
    margin-top: 32px;
    justify-content: space-between;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .tc-site {
    padding: 40px 44px 24px;
  }
  .tc-download-panel {
    grid-template-columns: minmax(0, 1fr) 264px;
    gap: 40px;
    padding: 34px 40px;
  }
  .tc-app-details h1 {
    font-size: 2.25rem;
  }
  .tc-qr {
    padding-left: 40px;
  }
  .tc-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tc-feature-card--wide {
    padding: 28px;
  }
  .tc-gallery-window {
    gap: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .tc-download-button:active,
  .tc-floating-download:active,
  .tc-social:active,
  .tc-gallery-arrow:active:not(:disabled) {
    transform: none;
  }
}

.tc-download-button,
.tc-download-button *,
.tc-floating-download,
.tc-floating-download *,
.tc-social,
.tc-social * {
  -webkit-user-select: none;
  user-select: none;
}

.tc-download-button img,
.tc-floating-download img,
.tc-social-mark,
.tc-social-mark *,
.tc-external {
  -webkit-user-drag: none;
  pointer-events: none;
}
