/* ============================================================
   StableMo — styles.css
   Tokens (brand palette, neutrals, motion, effects) live in the
   :root block below. Section order: base → header → hero → photo
   band → strip → steps → cards → timeline → fees → people → FAQ →
   waitlist → footer → motion → responsive → a11y.
   ============================================================ */

:root {
  /* brand (Brand Guide v1.0) */
  --c-blue: #146BFF;
  --c-link: #0B93F6;
  --c-gold: #FFB20A;
  --c-sun: #FFC928;
  --c-navy: #071B3A;
  --c-cloud: #F4F7FB;

  /* neutrals & derived */
  --ink: #0E2038;
  --muted: #4E617A;
  --border: #DDE6F2;
  --white: #fff;
  --on-navy: #CFE0F5;
  --on-navy-dim: #AEC0DB;
  --on-navy-faint: #7e93b5;
  --footer-bg: #050F22;
  --gold-ink: #C9880A;
  --green-ok: #0c7a43;
  --green-ok-bg: #e3f6ec;
  --green-ok-border: #b5e6cc;

  /* effects */
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(7, 27, 58, 0.06);
  --shadow-md: 0 14px 40px rgba(7, 27, 58, 0.12);
  --shadow-lg: 0 30px 80px rgba(7, 27, 58, 0.22);
  /* motion */
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.68, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { width: min(1120px, 100% - 40px); margin-inline: auto; }
.container-narrow { width: min(720px, 100% - 40px); }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; color: var(--c-navy); }
h1 { font-size: clamp(2.4rem, 6.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4.4vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }

p { color: var(--muted); }

.kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-blue);
  margin-bottom: 10px;
}
.kicker-light { color: var(--c-sun); }

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-cloud { background: var(--c-cloud); }
.section-navy { background: var(--c-navy); }
.section-navy h2, .section-navy h2.light { color: var(--white); }

.section-sub { max-width: 560px; margin-top: 14px; font-size: 1.05rem; }

.light { color: var(--white); }
.light-sub { color: var(--on-navy-dim); max-width: 480px; margin: 14px auto 0; font-size: 1.05rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  padding: 15px 30px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--c-blue); color: var(--white); box-shadow: 0 8px 24px rgba(20, 107, 255, 0.35); }
.btn-primary:hover { background: #0f5be0; box-shadow: 0 12px 32px rgba(20, 107, 255, 0.45); transform: translateY(-1px); }
.btn-gold { background: var(--c-gold); color: var(--c-navy); box-shadow: 0 8px 24px rgba(255, 178, 10, 0.4); }
.btn-gold:hover { background: var(--c-sun); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(255, 178, 10, 0.5); }
.btn-ghost { border-color: var(--border); color: var(--c-navy); background: var(--white); }
.btn-ghost:hover { border-color: var(--c-blue); color: var(--c-blue); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---- hero entrance ---- */
.hero-title .line { display: block; overflow: hidden; padding-block: 0.08em; margin-block: -0.08em; }
.hero-title .line-inner {
  display: inline-block;
  transform: translateY(115%);
  animation: rise-in 0.9s var(--ease-out) forwards;
}
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.12s; }
@keyframes rise-in { to { transform: translateY(0); } }

.hero-copy > *:not(.hero-title) {
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out) forwards;
}
.hero-copy > .lede { animation-delay: 0.35s; }
.hero-copy > .hero-ctas { animation-delay: 0.47s; }
.hero-copy > .trust-chips { animation-delay: 0.59s; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.hero-visual .phone { animation: phone-in 1s var(--ease-out) 0.25s both, phone-float 7s ease-in-out 1.4s infinite alternate; }
@keyframes phone-in {
  from { opacity: 0; transform: rotate(2deg) translateY(46px) scale(0.96); }
  to { opacity: 1; transform: rotate(2deg) translateY(0) scale(1); }
}
@keyframes phone-float {
  from { transform: rotate(2deg) translateY(0); }
  to { transform: rotate(1.2deg) translateY(-12px); }
}

/* ambient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}
.orb-blue { width: 480px; height: 480px; top: -160px; left: -140px; background: var(--c-blue); animation: orb-drift-a 26s ease-in-out infinite alternate; }
.orb-gold { width: 420px; height: 420px; bottom: -120px; right: -120px; background: var(--c-gold); opacity: 0.35; animation: orb-drift-b 32s ease-in-out infinite alternate; }
@keyframes orb-drift-a { from { transform: translate(0, 0) scale(1); } to { transform: translate(70px, 50px) scale(1.15); } }
@keyframes orb-drift-b { from { transform: translate(0, 0) scale(1); } to { transform: translate(-60px, -40px) scale(0.9); } }

/* number tickers */
.t-amt { font-variant-numeric: tabular-nums; }
.t-rate { font-variant-numeric: tabular-nums; }
.tick-up { animation: tick-up 0.35s ease; }
@keyframes tick-up {
  0% { transform: translateY(6px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221, 230, 242, 0.7);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 66px; }
.brand { display: inline-flex; align-items: center; padding: 8px 0; }
.brand img { height: 30px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px;
  border-radius: 10px;
  line-height: 0;
}
.nav-toggle:active { background: var(--c-cloud); }

.site-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.site-nav a:not(.btn) { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.95rem; padding: 8px 10px; transition: color 0.15s; }
.site-nav a:hover { color: var(--c-blue); }
.site-nav .btn { margin-left: 4px; }
.header-cta { display: none; margin-left: auto; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 100px) 0 clamp(72px, 10vw, 120px);
  background:
    radial-gradient(680px 420px at 88% -10%, rgba(255, 178, 10, 0.13), transparent 60%),
    radial-gradient(760px 520px at -8% 12%, rgba(20, 107, 255, 0.10), transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); margin: 20px 0 28px; max-width: 520px; }
.accent-gold { color: var(--c-gold); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.trust-chips { list-style: none; margin-top: 28px; display: grid; gap: 10px; }
.trust-chips li {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-size: 0.95rem; font-weight: 500;
}
.chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-gold); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 178, 10, 0.18);
}

/* phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone {
  width: min(320px, 88%);
  border-radius: 44px;
  background: var(--c-navy);
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(7, 27, 58, 0.08);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}
.phone:hover { transform: rotate(0deg) translateY(-6px); }
.phone-notch {
  width: 110px; height: 22px;
  background: var(--c-navy);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 4px;
}
.phone-screen {
  background: linear-gradient(180deg, #FDFEFF 0%, var(--c-cloud) 100%);
  border-radius: 36px;
  padding: 18px 16px 22px;
  display: grid;
  gap: 14px;
}
.app-head { display: flex; align-items: center; gap: 8px; }
.app-logo img { width: 26px; height: 26px; border-radius: 8px; }
.app-title { font-weight: 800; font-size: 1rem; color: var(--c-navy); }
.app-pill {
  margin-left: auto;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--green-ok); background: var(--green-ok-bg); border: 1px solid var(--green-ok-border);
  padding: 4px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.app-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #12a35c; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.trade-card { background: var(--white); border-radius: 20px; padding: 18px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.trade-rows { display: grid; gap: 4px; }
.t-row { display: flex; align-items: baseline; justify-content: space-between; }
.t-cur { font-weight: 800; font-size: 0.85rem; color: var(--c-blue); letter-spacing: 0.04em; }
.t-cur.gold { color: var(--gold-ink); }
.t-amt { font-weight: 800; font-size: 1.65rem; color: var(--c-navy); letter-spacing: -0.02em; }
.t-mid {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
}
.t-arrow { color: var(--muted); font-size: 0.95rem; }
.t-rate {
  font-size: 0.8rem; font-weight: 600; color: var(--ink);
  background: var(--c-cloud); border-radius: 999px; padding: 4px 10px;
}
.escrow-badge {
  margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; color: var(--green-ok);
  background: var(--green-ok-bg); border-radius: 999px; padding: 7px 12px;
}
.mini-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.82rem; color: var(--muted);
}
.count { font-weight: 800; color: var(--c-navy); font-variant-numeric: tick; }
.arb-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--c-navy); border-radius: 16px; padding: 12px 14px;
}
.arb-ava {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-link));
  color: var(--white); font-weight: 800; font-size: 0.8rem;
  display: grid; place-items: center; flex-shrink: 0;
}
.arb-meta { display: grid; }
.arb-meta strong { color: var(--white); font-size: 0.82rem; }
.arb-meta span { color: var(--on-navy-dim); font-size: 0.72rem; }
.arb-check {
  margin-left: auto;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-gold); color: var(--c-navy);
  display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 800;
}

.hero-base {
  position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%);
  width: 118%; height: 26px;
  background: var(--c-cloud);
  border-radius: 100% 100% 0 0;
}

/* ---------- facts (at a glance) ---------- */
.facts { background: var(--c-cloud); padding-top: clamp(40px, 6vw, 72px); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.fact strong {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-blue);
}
.fact:nth-child(2) strong { color: var(--gold-ink); }
.fact span { color: var(--muted); font-size: 0.88rem; line-height: 1.45; }

