/* ============================================================
   StrokeVision — marketing site
   Premium-athletic. Cream paper, court green, clay red, optic ball.
   ============================================================ */

:root {
  --paper:      #F5F2EA;
  --paper-2:    #EFEADD;
  --ink:        #16140F;
  --ink-2:      #211E17;
  --green:      #1C6B4C;
  --green-deep: #134B36;
  --green-dk:   #0E3527;
  --clay:       #C75B43;
  --clay-deep:  #A8462F;
  --ball:       #CBE03F;
  --ball-soft:  #D8E76A;
  --muted:      #6E685B;
  --muted-2:    #8C8576;
  --line:       rgba(22,20,15,0.10);
  --line-light: rgba(245,242,234,0.16);
  --card:       #FFFFFF;
  --shadow:     0 24px 60px -28px rgba(20,18,12,0.35);
  --shadow-sm:  0 8px 24px -12px rgba(20,18,12,0.25);
  --radius:     20px;
  --maxw:       1160px;

  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }

a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--clay); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 100px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--paper); box-shadow: 0 10px 24px -10px rgba(20,18,12,0.6); }
.btn--primary:hover { background: var(--green-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(22,20,15,0.22); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(22,20,15,0.04); }
.btn--ghost-light { color: var(--paper); border-color: var(--line-light); }
.btn--ghost-light:hover { border-color: var(--paper); background: rgba(255,255,255,0.06); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245,242,234,0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: inline-flex; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink); opacity: .8; transition: opacity .2s; }
.nav__links a:hover { opacity: 1; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 0 24px; background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; max-height: 0; transition: max-height .3s ease, padding .3s ease; }
.nav__mobile a { padding: 13px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile a:last-child { border: none; margin: 12px 0; }
.nav__mobile.open { max-height: 420px; padding: 8px 24px 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.court-lines {
  position: absolute; inset: -10% -20% auto auto; width: 70%; height: 130%;
  background:
    radial-gradient(circle at 80% 20%, rgba(28,107,76,0.10), transparent 55%),
    radial-gradient(circle at 95% 60%, rgba(199,91,67,0.08), transparent 50%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: 0.14em;
  color: var(--green-deep); background: rgba(28,107,76,0.10);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 24px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ball); box-shadow: 0 0 0 3px rgba(203,224,63,0.35); }
.hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 700; }
.hero h1 .hl { color: var(--green-deep); position: relative; }
.lede { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 520px; margin: 24px 0 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__proof { list-style: none; display: flex; flex-wrap: wrap; gap: 28px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero__proof li { font-size: 14px; color: var(--muted); max-width: 150px; line-height: 1.35; }
.hero__proof strong { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 4px; }

/* ---------- Phone mockup ---------- */
.hero__device { position: relative; display: flex; justify-content: center; }
/* ----- Realistic iPhone ----- */
.phone {
  position: relative; width: 300px; height: 582px;
  border-radius: 56px; padding: 12px;
  background: linear-gradient(135deg, #46474d 0%, #1b1c20 20%, #34363c 50%, #161719 80%, #4c4d53 100%);
  box-shadow:
    var(--shadow),
    0 0 0 1.5px rgba(255,255,255,0.20),
    inset 0 1px 1px rgba(255,255,255,0.28),
    inset 0 -2px 3px rgba(0,0,0,0.55);
  z-index: 2; animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* black bezel ring between the titanium rail and the screen */
.phone::before {
  content: ""; position: absolute; inset: 7px; border-radius: 50px;
  background: #050506; z-index: 0;
}

.phone__screen {
  position: relative; z-index: 1; height: 100%;
  background: var(--paper); border-radius: 46px; overflow: hidden;
}

/* Dynamic Island */
.phone__island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px; background: #000; border-radius: 16px; z-index: 6;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 10px;
}
.phone__cam {
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #36536e 0%, #0a121c 60%, #000 100%);
  box-shadow: inset 0 0 0 1px rgba(120,160,200,0.28);
}

/* iOS status bar (time beside the island, system icons opposite) */
.scr-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 24px 5px; color: var(--ink); position: relative; z-index: 5;
}
.scr-time { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .3px; }
.scr-sysicons { display: inline-flex; align-items: center; gap: 6px; }
.scr-sysicons svg { display: block; }

.scr-body { padding: 6px 13px 16px; }

/* CTA + home indicator */
.scr-cta {
  margin-top: 14px; text-align: center; background: var(--ink); color: var(--paper);
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  padding: 12px; border-radius: 13px;
}
.phone__home {
  position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%);
  width: 122px; height: 5px; border-radius: 3px; background: rgba(22,20,15,0.32); z-index: 6;
}

/* side buttons on the titanium rail */
.phone__btn { position: absolute; z-index: 0; border-radius: 2px;
  background: linear-gradient(180deg, #54555b, #2a2b30 45%, #54555b);
  box-shadow: -1px 0 1px rgba(0,0,0,0.4); }
.phone__btn--power { box-shadow: 1px 0 1px rgba(0,0,0,0.4); }
.phone__btn--action { left: -2px; top: 122px; width: 3px; height: 26px; }
.phone__btn--up     { left: -2px; top: 162px; width: 3px; height: 52px; }
.phone__btn--down   { left: -2px; top: 224px; width: 3px; height: 52px; }
.phone__btn--power  { right: -2px; top: 172px; width: 3px; height: 86px; }

.phone__glow { position: absolute; width: 380px; height: 380px; background: radial-gradient(circle, rgba(203,224,63,0.45), transparent 65%); filter: blur(22px); z-index: 1; top: 45%; left: 50%; transform: translate(-50%,-50%); }

.scr-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 4px 12px; }
.scr-back { font-size: 12px; color: var(--muted); }
.scr-title { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.scr-share { color: var(--muted); font-weight: 700; }
.scr-video { border-radius: 16px; overflow: hidden; position: relative; }
.scr-video .court-vid { display: block; width: 100%; }
.scr-phasebar { position: absolute; bottom: 8px; left: 8px; right: 8px; display: flex; gap: 4px; }
.scr-phasebar span { flex: 1; text-align: center; font-size: 8.5px; font-weight: 600; font-family: var(--font-display); color: rgba(255,255,255,0.65); background: rgba(0,0,0,0.28); padding: 4px 0; border-radius: 6px; backdrop-filter: blur(4px); }
.scr-phasebar span.on { background: var(--ball); color: var(--ink); }

.scr-tipcard { background: var(--card); border-radius: 14px; padding: 12px 13px; margin-top: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.scr-tip-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.scr-tip-eyebrow { font-family: var(--font-display); font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--clay); }
.scr-tip-title { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; margin-bottom: 5px; line-height: 1.25; }
.scr-tip-body { font-size: 11px; color: var(--muted); line-height: 1.45; }
.conf { font-family: var(--font-display); font-size: 8px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 7px; border-radius: 100px; }
.conf--high { background: rgba(28,107,76,0.14); color: var(--green-deep); }
.conf--med  { background: rgba(199,91,67,0.14); color: var(--clay-deep); }
.conf--low  { background: rgba(110,104,91,0.16); color: var(--muted); }

.scr-metrics { display: flex; gap: 7px; margin-top: 10px; }
.mchip { flex: 1; background: var(--paper-2); border-radius: 11px; padding: 8px 9px; }
.mchip span { display: block; font-size: 8.5px; color: var(--muted); margin-bottom: 2px; }
.mchip b { font-family: var(--font-display); font-size: 14px; }

/* skeleton animation */
.skeleton line { stroke-dasharray: 70; stroke-dashoffset: 70; animation: draw 1.4s ease forwards; }
.skeleton line:nth-child(2){animation-delay:.1s} .skeleton line:nth-child(3){animation-delay:.2s}
.skeleton line:nth-child(4){animation-delay:.3s} .skeleton line:nth-child(5){animation-delay:.4s}
.skeleton line:nth-child(6){animation-delay:.5s} .skeleton line:nth-child(7){animation-delay:.6s}
.skeleton line:nth-child(8){animation-delay:.7s} .skeleton line:nth-child(9){animation-delay:.8s}
@keyframes draw { to { stroke-dashoffset: 0; } }
.ball-mark { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .6; r: 5; } 50% { opacity: 1; r: 7; } }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: var(--paper); padding: 26px 0; }
.trust__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.trust__label { font-family: var(--font-display); font-weight: 500; font-size: 14px; opacity: .65; }
.trust__items { display: flex; flex-wrap: wrap; gap: 14px; font-family: var(--font-display); font-weight: 500; font-size: 14px; }
.trust__items .sep { opacity: .35; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--dark { background: linear-gradient(160deg, var(--green-deep), var(--green-dk)); color: var(--paper); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--paper { background: var(--paper-2); }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 700; }
.kicker { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.16em; color: var(--clay); margin-bottom: 16px; }
.kicker--light { color: var(--ball); }
.section__sub { font-size: 18px; color: var(--muted); margin-top: 18px; }
.section__sub--light { color: rgba(245,242,234,0.78); }

/* ---------- Problem ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 1; color: var(--green-deep); margin-bottom: 14px; }
.stat:nth-child(2) .stat__num { color: var(--clay); }
.stat:nth-child(3) .stat__num { color: var(--ink); }
.stat__label { font-size: 15px; color: var(--muted); }
.problem__note { max-width: 820px; margin: 0 auto; text-align: center; font-size: 19px; line-height: 1.7; color: var(--ink-2); }

/* ---------- How / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step { background: rgba(255,255,255,0.05); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 30px 24px; position: relative; }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; color: var(--ball); opacity: .9; margin-bottom: 18px; }
.step__icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(203,224,63,0.14); color: var(--ball); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: rgba(245,242,234,0.72); }

/* ---------- Kinetic chain ---------- */
.chain__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.chain__copy h2 { font-size: clamp(28px,3.6vw,40px); margin-bottom: 18px; }
.chain__copy > p { font-size: 17px; color: var(--muted); margin-bottom: 26px; }
.chain__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.chain__list li { font-size: 15px; color: var(--ink-2); padding-left: 0; }
.chain__cat { display: inline-block; min-width: 152px; font-family: var(--font-display); font-weight: 600; color: var(--green-deep); }
.chain-figure { position: relative; display: flex; flex-direction: column; gap: 0; padding-left: 40px; }
.chain-figure::before { content: ""; position: absolute; left: 47px; top: 14px; bottom: 14px; width: 3px; background: linear-gradient(var(--green), var(--clay)); border-radius: 3px; }
.chain-node { position: relative; padding: 14px 0 14px 30px; }
.chain-dot { position: absolute; left: -6px; top: 18px; width: 18px; height: 18px; border-radius: 50%; background: var(--card); border: 3px solid var(--green); box-shadow: var(--shadow-sm); }
.chain-node--hit .chain-dot { background: var(--ball); border-color: var(--clay); transform: scale(1.25); }
.chain-node b { font-family: var(--font-display); font-size: 19px; display: block; }
.chain-node i { font-style: normal; font-size: 14px; color: var(--muted); }
.chain-node--hit b { color: var(--clay); }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.fcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fcard--wide { grid-column: span 2; }
.fcard--accent { background: linear-gradient(165deg, #ffffff, #f3f5e6); border-color: rgba(28,107,76,0.18); }
.fcard__icon { font-size: 30px; margin-bottom: 16px; }
.fcard h3 { font-size: 22px; margin-bottom: 10px; }
.fcard p { font-size: 15px; color: var(--muted); }
.fcard__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.fcard__chips span { font-family: var(--font-display); font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: 100px; background: var(--paper-2); color: var(--ink-2); }
.fcard--accent .fcard__chips span:not(.conf) { background: rgba(28,107,76,0.10); }

/* ---------- Pros ---------- */
.pros__grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.pros__cards { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.pro-card { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.06); border: 1px solid var(--line-light); border-radius: 14px; padding: 14px 16px; }
.pro-init { width: 42px; height: 42px; border-radius: 50%; background: var(--ball); color: var(--ink); font-family: var(--font-display); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.pro-card b { font-family: var(--font-display); font-size: 17px; display: block; }
.pro-card i { font-style: normal; font-size: 13px; color: rgba(245,242,234,0.65); }
.pros__soon { margin-top: 16px; font-size: 14px; color: var(--ball); opacity: .85; }
.overlay-demo { background: rgba(0,0,0,0.18); border: 1px solid var(--line-light); border-radius: 24px; padding: 20px; }
.overlay-demo svg { width: 100%; display: block; }
.overlay-legend { display: flex; gap: 22px; justify-content: center; margin-top: 14px; font-size: 13px; }
.overlay-legend .leg { display: inline-block; width: 18px; height: 4px; border-radius: 4px; vertical-align: middle; margin-right: 6px; }
.leg--you { background: var(--ball); } .leg--pro { background: #7fb89c; }

/* ---------- Voices ---------- */
.voices__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote p { font-size: 16px; line-height: 1.6; margin-bottom: 22px; }
.quote footer { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-top: auto; }
.quote__av { width: 34px; height: 34px; border-radius: 50%; background: var(--green-deep); color: var(--ball); display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* ---------- Pricing ---------- */
.founder-banner { max-width: 720px; margin: 0 auto 40px; text-align: center; background: rgba(199,91,67,0.10); border: 1px dashed rgba(199,91,67,0.4); border-radius: 14px; padding: 14px 20px; font-size: 15px; color: var(--clay-deep); }
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; }
.plan--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: scale(1.04); box-shadow: var(--shadow); }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--ball); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 100px; }
.plan__name { font-size: 17px; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.plan--featured .plan__name { color: var(--ball); }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.plan__price .amt { font-family: var(--font-display); font-weight: 700; font-size: 44px; line-height: 1; }
.plan__price .per { font-size: 15px; color: var(--muted); }
.plan--featured .plan__price .per { color: rgba(245,242,234,0.6); }
.plan__tag { font-size: 14px; color: var(--clay); font-weight: 600; margin-bottom: 22px; }
.plan--featured .plan__tag { color: var(--ball-soft); }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan__list li { font-size: 14.5px; padding-left: 26px; position: relative; color: var(--ink-2); }
.plan--featured .plan__list li { color: rgba(245,242,234,0.85); }
.plan__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.plan--featured .plan__list li::before { color: var(--ball); }
.plan--featured .btn--primary { background: var(--ball); color: var(--ink); }
.plan--featured .btn--primary:hover { background: var(--ball-soft); }
.pricing__foot { text-align: center; margin-top: 32px; font-size: 16px; color: var(--muted); }

/* ---------- Investors ---------- */
.inv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.inv-card { background: rgba(255,255,255,0.04); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 30px 26px; }
.inv-card__k { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: 0.14em; color: var(--ball); display: block; margin-bottom: 14px; }
.inv-card h3 { font-size: 21px; margin-bottom: 12px; }
.inv-card p { font-size: 14.5px; color: rgba(245,242,234,0.74); }
.inv-card--cta { background: var(--clay); border-color: var(--clay); display: flex; flex-direction: column; justify-content: center; }
.inv-card--cta h3 { font-size: 26px; }
.inv-card--cta p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.inv-card--cta .btn--primary { background: var(--paper); color: var(--ink); }

/* ---------- Roadmap ---------- */
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 13px; left: 6%; right: 6%; height: 2px; background: var(--line); }
.tl-item { position: relative; padding-top: 38px; }
.tl-item::before { content: ""; position: absolute; top: 6px; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); border: 3px solid var(--muted-2); }
.tl-item--now::before { background: var(--ball); border-color: var(--green); }
.tl-tag { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; color: var(--muted); }
.tl-item--now .tl-tag { color: var(--green-deep); }
.tl-item h4 { font-size: 18px; margin: 8px 0 8px; }
.tl-item p { font-size: 14px; color: var(--muted); }

/* ---------- Differentiation ---------- */
.diff-grid { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.diff-row {
  display: grid; grid-template-columns: 180px 1fr 28px; align-items: center; gap: 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 24px; box-shadow: var(--shadow-sm);
}
.diff-row__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--muted); }
.diff-row__desc { font-size: 15.5px; color: var(--ink-2); }
.diff-row__mark { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-align: center; justify-self: center; }
.diff-row__mark--no { color: var(--muted-2); }
.diff-row__mark--yes { color: var(--green); }
.diff-row--us {
  background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow);
  transform: scale(1.02);
}
.diff-row--us .diff-row__name { color: var(--ball); }
.diff-row--us .diff-row__desc { color: var(--paper); font-weight: 500; }
.diff-row--us .diff-row__mark--yes { color: var(--ball); }

