/* Reclaim — marketing site
 * Mirrors the app's "Liquid Glass" design language (DesignTokens.swift):
 * aurora background, mint accent, real frosted glass, heavy rounded headings.
 * Zero dependencies. Motion is transform/opacity-only and reduced-motion + no-JS safe.
 */

:root {
  /* Brand */
  --mint: #4ADEB0;
  --mint-bright: #7EF0C9;
  --coral: #FF5A5F;
  --amber: #FFD479;

  /* Ink ramp (contrast-audited over the aurora background) */
  --ink: rgba(255, 255, 255, 0.96);
  --ink-2: rgba(255, 255, 255, 0.66);
  --ink-3: rgba(255, 255, 255, 0.62);

  /* Base + aurora */
  --navy: #0A1220;
  --abyss: #060A12;
  --aurora-mint: #2FD2A0;
  --aurora-blue: #2B6BD8;
  --aurora-violet: #7A3DF0;

  /* Glass (app .readable tier: ~16% fill, specular top edge, ambient shadow) */
  --glass: rgba(255, 255, 255, 0.065);
  --glass-2: rgba(255, 255, 255, 0.11);
  --hair: rgba(255, 255, 255, 0.12);
  --hair-2: rgba(255, 255, 255, 0.18);
  --specular: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  --lift: 0 24px 60px rgba(0, 0, 0, 0.42);

  /* Type scale (8 steps, iOS-aligned) */
  --t-12: 0.75rem;  --t-13: 0.8125rem; --t-15: 0.9375rem; --t-17: 1.0625rem;
  --t-20: 1.25rem;  --t-24: 1.5rem;

  /* Spacing scale */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-6: 24px;
  --sp-8: 32px; --sp-12: 48px; --sp-16: 64px; --sp-24: 96px; --sp-32: 128px;

  --r-card: 26px;
  --r-btn: 16px;
  --maxw: 1160px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif;
  --font-round: ui-rounded, "SF Pro Rounded", var(--font);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--abyss);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- aurora wallpaper (drifting, transform-only) ---------- */
.aurora { position: fixed; inset: -20% ; z-index: -2; pointer-events: none; }
.aurora span {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55;
  will-change: transform;
}
.aurora .a1 { width: 60vw; height: 60vw; left: -8vw; top: -12vw; background: radial-gradient(closest-side, var(--aurora-mint), transparent); }
.aurora .a2 { width: 55vw; height: 55vw; right: -6vw; top: 2vw; background: radial-gradient(closest-side, var(--aurora-blue), transparent); opacity: 0.5; }
.aurora .a3 { width: 70vw; height: 70vw; left: 25vw; bottom: -30vw; background: radial-gradient(closest-side, var(--aurora-violet), transparent); opacity: 0.5; }
body::before { content: ""; position: fixed; inset: 0; z-index: -2; background: linear-gradient(180deg, var(--navy), var(--abyss)); }
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: no-preference) {
  .aurora .a1 { animation: drift1 42s var(--ease) infinite alternate; }
  .aurora .a2 { animation: drift2 56s var(--ease) infinite alternate; }
  .aurora .a3 { animation: drift3 64s var(--ease) infinite alternate; }
}
@keyframes drift1 { to { transform: translate3d(4%, 5%, 0) scale(1.08); } }
@keyframes drift2 { to { transform: translate3d(-5%, 3%, 0) scale(1.06); } }
@keyframes drift3 { to { transform: translate3d(3%, -4%, 0) scale(1.1); } }

img { max-width: 100%; display: block; }
a { color: var(--mint); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--mint-bright); }
::selection { background: rgba(74, 222, 176, 0.28); }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }

/* skip link */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 12px; z-index: 100; background: var(--navy); color: var(--ink); padding: 10px 16px; border-radius: 10px; border: 1px solid var(--hair-2); }

