:root {
  color-scheme: dark;
  --bg: #020304;
  --bg-soft: #070b10;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f8fbff;
  --muted: #abb5c4;
  --dim: #687384;
  --blue: #12c8ff;
  --blue-deep: #0878ff;
  --ice: #c9f6ff;
  --gold: #f6c65b;
  --font-display:
    "Sora", "Aptos Display", "Segoe UI Variable Display", system-ui, sans-serif;
  --font-text:
    "Manrope", "Aptos", "Segoe UI Variable Text", system-ui, sans-serif;
  --container: min(1180px, calc(100% - 40px));
  --radius: 10px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --shadow-blue: 0 30px 90px rgba(18, 200, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(
      ellipse at center,
      rgba(18, 200, 255, 0.22),
      transparent 64%
    ),
    radial-gradient(
      circle at 50% -12%,
      rgba(18, 200, 255, 0.14),
      transparent 36rem
    ),
    linear-gradient(180deg, #030406 0%, #04070a 42%, #000 100%);
  color: var(--text);

  font-family: var(--font-text);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

/* body::after {
  background: radial-gradient(
    ellipse at center,
    rgba(18, 200, 255, 0.22),
    transparent 64%
  );
} */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 10%,
    black 72%,
    transparent
  );
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

summary,
button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 14px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 800;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(2, 3, 4, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 800;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 28px rgba(18, 200, 255, 0.3);
}

.brand span {
  font-size: 17px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(248, 251, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 116px 0 64px;
  position: relative;
  overflow: hidden;
}

#hero-title {
  position: relative;
  z-index: 99;
}

.hero-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 7vw, 94px);
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(76px, 13vw, 168px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 20px 80px rgba(18, 200, 255, 0.22);
}

.hero-headline {
  margin: 22px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(31px, 5.2vw, 55px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-headline b {
  color: #00bbff;
}

.hero-copy {
  /* width: min(620px, 100%); */
  margin: 20px 0 0;
  color: rgba(248, 251, 255, 0.72);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.62;
  font-weight: 650;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.store-badge {
  min-width: 0;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(18, 200, 255, 0.58);
  background: rgba(18, 200, 255, 0.12);
  box-shadow: var(--shadow-blue);
}

.store-badge svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-badge span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.store-badge small {
  color: rgba(248, 251, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
}

.store-badge strong {
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.store-badge-primary {
  border-color: rgba(18, 200, 255, 0.34);
  background: linear-gradient(
    135deg,
    rgba(18, 200, 255, 0.22),
    rgba(255, 255, 255, 0.08)
  );
}

.store-badge-soon {
  color: rgba(248, 251, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
}

.store-badge-soon:hover {
  transform: none;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.store-badge-compact {
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 800;
}

.store-badge-compact svg {
  width: 19px;
  height: 19px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-tags span,
.method-pills span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(18, 200, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(18, 200, 255, 0.08);
  color: var(--ice);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  min-width: 0;
  position: relative;
}

.visual-orbit {
  min-height: min(690px, 74svh);
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.visual-orbit::before {
  content: "";
  position: absolute;
  width: min(560px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(18, 200, 255, 0.24), transparent 56%),
    radial-gradient(
      circle at 65% 30%,
      rgba(255, 255, 255, 0.14),
      transparent 34%
    );
  filter: blur(16px);
  z-index: -1;
}

.phone-stack {
  z-index: 1;
  position: relative;
  width: min(370px, 80vw);
  aspect-ratio: 1320 / 2868;
}

.phone-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #12161d;
  border-radius: 38px;
  background: #000;
  box-shadow: var(--shadow-blue);
}

.phone-shot-main {
  z-index: 3;
  animation: float-phone 7s ease-in-out infinite;
}

.phone-shot-back {
  z-index: 1;
  opacity: 0.38;
  filter: saturate(0.9) brightness(0.72);
}

.phone-shot-left {
  transform: translateX(-24%) rotate(-7deg) scale(0.9);
}

.phone-shot-right {
  transform: translateX(34%) rotate(7deg) scale(0.9);
}

.hero-card,
.method-mini {
  position: absolute;
  z-index: 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 7, 10, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card {
  top: 8%;
  left: 0;
  padding: 16px 18px;
}

.hero-card span,
.method-mini span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-card strong,
.method-mini strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.method-mini {
  right: 0;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  width: min(260px, 68vw);
}

.method-mini img {
  width: 76px;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(18, 200, 255, 0.18);
}

.impact-strip {
  width: var(--container);
  margin: -20px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.impact-strip article,
.benefit-card,
.flow-card,
.screen-card,
.review-card,
.faq-item,
.legal-card,
.support-card,
.document-link {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.074),
    rgba(255, 255, 255, 0.024)
  );
  box-shadow: var(--shadow);
}

.impact-strip article {
  min-height: 110px;
  padding: 18px;
}

.impact-strip strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
}

.impact-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(82px, 11vw, 142px) 0 0;
  scroll-margin-top: 98px;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading h2,
.method-copy h2,
.final-cta h2,
.legal-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.method-copy p,
.final-cta p,
.legal-hero p {
  margin: 16px 0 0;
  color: rgba(248, 251, 255, 0.68);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.62;
  font-weight: 650;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.benefit-card {
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.benefit-card:hover,
.flow-card:hover,
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 200, 255, 0.36);
  background: linear-gradient(
    180deg,
    rgba(18, 200, 255, 0.1),
    rgba(255, 255, 255, 0.028)
  );
}

.benefit-card-large {
  grid-column: span 2;
}

.benefit-card-accent {
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(18, 200, 255, 0.18),
      transparent 44%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.026)
    );
}

.card-number,
.screen-card span {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.benefit-card h3,
.flow-card h3,
.screen-card h3,
.review-card strong,
.legal-card h2,
.support-card h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.benefit-card p,
.flow-card p,
.review-card p,
.faq-item p,
.legal-card p,
.legal-card li,
.support-card p,
.support-card li {
  margin: 14px 0 0;
  color: rgba(248, 251, 255, 0.64);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 650;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.flow-card {
  min-height: 260px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.flow-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(18, 200, 255, 0.34);
  background: rgba(18, 200, 255, 0.1);
  color: var(--ice);
  font-family: var(--font-display);
  font-weight: 800;
}

.flow-card h3 {
  margin-top: 52px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.screen-card {
  padding: 14px;
  overflow: hidden;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.screen-card div {
  padding: 16px 4px 2px;
}

.screen-card h3 {
  margin-top: 7px;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 94px);
}

.method-cover-stage {
  min-height: 480px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 200, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(18, 200, 255, 0.18),
      transparent 48%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}

.method-cover-stage img {
  width: min(320px, 70%);
  filter: drop-shadow(0 30px 70px rgba(18, 200, 255, 0.28));
  animation: float-cover 8s ease-in-out infinite;
}

.method-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.review-grid {
  display: flex;
  gap: 20px;
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; */
}

.review-card {
  min-height: 176px;
  padding: 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0;
}

.review-card p {
  margin-top: 15px;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(18, 200, 255, 0.12);
  color: var(--blue);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.faq-item a {
  color: var(--ice);
  font-weight: 800;
}

.final-cta {
  width: var(--container);
  margin: clamp(82px, 11vw, 142px) auto 0;
  padding: clamp(28px, 6vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(18, 200, 255, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(18, 200, 255, 0.22),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      rgba(18, 200, 255, 0.13),
      rgba(255, 255, 255, 0.045)
    );
  box-shadow: var(--shadow-blue);
}

.final-cta .store-row {
  margin-top: 0;
  justify-content: flex-end;
}

.site-footer {
  width: var(--container);
  margin: 72px auto 0;
  padding: 28px 0 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--line);
  color: rgba(248, 251, 255, 0.62);
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand div {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  color: #fff;
  font-size: 17px;
}

.footer-brand span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.site-footer nav a,
.site-footer p a {
  color: rgba(248, 251, 255, 0.78);
  font-weight: 800;
}

.site-footer nav a:hover,
.site-footer p a:hover {
  color: #fff;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(248, 251, 255, 0.52);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.button,
.button-row .button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(18, 200, 255, 0.48);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 16px 36px rgba(18, 200, 255, 0.22);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #d8f6ff;
  background: rgba(18, 200, 255, 0.08);
  font-weight: 800;
}

.legal-main {
  width: var(--container);
  margin: 0 auto;
  padding: 128px 0 0;
}

.legal-hero {
  width: min(880px, 100%);
  padding-bottom: 32px;
}

.legal-hero a,
.legal-card a,
.support-card a {
  color: #9feaff;
  font-weight: 800;
}

.legal-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.legal-card,
.support-card,
.document-link {
  padding: 22px;
}

.legal-card h2,
.support-card h2 {
  font-size: 21px;
}

.legal-card ul,
.support-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

:focus-visible {
  outline: 3px solid rgba(120, 226, 255, 0.82);
  outline-offset: 4px;
}

@keyframes float-phone {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes float-cover {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@media (max-width: 1120px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    max-width: 820px;
    text-align: center;
  }

  .visual-orbit {
    min-height: 620px;
  }

  .store-row {
    justify-content: center;
  }

  .benefit-grid,
  .showcase-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta .store-row {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 28px, 680px);
  }

  body {
    padding: 30px;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 98px 0 44px;
  }
  h2 {
    text-align: center;
  }
  .section-heading p {
    text-align: center;
  }
  .hero-content h1 {
    margin-top: 30px;
    font-size: clamp(68px, 22vw, 118px);
  }

  .method-pills {
    justify-content: center;
  }

  .method-copy {
    text-align: center;
  }
  .method-copy h2 {
    margin-top: 10px;
  }
  .hero-headline {
    font-size: clamp(31px, 8vw, 50px);
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    text-align: center;
  }
  .store-row {
    align-items: stretch;
  }

  .store-badge {
    width: min(100%, 276px);
    display: flex;
    align-items: center;
    justify-content: center;
    /* justify-content: flex-start; */
  }

  .store-badge-compact {
    width: auto;
  }

  .hero-tags span {
    flex: 1 1 calc(50% - 9px);
  }

  .visual-orbit {
    min-height: 560px;
  }

  .phone-stack {
    width: min(300px, 76vw);
  }

  .phone-shot-back {
    display: none;
  }

  .hero-card {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(270px, 82vw);
  }

  .method-mini {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    width: min(270px, 82vw);
  }

  .impact-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .benefit-grid,
  .flow-grid,
  .showcase-grid,
  .review-grid,
  .legal-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card-large {
    grid-column: auto;
  }

  .card-number {
    margin-bottom: 10px;
  }

  .benefit-card,
  .flow-card,
  .review-card {
    min-height: auto;
  }

  .flow-card h3 {
    margin-top: 34px;
  }

  .screen-card {
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
  }
  .screen-card img {
    width: 100%;
    max-width: 240px;
    justify-self: center;
  }

  .screen-card div {
    padding: 0;
  }

  .method-cover-stage {
    min-height: 390px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  #hero-title {
    text-align: center;
  }
}

@media (max-width: 520px) {
  :root {
    --container: min(100% - 22px, 480px);
  }

  .brand span {
    font-size: 16px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }

  .store-badge-compact {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .store-badge-compact span {
    display: none;
  }

  .hero-copy {
    font-size: 16px;
  }

  .store-badge:not(.store-badge-compact) {
    width: 100%;
  }

  .visual-orbit {
    min-height: 510px;
  }

  .phone-stack {
    width: min(270px, 78vw);
  }

  .phone-shot {
    border-width: 8px;
    border-radius: 34px;
  }

  .review-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 76px;
  }

  .screen-card {
    grid-template-columns: 1fr;
  }

  .screen-card img {
    width: min(250px, 100%);
    justify-self: center;
  }

  .method-cover-stage {
    min-height: 330px;
  }

  .method-cover-stage img {
    width: min(240px, 76%);
  }

  .faq-item summary {
    min-height: 62px;
    padding: 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .final-cta {
    text-align: center;
    padding: 24px 18px;
  }

  .legal-main {
    padding-top: 106px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