/* ---------- Honesty / trust ---------- */
.honesty__card {
  background: linear-gradient(165deg, #ffffff, #f3f5e6);
  border: 1px solid rgba(28,107,76,0.18); border-radius: var(--radius);
  padding: 48px 44px; text-align: center; box-shadow: var(--shadow-sm);
}
.honesty__card h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 14px 0 16px; }
.honesty__card > p { font-size: 17px; color: var(--muted); max-width: 600px; margin: 0 auto; }
.honesty__pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 26px 0 18px; }
.honesty__pills .conf { font-size: 12px; padding: 7px 14px; }
.honesty__foot { font-size: 13.5px !important; color: var(--muted-2) !important; max-width: 520px; }

/* ---------- FAQ ---------- */
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__list details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq__list summary { font-family: var(--font-display); font-weight: 600; font-size: 17px; padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; font-size: 24px; color: var(--clay); font-weight: 400; transition: transform .25s; }
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details p { font-size: 15px; color: var(--muted); padding: 0 0 20px; line-height: 1.65; }

/* ---------- Final CTA ---------- */
.cta { padding: 80px 0; }
.cta__card { position: relative; overflow: hidden; border-radius: 32px; background: linear-gradient(150deg, var(--green-deep), var(--green-dk)); padding: 72px 40px; text-align: center; box-shadow: var(--shadow); }
.cta__court { position: absolute; inset: 0; opacity: .14;
  background-image: linear-gradient(rgba(245,242,234,0.6) 2px, transparent 2px), linear-gradient(90deg, rgba(245,242,234,0.6) 2px, transparent 2px);
  background-size: 80px 80px; background-position: center; }