/* ---------- value strip ---------- */
.strip { background: var(--c-cloud); padding: 8px 0 56px; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.strip-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.strip-ic { font-size: 1.3rem; line-height: 1.2; }
.strip-item strong { display: block; color: var(--c-navy); font-size: 0.95rem; }
.strip-item span:not(.strip-ic) { font-size: 0.82rem; color: var(--muted); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-link));
  color: var(--white); font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(20, 107, 255, 0.3);
}
.step:nth-child(2) .step-num { background: linear-gradient(135deg, var(--c-gold), var(--c-sun)); box-shadow: 0 8px 20px rgba(255, 178, 10, 0.35); }
.step p { margin-top: 10px; font-size: 0.96rem; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 44px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-ic {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
}
.card-ic.blue { background: rgba(20, 107, 255, 0.1); color: var(--c-blue); }
.card-ic.gold { background: rgba(255, 178, 10, 0.14); color: var(--gold-ink); }
.card p { margin-top: 8px; font-size: 0.95rem; }

/* ---------- timeline ---------- */
.timeline-section { position: relative; overflow: hidden; }
.timeline-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(560px 360px at 12% 110%, rgba(255, 178, 10, 0.12), transparent 60%),
    radial-gradient(640px 440px at 95% -20%, rgba(20, 107, 255, 0.22), transparent 60%);
  pointer-events: none;
}
.timeline {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-top: 48px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute; top: 7px; left: 4%; right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-link), var(--c-blue) 55%, var(--c-gold));
  opacity: 0.5;
  border-radius: 2px;
}
.timeline li { position: relative; padding: 26px 18px 0 0; }
.tl-dot {
  position: absolute; top: 0; left: 0;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--c-link);
  box-shadow: 0 0 0 5px rgba(11, 147, 246, 0.22);
}
.tl-dot-gold { background: var(--c-gold); box-shadow: 0 0 0 5px rgba(255, 178, 10, 0.25); }
.timeline strong { display: block; color: var(--white); font-size: 1.02rem; margin-bottom: 6px; }
.timeline span:not(.tl-dot) { color: var(--on-navy-dim); font-size: 0.88rem; }

/* ---------- fees ---------- */
.fees-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.fee-card {
  background: var(--c-navy);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.fee-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(320px 220px at 110% -10%, rgba(255, 178, 10, 0.25), transparent 60%),
    radial-gradient(360px 260px at -20% 120%, rgba(20, 107, 255, 0.35), transparent 60%);
  pointer-events: none;
}
.fee-main { display: flex; align-items: baseline; gap: 16px; position: relative; }
.fee-num {
  font-size: clamp(4rem, 8vw, 5.4rem);
  font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1;
}
.fee-num small { font-size: 0.45em; color: var(--c-gold); }
.fee-label { color: var(--on-navy-dim); font-size: 0.95rem; line-height: 1.45; }
.fee-sub { margin-top: 26px; display: grid; gap: 12px; position: relative; }
.fee-line {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(174, 192, 219, 0.18);
}
.fee-line span { color: var(--on-navy-dim); font-size: 0.92rem; }
.fee-line strong { color: var(--white); font-size: 0.98rem; }
.fee-example {
  margin-top: 24px; position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(174, 192, 219, 0.16);
  border-radius: 14px; padding: 14px 16px;
  color: var(--on-navy); font-size: 0.9rem;
}
.fee-example strong { color: var(--c-gold); }