/* ---------- reveal system (gated by html.js + reduced-motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(20px); }
  html.js .reveal.in {
    opacity: 1; transform: none;
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    transition-delay: calc(var(--i, 0) * 70ms);
  }
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: var(--sp-32) 0; }
section[id] { scroll-margin-top: 84px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-16); }
.center { text-align: center; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-round); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 1.2rem + 5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 1.2rem + 2.6vw, 3rem); }
h3 { font-size: var(--t-20); letter-spacing: -0.02em; line-height: 1.2; }
p { color: var(--ink-2); }
.eyebrow { display: inline-block; font-size: var(--t-13); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mint); margin-bottom: var(--sp-4); }
.lead { font-size: var(--t-20); line-height: 1.55; color: var(--ink-2); }
.section-head .lead { margin-top: var(--sp-4); }
.muted { color: var(--ink-3); }

.grad {
  color: var(--mint-bright);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .grad {
    background: linear-gradient(100deg, var(--mint-bright), var(--mint));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
}

/* ---------- glass ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  box-shadow: var(--specular), var(--lift);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--r-btn);
  font-weight: 800; font-size: var(--t-17); cursor: pointer; border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: linear-gradient(180deg, var(--mint-bright), var(--mint)); color: #062018; box-shadow: 0 12px 34px rgba(74, 222, 176, 0.3); }
.btn-primary:hover { color: #062018; box-shadow: 0 16px 44px rgba(74, 222, 176, 0.44); transform: translateY(-2px); }
.btn-ghost { background: var(--glass-2); border: 1px solid var(--hair-2); color: var(--ink); box-shadow: var(--specular); }
.btn-ghost:hover { color: var(--ink); background: rgba(255, 255, 255, 0.15); }

/* Apple-style App Store badge (correct two-line layout) */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px; border-radius: 14px; min-height: 56px;
  background: #000; color: #fff; border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.15s ease, border-color 0.2s ease;
}
.appstore:hover { color: #fff; transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.4); }
.appstore:active { transform: scale(0.98); }
.appstore svg { width: 28px; height: 28px; flex: none; }
.appstore > span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.appstore .small { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.01em; margin-bottom: 3px; opacity: 0.92; }
.appstore .big { font-size: 1.28rem; font-weight: 600; letter-spacing: -0.01em; }

.cta-note { font-size: var(--t-13); color: var(--ink-2); margin-top: 14px; }
.cta-note b { color: var(--ink); font-weight: 700; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 18, 32, 0.5);
  backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { background: rgba(9, 14, 24, 0.85); border-bottom-color: var(--hair); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; transition: height 0.3s ease; }
.nav.scrolled .wrap { height: 58px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -0.02em; font-family: var(--font-round); }
.brand:hover { color: var(--ink); }
.brand img { width: 30px; height: 30px; flex: none; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink-2); font-weight: 600; font-size: var(--t-15); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 9px 18px; border-radius: 999px; background: linear-gradient(180deg, var(--mint-bright), var(--mint)); color: #062018 !important; font-weight: 800; font-size: var(--t-13); }
.nav-cta:hover { color: #062018 !important; }

/* ---------- hero ---------- */
.hero { padding: 108px 0 84px; }
.hero .wrap { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 500px; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 30px; color: var(--ink-2); font-size: var(--t-15); font-weight: 600; }
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { width: 18px; height: 18px; color: var(--mint); flex: none; }

@media (prefers-reduced-motion: no-preference) {
  html.js .hero .anim { opacity: 0; animation: rise 0.75s var(--ease) forwards; }
  html.js .hero .anim { animation-delay: calc(var(--d, 0) * 1ms); }
  html.js .hero .phone-wrap { opacity: 0; animation: risePhone 0.8s var(--ease) 0.32s forwards; }
}
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes risePhone { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ---------- phone mock (realistic iPhone Home screen) ---------- */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-wrap::before { content: ""; position: absolute; inset: -6% ; background: radial-gradient(closest-side, rgba(74, 222, 176, 0.16), transparent 70%); z-index: 0; }
.phone {
  position: relative; z-index: 1;
  width: 292px; aspect-ratio: 9 / 19.5;
  border-radius: 49px; padding: 5px;
  background: #1a1f28;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 40px 90px rgba(0, 0, 0, 0.55);
}
.screen {
  position: relative; height: 100%; border-radius: 44px; overflow: hidden;
  background: radial-gradient(120% 60% at 20% 0%, #12203a 0%, #0b1424 55%, #0a1220 100%);
  padding: 44px 16px 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.island { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 84px; height: 24px; background: #000; border-radius: 14px; z-index: 3; }
.statusbar { position: absolute; top: 14px; left: 0; right: 0; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 700; color: var(--ink); z-index: 2; }
.statusbar .sb-icons { display: flex; gap: 5px; align-items: center; }
.statusbar svg { height: 11px; width: auto; color: var(--ink); }
.home-ind { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 112px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.32); z-index: 3; }
.scr-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.01em; color: var(--ink-2); }
.gauge { text-align: center; padding: 4px 0 2px; }
.gauge .num { font-family: var(--font-round); font-weight: 900; font-size: 2.9rem; letter-spacing: -0.03em; line-height: 1; }
.gauge .num b { background: linear-gradient(180deg, #fff, var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gauge .num i { font-style: normal; font-size: 1.3rem; font-weight: 800; color: var(--mint); margin-left: 3px; }
.gauge .cap { font-size: 0.72rem; color: var(--ink-3); font-weight: 600; margin-top: 3px; }
.meter { height: 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.meter i { display: block; height: 100%; width: 62%; border-radius: 999px; background: linear-gradient(90deg, var(--mint), var(--mint-bright)); box-shadow: 0 0 10px rgba(74, 222, 176, 0.6); transform-origin: left; }
html.js .meter i { transform: scaleX(0); }
.storeline { font-size: 0.66rem; color: var(--ink-3); text-align: center; font-weight: 600; }
.rows { display: flex; flex-direction: column; gap: 9px; margin-top: 2px; }
.mini-row { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 14px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.07); }
.mini-row .ico { width: 32px; height: 32px; border-radius: 9px; flex: none; display: grid; place-items: center; background: rgba(74, 222, 176, 0.16); color: var(--mint); }
.mini-row .ico svg { width: 17px; height: 17px; }
.mini-row .t { flex: 1; min-width: 0; }
.mini-row .t b { display: block; font-size: 0.8rem; color: var(--ink); }
.mini-row .t span { font-size: 0.67rem; color: var(--ink-3); }
.mini-row .sz { font-weight: 800; font-size: 0.85rem; color: var(--amber); font-variant-numeric: tabular-nums; }
.scan-shimmer { position: absolute; inset: 0; pointer-events: none; z-index: 4; overflow: hidden; border-radius: 44px; }
@media (prefers-reduced-motion: no-preference) {
  html.js .scan-shimmer::after {
    content: ""; position: absolute; top: -40%; left: -60%; width: 60%; height: 180%;
    background: linear-gradient(100deg, transparent, rgba(126, 240, 201, 0.07), transparent);
    transform: rotate(8deg); animation: sweep 7s ease-in-out infinite;
  }
}
@keyframes sweep { 0%, 100% { transform: translateX(0) rotate(8deg); opacity: 0; } 15% { opacity: 1; } 45%, 100% { transform: translateX(320%) rotate(8deg); } }

/* ---------- stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 30px 20px; text-align: center; }
.stat .n { font-family: var(--font-round); font-size: 2.6rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1; background: linear-gradient(180deg, #fff, var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { font-size: var(--t-13); color: var(--ink-2); font-weight: 600; margin-top: 8px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.feature { padding: 30px; transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease; }
.feature .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: rgba(74, 222, 176, 0.14); color: var(--mint); margin-bottom: 20px; box-shadow: var(--specular); }
.feature .ico svg { width: 27px; height: 27px; }
.feature h3 { margin-bottom: 9px; }
.feature p { font-size: var(--t-15); }
.feature a.more { display: inline-block; margin-top: 14px; font-size: var(--t-13); font-weight: 700; }
@media (hover: hover) and (pointer: fine) {
  .feature:hover, .step:hover { transform: translateY(-4px); border-color: var(--hair-2); box-shadow: var(--specular), 0 30px 60px rgba(0, 0, 0, 0.45); }
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; }
.step { padding: 32px 28px; transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease; }
.step .n { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; font-family: var(--font-round); font-weight: 900; font-size: var(--t-20); color: #062018; background: linear-gradient(180deg, var(--mint-bright), var(--mint)); margin-bottom: 18px; box-shadow: 0 8px 22px rgba(74, 222, 176, 0.25); }
.step.delete .n { background: linear-gradient(180deg, #ff8b8f, var(--coral)); color: #2a0708; box-shadow: 0 8px 22px rgba(255, 90, 95, 0.25); }
.step h3 { margin-bottom: 9px; }
.step p { font-size: var(--t-15); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- privacy band ---------- */
.band { padding: clamp(30px, 5vw, 52px); text-align: center; }
.band .ico { width: 62px; height: 62px; border-radius: 17px; display: grid; place-items: center; background: rgba(74, 222, 176, 0.14); color: var(--mint); margin: 0 auto 22px; box-shadow: var(--specular); }
.band .ico svg { width: 33px; height: 33px; }
.band .lead { max-width: 620px; margin: var(--sp-4) auto 0; }
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.pill { padding: 9px 16px; border-radius: 999px; background: var(--glass-2); border: 1px solid var(--hair); font-size: var(--t-13); font-weight: 600; color: var(--ink); box-shadow: var(--specular); }

/* ---------- CTA ---------- */
.cta-final { padding: clamp(36px, 6vw, 68px); text-align: center; background: linear-gradient(160deg, rgba(74, 222, 176, 0.15), rgba(43, 107, 216, 0.1)); }
.cta-final h2 { margin-bottom: 14px; }
.cta-final .lead { margin: 0 auto var(--sp-6); max-width: 500px; }
.cta-final .actions { display: flex; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details.qa { padding: 2px 24px; transition: border-color 0.2s ease, background 0.2s ease; }
details.qa[open] { background: rgba(255, 255, 255, 0.04); }
details.qa summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; font-size: var(--t-17); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary:hover { color: var(--mint-bright); }
details.qa summary .chev { flex: none; width: 22px; height: 22px; transition: transform 0.25s var(--ease); color: var(--mint); }
details.qa[open] summary .chev { transform: rotate(45deg); }
details.qa .a { color: var(--ink-2); font-size: var(--t-15); overflow: hidden; }
.faq-list details.qa .a { padding-bottom: 22px; }
@media (prefers-reduced-motion: no-preference) {
  details.qa .a { display: grid; grid-template-rows: 1fr; }
}

/* ---------- legal prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { margin-bottom: 8px; }
.prose .updated { color: var(--ink-3); font-size: var(--t-15); margin-bottom: 40px; }
.prose h2 { font-size: var(--t-24); margin: 40px 0 12px; }
.prose h3 { font-size: var(--t-17); margin: 26px 0 8px; }
.prose p, .prose li { color: var(--ink-2); margin-bottom: 14px; font-size: var(--t-17); }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose .note { padding: 18px 22px; border-left: 3px solid var(--mint); background: rgba(74, 222, 176, 0.07); border-radius: 0 14px 14px 0; margin: 22px 0; }
.prose .note p { margin: 0; }
.breadcrumb { max-width: 760px; margin: 0 auto 24px; font-size: var(--t-13); color: var(--ink-3); }
.breadcrumb a { color: var(--ink-2); }
.page-head { padding: 72px 0 12px; text-align: center; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--hair); padding: 56px 0 40px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
footer .brand { margin-bottom: 14px; }
.copyright { color: var(--ink-3); font-size: var(--t-13); max-width: 320px; line-height: 1.6; }
footer .fcol h4 { font-size: var(--t-12); text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); margin-bottom: 14px; font-weight: 700; }
footer .fcol a { display: block; color: var(--ink-2); font-weight: 600; font-size: var(--t-15); margin-bottom: 10px; }
footer .fcol a:hover { color: var(--ink); }
.legal-row { border-top: 1px solid var(--hair); margin-top: 40px; padding-top: 24px; color: var(--ink-3); font-size: var(--t-13); }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 60; display: none; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 18px; transform: translateY(140%); transition: transform 0.35s var(--ease); }
.mobile-cta.show { transform: none; }
.mobile-cta img { width: 30px; height: 30px; border-radius: 8px; }
.mobile-cta .mc-t { flex: 1; font-weight: 700; font-size: var(--t-13); color: var(--ink); }
.mobile-cta .mc-t span { display: block; font-weight: 600; font-size: 0.72rem; color: var(--ink-3); }
.mobile-cta .mc-btn { padding: 10px 16px; border-radius: 999px; background: linear-gradient(180deg, var(--mint-bright), var(--mint)); color: #062018; font-weight: 800; font-size: var(--t-13); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero-cta, .trust { justify-content: center; }
  .hero .lead { margin-inline: auto; }
  section { padding: 88px 0; }
  .stats { gap: 12px; }
}
@media (max-width: 720px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: var(--t-13); }
  .nav-links a[href="#features"], .nav-links a[href="/#features"], .nav-links a[href="#how"], .nav-links a[href="/#how"] { display: none; }
  .mobile-cta { display: flex; }
  .glass { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255, 255, 255, 0.08); }
  .phone { width: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora span { animation: none; }
  html:not(.js) * { animation: none; }
}

/* ---------- App Store badge + CTA row ---------- */
.hero-secondary { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 22px; }
.cta-badge { display: flex; justify-content: center; margin-top: 22px; }
.ghost-link { font-weight: 700; font-size: var(--t-15); color: var(--ink-2); }
.ghost-link:hover { color: var(--ink); }
@media (max-width: 860px) { .hero-secondary { justify-content: center; } }