.cta__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; color: var(--paper); }
.ball-badge { display: inline-block; width: 46px; height: 46px; border-radius: 50%; background: var(--ball); margin-bottom: 22px; position: relative; box-shadow: 0 0 0 6px rgba(203,224,63,0.2); }
.ball-badge::before, .ball-badge::after { content: ""; position: absolute; top: 8px; bottom: 8px; width: 14px; border: 1.5px solid rgba(22,20,15,0.5); border-radius: 50%; }
.ball-badge::before { left: 4px; border-right: none; } .ball-badge::after { right: 4px; border-left: none; }
.cta__content h2 { font-size: clamp(28px,4vw,44px); margin-bottom: 16px; }
.cta__content p { font-size: 18px; color: rgba(245,242,234,0.82); margin-bottom: 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__fine { font-size: 13px !important; color: rgba(245,242,234,0.6) !important; margin: 24px 0 0 !important; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 60px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line-light); }
.footer__brand { max-width: 280px; }
.footer__brand .brand__name { color: var(--paper); }
.footer__brand p { margin-top: 14px; font-size: 14px; color: rgba(245,242,234,0.55); }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__cols h5 { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ball); margin-bottom: 14px; }
.footer__cols a { display: block; font-size: 14px; color: rgba(245,242,234,0.72); padding: 5px 0; transition: color .2s; }
.footer__cols a:hover { color: var(--paper); }
.footer__base { padding-top: 24px; }
.footer__base p { font-size: 12.5px; color: rgba(245,242,234,0.45); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  /* single column — copy first (DOM order), phone below. No order flip. */
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .chain__grid, .pros__grid { grid-template-columns: 1fr; gap: 48px; }
  /* center via text-align so block children still wrap to the container width */
  .lede { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__proof { justify-content: center; }
  .steps, .feature-grid, .voices__grid, .inv-grid, .plans, .timeline { grid-template-columns: repeat(2,1fr); }
  .fcard--wide { grid-column: span 2; }
  .stat-row { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .plan--featured { transform: none; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
  .nav__cta .btn--primary { display: none; }
  .section { padding: 70px 0; }
  .steps, .feature-grid, .voices__grid, .inv-grid, .plans, .timeline { grid-template-columns: 1fr; }
  .fcard--wide { grid-column: span 1; }
  .chain__cat { min-width: 0; display: block; margin-bottom: 2px; }
  .trust__inner { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .trust__items { justify-content: center; gap: 6px 16px; }
  .trust__items .sep { display: none; }
  .hero { padding-top: 116px; }
  /* the decorative glow's edge reads as a vertical seam on narrow screens — drop it */
  .court-lines { display: none; }
  /* sized so the longest forced line ("In your pocket.") fits from 320px up */
  .hero h1 { font-size: clamp(28px, 8vw, 40px); line-height: 1.12; }
  .section__head { margin-bottom: 40px; }
  .cta__card { padding: 50px 22px; }
  .honesty__card { padding: 36px 24px; }
  /* differentiation rows: name over description, mark on the right */
  .diff-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "name mark" "desc mark";
    gap: 4px 14px; padding: 16px 18px;
  }
  .diff-row__name { grid-area: name; }
  .diff-row__desc { grid-area: desc; }
  .diff-row__mark { grid-area: mark; align-self: center; }
  .diff-row--us { transform: none; }
  /* keep the iPhone from crowding narrow screens */
  .hero__device { transform: scale(0.94); transform-origin: top center; margin-bottom: -28px; }
}
@media (max-width: 380px) {
  .hero__device { transform: scale(0.82); margin-bottom: -64px; }
  .container { padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone { animation: none; }
  .skeleton line { animation: none; stroke-dashoffset: 0; }
  html { scroll-behavior: auto; }
}