/* ---------- photo band ---------- */
.photo-band {
  position: relative;
  height: clamp(340px, 46vw, 520px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.band-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  transform-origin: 56% 40%;
  animation: kenburns 42s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.6%, -1.6%); }
}
.band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 58, 0.18) 0%, rgba(7, 27, 58, 0.62) 62%, rgba(7, 27, 58, 0.86) 100%);
}
.band-copy {
  position: relative;
  padding-bottom: clamp(28px, 5vw, 52px);
}
.band-quote {
  color: var(--white);
  font-size: clamp(1.35rem, 3.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 720px;
  line-height: 1.25;
}
.band-sub {
  color: var(--on-navy);
  margin-top: 10px;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  max-width: 620px;
}

/* ---------- people cards ---------- */
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.people-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.people-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.people-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.people-card figcaption { padding: 20px 22px 24px; display: grid; gap: 6px; }
.people-card strong { color: var(--c-navy); font-size: 1.05rem; }
.people-card span { color: var(--muted); font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; margin-top: 40px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 4px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 17px 0;
  font-weight: 700; color: var(--c-navy); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-chev {
  flex-shrink: 0;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--c-blue); border-bottom: 2.5px solid var(--c-blue);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
details[open] .faq-chev { transform: rotate(225deg) translateY(-2px); }
.faq details p { padding: 0 0 18px; font-size: 0.96rem; }

/* ---------- waitlist ---------- */
.waitlist {
  background:
    radial-gradient(560px 400px at 50% -20%, rgba(20, 107, 255, 0.25), transparent 65%),
    radial-gradient(480px 320px at 85% 120%, rgba(255, 178, 10, 0.16), transparent 60%),
    var(--c-navy);
  text-align: center;
}
.waitlist-inner { display: grid; justify-items: center; gap: 6px; }
.waitlist-logo { margin-bottom: 14px; filter: drop-shadow(0 8px 24px rgba(20, 107, 255, 0.35)); }
.waitlist-form {
  display: flex; gap: 10px; width: min(520px, 100%);
  margin-top: 28px;
}
.waitlist-form input {
  flex: 1;
  border: 1px solid rgba(174, 192, 219, 0.35);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border-radius: 999px;
  padding: 15px 24px;
  font: inherit;
  font-size: 1rem; /* ≥16px: prevents iOS auto-zoom on focus */
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
  min-width: 0;
}
.waitlist-form input::placeholder { color: var(--on-navy-faint); }
.waitlist-form input:focus { border-color: var(--c-gold); background: rgba(255, 255, 255, 0.1); }
.form-status { margin-top: 14px; font-size: 0.92rem; min-height: 1.4em; color: var(--on-navy); }
.form-status.ok { color: #7DDBA3; }
.form-status.err { color: #FF9B8A; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); padding: 56px 0 40px; }
.footer-inner { display: grid; gap: 28px; justify-items: center; text-align: center; }
.footer-brand img { height: 28px; width: auto; margin: 0 auto 12px; }
.footer-brand p { color: var(--on-navy-faint); font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.footer-links a { color: var(--on-navy); text-decoration: none; font-size: 0.9rem; font-weight: 500; padding: 9px 10px; }
.footer-links a:hover { color: var(--c-gold); }
.footer-legal { color: var(--on-navy-faint); font-size: 0.78rem; max-width: 640px; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* stagger groups: children pop in sequence when the group enters */
.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s var(--ease-out); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: 0s; }
.stagger.in > *:nth-child(2) { transition-delay: 0.09s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.18s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.27s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.36s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.45s; }

/* timeline draw */
.timeline { transition: none; }
.timeline::before {
  content: "";
  position: absolute; top: 7px; left: 4%; right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-link), var(--c-blue) 55%, var(--c-gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s var(--ease-inout) 0.15s;
  opacity: 1;
}
.timeline.in::before { transform: scaleX(1); }
.timeline li .tl-dot { transform: scale(0); transition: transform 0.45s var(--ease-spring); }
.timeline.in li:nth-child(1) .tl-dot { transition-delay: 0.2s; }
.timeline.in li:nth-child(2) .tl-dot { transition-delay: 0.5s; }
.timeline.in li:nth-child(3) .tl-dot { transition-delay: 0.8s; }
.timeline.in li:nth-child(4) .tl-dot { transition-delay: 1.1s; }
.timeline.in li .tl-dot { transform: scale(1); }

/* ---------- micro-interactions ---------- */
.site-header { transition: box-shadow 0.25s ease, background 0.25s ease; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(7, 27, 58, 0.08); }

.btn-primary, .btn-gold { position: relative; overflow: hidden; }
.btn-primary::after, .btn-gold::after {
  content: "";
  position: absolute; top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine {
  0%, 55% { left: -80%; }
  85%, 100% { left: 140%; }
}

.nav-toggle.open svg { transform: rotate(90deg); }
.nav-toggle svg { transition: transform 0.2s ease; }

/* waitlist success pop */
.form-status.ok.pop { animation: pop-in 0.45s var(--ease-spring); }
@keyframes pop-in {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 12px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 26px; }
  .timeline::before { display: none; }
  .fees-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
}

@media (max-width: 740px) {
  .nav-toggle { display: block; order: -1; }
  .header-cta { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s var(--ease-out), opacity 0.28s ease, visibility 0s 0.28s;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.28s var(--ease-out), opacity 0.28s ease, visibility 0s;
  }
  .site-nav a { padding: 13px 4px; font-size: 1rem; border-bottom: 1px solid var(--c-cloud); }
  .site-nav .btn { margin: 12px 0 0; justify-content: center; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }
  .trust-chips li { font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
  .hero-title .line-inner { transform: none; animation: none; }
  .hero-copy > *:not(.hero-title) { opacity: 1; animation: none; }
  .hero-visual .phone { animation: none; transform: rotate(2deg); opacity: 1; }
  .orb, .orb-blue, .orb-gold { display: none; }
  .btn-primary::after, .btn-gold::after { display: none; }
  .timeline::before { transform: scaleX(1); transition: none; }
  .timeline li .tl-dot { transform: scale(1); transition: none; }
  .phone:hover { transform: rotate(2deg); }
  .app-pill::before { animation: none; }
  .tick-up { animation: none; }
  .form-status.ok.pop { animation: none; }
  .band-img { animation: none; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
