/* ============================================================================
   Row Wise — marketing site design system
   Pure CSS. System font stack (fast, offline-friendly, no external requests).
   Light + dark themes via [data-theme] on <html>. Shared across every page.
   ============================================================================ */

:root {
  /* Brand ramp — crop green + harvest honey */
  --green-900: #0d2619;
  --green-850: #0f2c1e;
  --green-800: #14422c;
  --green-700: #18583a;
  --green-600: #1b6b43;
  --green-500: #2f8a59;
  --green-400: #4caf7d;
  --green-300: #7fca9f;
  --honey:     #e0a83e;
  --honey-lt:  #efc069;
  --honey-dk:  #c98f24;
  --clay:      #d9663f;   /* alert / "at risk" accent */

  /* Light surfaces */
  --cream:     #faf8f2;
  --cream-2:   #f2efe4;
  --cream-3:   #eae6d8;
  --ink:       #16241b;
  --ink-soft:  #3c4a42;
  --ink-mute:  #64746b;
  --line:      #e4e0d3;
  --line-2:    #d8d3c2;
  --white:     #ffffff;            /* literal white — text-on-color, NOT a themed surface */
  --surface:   var(--white);       /* card/panel bg — DOES flip in dark mode */
  --surface-2: var(--cream-2);
  --nav-bg:    rgba(250,248,242,.82);
  --glass:     rgba(255,255,255,.6);

  /* Shape + depth */
  --radius:    18px;
  --radius-lg: 24px;
  --radius-sm: 11px;
  --shadow:    0 1px 2px rgba(13,38,25,.06), 0 18px 40px -18px rgba(13,38,25,.22);
  --shadow-sm: 0 1px 2px rgba(13,38,25,.05), 0 8px 20px -12px rgba(13,38,25,.16);
  --shadow-lg: 0 40px 80px -32px rgba(13,38,25,.5);
  --ring:      0 0 0 3px rgba(76,175,125,.35);
  --maxw:      1160px;
  --maxw-wide: 1320px;

  /* Fluid type scale */
  --fs-display: clamp(2.6rem, 6.2vw, 4.4rem);
  --fs-h1:      clamp(2.15rem, 4.6vw, 3.35rem);
  --fs-h2:      clamp(1.85rem, 3.4vw, 2.6rem);
  --fs-h3:      clamp(1.15rem, 1.6vw, 1.32rem);
  --fs-lede:    clamp(1.08rem, 1.5vw, 1.28rem);

  color-scheme: light;
}

/* Dark theme — same hue, inverted surfaces. Sections that are ALREADY dark in both themes
   (.band--dark, .footer, .trust) hard-code their light-on-dark colours, untouched by this block. */
:root[data-theme="dark"] {
  --cream:     #0c110e;
  --cream-2:   #12181400;   /* transparent so the page bg shows through alt bands */
  --cream-3:   #141b16;
  --ink:       #eef1ec;
  --ink-soft:  #bcc5bd;
  --ink-mute:  #82907f;
  --line:      #263028;
  --line-2:    #2e392f;
  --surface:   #141b16;
  --surface-2: #10161200;
  --nav-bg:    rgba(12,17,14,.8);
  --glass:     rgba(20,27,22,.6);
  --shadow:    0 1px 2px rgba(0,0,0,.34), 0 18px 40px -18px rgba(0,0,0,.66);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.28), 0 8px 20px -12px rgba(0,0,0,.55);
  --shadow-lg: 0 40px 80px -30px rgba(0,0,0,.8);
  color-scheme: dark;
}
:root[data-theme="dark"] .section--alt { background: #0f1512; }
:root[data-theme="dark"] .accent { color: var(--green-300); }
:root[data-theme="dark"] .btn--ghost { color: var(--green-300); border-color: var(--green-500); }
:root[data-theme="dark"] .btn--ghost:hover { background: rgba(76,175,125,.12); }
:root[data-theme="dark"] .card,
:root[data-theme="dark"] .feat,
:root[data-theme="dark"] .step,
:root[data-theme="dark"] .plan { background: var(--surface); }

/* ── Base ──────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .25s ease, color .25s ease;
  overflow-x: hidden;
}
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.025em; color: var(--ink); font-weight: 800; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
::selection { background: rgba(76,175,125,.28); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--maxw-wide); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--green-600); color: var(--white);
  font-weight: 650; font-size: .95rem; letter-spacing: -0.01em;
  padding: .82rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 24px -12px rgba(27,107,67,.8);
}
.btn:hover { background: var(--green-500); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(27,107,67,.85); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--green-700); border-color: var(--line-2); box-shadow: none; }
.btn--ghost:hover { background: rgba(27,107,67,.07); border-color: var(--green-500); }
.btn--honey { background: var(--honey); color: var(--green-900); box-shadow: 0 12px 28px -12px rgba(224,168,62,.8); }
.btn--honey:hover { background: var(--honey-lt); }
.btn--small { padding: .58rem 1.15rem; font-size: .85rem; }
.btn--lg { padding: 1rem 2.1rem; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .16s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Text link with arrow */
.tlink { display: inline-flex; align-items: center; gap: .35rem; color: var(--green-600); font-weight: 650; font-size: .95rem; }
.tlink svg { width: 16px; height: 16px; transition: transform .16s ease; }
.tlink:hover svg { transform: translateX(3px); }
:root[data-theme="dark"] .tlink { color: var(--green-300); }

/* ── Bits: eyebrow, pills, badges, accent ──────────────────────────────── */
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 800; color: var(--green-600); margin-bottom: 1rem; display: inline-flex; align-items:center; gap:.5rem; }
.eyebrow--light { color: var(--honey); }
:root[data-theme="dark"] .eyebrow { color: var(--green-300); }
.accent {
  color: var(--green-600);
  background: linear-gradient(96deg, var(--green-600), var(--green-400) 60%, var(--honey-dk));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .38rem .8rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: .82rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); }
.badge { display: inline-block; padding: .28rem .7rem; border-radius: 999px; background: rgba(27,107,67,.1); color: var(--green-700); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
:root[data-theme="dark"] .badge { background: rgba(76,175,125,.16); color: var(--green-300); }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--nav-bg); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; gap: 1.4rem; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 850; font-size: 1.22rem; color: var(--green-700); letter-spacing: -0.035em; flex: none; }
:root[data-theme="dark"] .brand { color: var(--green-300); }
.brand__mark { color: var(--green-500); flex: none; }
.brand__thin { font-weight: 500; color: var(--ink-soft); }
.brand__accent { color: #b07d1e; }
:root[data-theme="dark"] .brand__accent { color: #ecc169; }
.nav__links { display: flex; gap: .3rem; margin-left: auto; }
.nav__links a { color: var(--ink-soft); font-weight: 550; font-size: .92rem; padding: .5rem .75rem; border-radius: 10px; transition: color .15s ease, background .15s ease; }
.nav__links a:hover { color: var(--green-600); background: rgba(27,107,67,.06); }
.nav__links a.is-active { color: var(--green-700); background: rgba(27,107,67,.09); }
:root[data-theme="dark"] .nav__links a:hover, :root[data-theme="dark"] .nav__links a.is-active { color: var(--green-300); background: rgba(76,175,125,.12); }
.nav__actions { display: flex; align-items: center; gap: .7rem; flex: none; }

.theme-toggle { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft); cursor: pointer; transition: color .15s ease, border-color .15s ease; }
.theme-toggle:hover { color: var(--green-600); border-color: var(--green-400); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .i-moon { display: none; }
[data-theme="dark"] .theme-toggle .i-sun { display: none; }
[data-theme="dark"] .theme-toggle .i-moon { display: block; }

/* Hamburger + mobile panel */
.nav__burger { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }
.nav__burger svg { width: 20px; height: 20px; }
.mobile-menu { display: none; position: fixed; inset: 70px 0 auto 0; z-index: 99; background: var(--nav-bg); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: 1rem 24px 1.4rem; box-shadow: var(--shadow); }
.mobile-menu.open { display: block; animation: menuIn .22s ease; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-menu a { display: block; padding: .85rem .4rem; font-size: 1.05rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 1rem; width: 100%; }

/* ── Section scaffolding ───────────────────────────────────────────────── */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--alt { background: var(--cream-2); }
.section__head { max-width: 44rem; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__head h2 { font-size: var(--fs-h2); }
.section__head p { color: var(--ink-soft); font-size: var(--fs-lede); margin-top: .85rem; }

/* Topographic contour motif (subtle field-cartography texture) */
.topo { position: relative; }
.topo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cg fill='none' stroke='%231b6b43' stroke-opacity='0.06' stroke-width='1.4'%3E%3Cpath d='M-20 120 C 200 40 380 200 600 140 S 1000 20 1240 120'/%3E%3Cpath d='M-20 200 C 220 130 400 280 620 220 S 1010 110 1240 200'/%3E%3Cpath d='M-20 300 C 240 230 420 370 640 310 S 1020 210 1240 300'/%3E%3Cpath d='M-20 400 C 240 340 420 470 640 410 S 1020 320 1240 400'/%3E%3Cpath d='M-20 490 C 240 440 420 560 640 500 S 1020 420 1240 490'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}
.topo > * { position: relative; z-index: 1; }

/* ── Hero (home) ───────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 520px at 82% -10%, rgba(76,175,125,.2), transparent 60%),
    radial-gradient(760px 420px at -5% 108%, rgba(224,168,62,.14), transparent 55%),
    var(--cream);
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.hero__grid { display: grid; grid-template-columns: 1.02fr 1.28fr; gap: clamp(2rem, 4vw, 3.4rem); align-items: center; }
.hero h1 { font-size: var(--fs-display); font-weight: 850; letter-spacing: -0.035em; }
.hero .lede { font-size: var(--fs-lede); color: var(--ink-soft); margin: 1.3rem 0 1.9rem; max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__note { margin-top: 1.3rem; font-size: .86rem; color: var(--ink-mute); display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; }
.hero__note svg { width: 15px; height: 15px; color: var(--green-500); flex: none; }
.hero__note a { color: var(--green-600); font-weight: 700; }

/* ── Notify form (pre-launch "join the waitlist" capture) ────────────── */
.notify { display: flex; gap: .6rem; max-width: 26rem; flex-wrap: wrap; }
.notify input[type="email"] {
  flex: 1 1 220px; min-width: 0;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--ink);
  padding: .85rem 1.05rem; border-radius: 999px; font-size: .95rem;
  transition: border-color .15s ease, background .15s ease;
}
.notify input[type="email"]::placeholder { color: var(--ink-mute); }
.notify input[type="email"]:focus { border-color: var(--green-400); outline: none; box-shadow: var(--ring); }
.notify button {
  flex: none; display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-500); color: #fff; font-weight: 700; font-size: .94rem;
  padding: .85rem 1.4rem; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 10px 26px -12px rgba(47,138,89,.75);
  transition: transform .14s ease, background .15s ease, box-shadow .14s ease;
}
.notify button:hover { background: var(--green-400); transform: translateY(-2px); }
.notify button:active { transform: translateY(0); }
.notify__note { margin-top: .7rem; font-size: .82rem; color: var(--ink-mute); }
.notify--done .notify { display: none; }
.notify__thanks { display: none; font-size: .98rem; color: var(--honey-dk); font-weight: 700; margin-top: .6rem; }
.notify--done .notify__thanks { display: block; }
.notify--done .notify__note { display: none; }
.hero__mock { display: flex; justify-content: center; perspective: 1600px; }

/* Page hero (interior pages) */
.phero { position: relative; overflow: hidden; padding: clamp(2.6rem, 5vw, 4.4rem) 0 clamp(2.2rem, 4vw, 3.4rem); border-bottom: 1px solid var(--line);
  background: radial-gradient(900px 420px at 88% -20%, rgba(76,175,125,.16), transparent 62%), var(--cream); }
.phero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.phero h1 { font-size: var(--fs-h1); }
.phero .lede { font-size: var(--fs-lede); color: var(--ink-soft); margin: 1.1rem 0 1.6rem; max-width: 46ch; }
.phero--center { text-align: center; }
.phero--center .phero__grid { grid-template-columns: 1fr; }
.phero--center .lede { margin-inline: auto; }
.phero--center .phero__cta { justify-content: center; }
.phero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Device frames ─────────────────────────────────────────────────────── */
.frame { width: 100%; max-width: var(--w, 620px); background: var(--green-900); border-radius: 16px; padding: 9px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.07); }
.frame__bar { display: flex; gap: 6px; padding: 5px 8px 10px; }
.frame__bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.24); }
.frame__screen { border-radius: 10px; overflow: hidden; line-height: 0; background: var(--green-900); }
.frame__screen img { width: 100%; height: auto; }
.hero .frame { transform: rotateY(-4deg) rotateX(1.5deg); }

/* Phone frame — realistic device: metallic bezel, rounded screen, iOS-style status bar + dynamic island */
.phone { position: relative; width: 100%; max-width: var(--w, 288px); background: linear-gradient(155deg, #23272a, #0a0c0b 62%); border-radius: 46px; padding: 12px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.14); }
.phone__screen { position: relative; border-radius: 34px; overflow: hidden; line-height: 0; background: #0b100d; }
.phone__screen img { width: 100%; height: auto; display: block; }
.phone__status { display: flex; align-items: center; justify-content: space-between; height: 30px; padding: 0 17px; background: #0a0d0b; line-height: 1; }
.phone__status .t { color: #fff; font-size: 11px; font-weight: 650; font-variant-numeric: tabular-nums; }
.phone__island { position: absolute; left: 50%; top: 7px; transform: translateX(-50%); width: 74px; height: 19px; border-radius: 999px; background: #000; }
.phone__batt { position: relative; width: 22px; height: 11px; border: 1.4px solid rgba(255,255,255,.6); border-radius: 3px; }
.phone__batt::after { content: ""; position: absolute; top: 2px; left: 2px; bottom: 2px; right: 5.5px; background: #fff; border-radius: 1px; }
.phone__batt::before { content: ""; position: absolute; top: 3px; right: -3px; width: 1.6px; height: 4px; background: rgba(255,255,255,.6); border-radius: 0 2px 2px 0; }

/* Floating caption chip on a media element */
.media { position: relative; }
.media__chip { position: absolute; bottom: 14px; left: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: .6rem .85rem; box-shadow: var(--shadow); font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; max-width: 74%; }
.media__chip b { color: var(--green-600); }
:root[data-theme="dark"] .media__chip b { color: var(--green-300); }

/* ── Trust / logos strip ───────────────────────────────────────────────── */
.trust { background: var(--green-900); color: #dfe6e0; padding: 1.35rem 0; }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.9rem; justify-content: center; }
.trust__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--honey); font-weight: 800; }
.trust__logos { list-style: none; display: flex; flex-wrap: wrap; gap: .9rem 1.7rem; }
.trust__logos li { font-weight: 650; font-size: .92rem; opacity: .92; }

/* ── Value cards ───────────────────────────────────────────────────────── */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.value:hover { box-shadow: var(--shadow); border-color: var(--green-400); transform: translateY(-3px); }
.value__ico { width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.6rem; background: var(--cream-3); border-radius: 15px; margin-bottom: 1.1rem; }
:root[data-theme="dark"] .value__ico { background: #1b241d; }
.value h3 { font-size: var(--fs-h3); margin-bottom: .45rem; }
.value p { color: var(--ink-soft); font-size: .96rem; }

/* ── Feature grid (cards) ──────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.feat { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease; overflow: hidden; }
.feat:hover { box-shadow: var(--shadow); border-color: var(--green-400); transform: translateY(-3px); }
.feat__ico { display: inline-grid; place-items: center; width: 48px; height: 48px; font-size: 1.4rem; background: var(--cream-3); border-radius: 13px; margin-bottom: 1rem; }
:root[data-theme="dark"] .feat__ico { background: #1b241d; }
.feat h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.feat p { color: var(--ink-soft); font-size: .92rem; }
.feat em { font-style: normal; color: var(--green-600); font-weight: 650; }
:root[data-theme="dark"] .feat em { color: var(--green-300); }
.feat__link { display: inline-block; margin-top: .5rem; font-size: .84rem; font-weight: 650; color: var(--green-600); text-decoration: none; }
.feat__link:hover { text-decoration: underline; }
:root[data-theme="dark"] .feat__link { color: var(--green-300); }

/* ── Media rows (alternating image / copy) ─────────────────────────────── */
.mrow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.mrow + .mrow { margin-top: clamp(3rem, 6vw, 5.5rem); }
.mrow--flip .mrow__media { order: 2; }
.mrow__copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); }
.mrow__copy > p { color: var(--ink-soft); font-size: 1.06rem; margin-top: 1rem; }
.mrow__media .frame, .mrow__media .phone { margin: 0 auto; }

/* Tick list */
.ticks { list-style: none; margin-top: 1.5rem; display: grid; gap: .75rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); font-size: .98rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.3rem; height: 1.3rem; display: grid; place-items: center; background: var(--green-500); color: #fff; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.ticks strong { color: var(--ink); font-weight: 700; }

/* Mini feature list inside a media row */
.minilist { list-style: none; margin-top: 1.4rem; display: grid; gap: 1rem; }
.minilist li { display: flex; gap: .8rem; }
.minilist .mi__ico { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--cream-3); display: grid; place-items: center; font-size: 1.05rem; }
:root[data-theme="dark"] .minilist .mi__ico { background: #1b241d; }
.minilist h4 { font-size: .98rem; margin-bottom: .1rem; }
.minilist p { font-size: .9rem; color: var(--ink-soft); }

/* ── Bands (dark + honey) ──────────────────────────────────────────────── */
.band { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.band--dark { position: relative; overflow: hidden; background: radial-gradient(820px 420px at 88% 0%, rgba(76,175,125,.18), transparent 60%), var(--green-900); color: #e8efe9; }
.band--dark h2, .band--dark h3 { color: #fff; }
.band--dark p { color: #c9d5cc; }

/* ── Flagship verdict panel ────────────────────────────────────────────── */
.flagship { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.flagship__copy h2 { font-size: var(--fs-h2); }
.flagship__copy h2 em { font-style: italic; color: var(--honey); }
.flagship__copy p { font-size: 1.06rem; margin-top: 1rem; }
.flagship__copy strong { color: #fff; }
.flagship .ticks li { color: #dbe5dc; }
.flagship .ticks strong { color: var(--honey); }

.verdict { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); padding: 1.6rem; backdrop-filter: blur(4px); }
.verdict__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--honey); font-weight: 800; }
.verdict__call { font-size: 1.75rem; font-weight: 850; color: #fff; margin: .35rem 0 1.15rem; letter-spacing: -0.02em; }
.verdict__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-bottom: 1.35rem; }
.verdict__tiles div { background: rgba(0,0,0,.22); border-radius: 12px; padding: .85rem .5rem; text-align: center; }
.verdict__tiles span { display: block; font-size: 1.3rem; font-weight: 850; color: var(--green-400); }
.verdict__tiles small { font-size: .64rem; color: #b9c7bc; text-transform: uppercase; letter-spacing: .04em; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 92px; padding: 0 2px; }
.bars i { flex: 1; height: 0; background: var(--green-500); border-radius: 4px 4px 0 0; opacity: .92; transition: height .85s cubic-bezier(.2,.7,.2,1); }
.verdict.in .bars i, .reveal.in .bars i { height: var(--h); }
.bars .bars--red { background: var(--clay); }
.verdict__foot { font-size: .72rem; color: #aebbb0; margin-top: .95rem; }

/* ── Steps ─────────────────────────────────────────────────────────────── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.steps--4up { grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* Feature accordion — the grouped "everything" section (a few dropdowns) */
.facc-wrap { display: grid; gap: .75rem; max-width: 960px; margin-inline: auto; }
.facc { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); overflow: hidden; }
.facc > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1rem; padding: 1.05rem 1.25rem; user-select: none; transition: background .15s ease; }
.facc > summary::-webkit-details-marker { display: none; }
.facc > summary:hover { background: var(--cream-2); }
.facc__ico { font-size: 1.5rem; line-height: 1; flex: none; }
.facc__t { display: flex; flex-direction: column; min-width: 0; }
.facc__name { font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }
.facc__sub { font-size: .85rem; color: var(--ink-soft); }
.facc__count { margin-left: auto; flex: none; font-size: .72rem; font-weight: 800; color: var(--green-600); background: rgba(47,138,89,.1); padding: .25rem .6rem; border-radius: 999px; }
.facc__chev { flex: none; color: var(--ink-mute); transition: transform .2s ease; }
.facc[open] .facc__chev { transform: rotate(180deg); }
.facc[open] > summary { border-bottom: 1px solid var(--line); }
.facc > .features { padding: 1.15rem 1.25rem 1.35rem; }
:root[data-theme="dark"] .facc > summary:hover { background: rgba(255,255,255,.04); }
@media (max-width: 560px) { .facc__count { display: none; } .facc__sub { font-size: .8rem; } }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm); transition: box-shadow .18s ease, transform .18s ease; }
.step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step__n { display: grid; place-items: center; width: 42px; height: 42px; background: linear-gradient(135deg, var(--green-600), var(--green-500)); color: #fff; font-weight: 850; border-radius: 13px; margin-bottom: 1rem; font-size: 1.15rem; }
.step h3 { font-size: var(--fs-h3); margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }
.step__line { position: absolute; top: 40px; right: -0.85rem; width: 1.7rem; height: 2px; background: var(--line-2); }
.steps .step:last-child .step__line { display: none; }

/* ── Pipeline (data → model → output) ──────────────────────────────────── */
.pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pipe__node { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm); }
.pipe__node .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--green-600); font-weight: 800; }
:root[data-theme="dark"] .pipe__node .k { color: var(--green-300); }
.pipe__node h4 { font-size: 1rem; margin: .3rem 0 .25rem; }
.pipe__node p { font-size: .85rem; color: var(--ink-soft); }

/* ── Stat band ─────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat { text-align: center; padding: 1rem; }
.stat b { display: block; font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 850; letter-spacing: -0.02em; color: var(--green-600); }
:root[data-theme="dark"] .stat b { color: var(--green-300); }
.band--dark .stat b { color: var(--green-400); }
.stat span { font-size: .9rem; color: var(--ink-soft); }
.band--dark .stat span { color: #b9c7bc; }

/* ── Pricing ───────────────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: start; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); }
.plan--featured { border: 2px solid var(--green-500); box-shadow: 0 26px 55px -24px rgba(27,107,67,.5); transform: translateY(-8px); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green-600); color: #fff; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .32rem .85rem; border-radius: 999px; }
.plan h3 { font-size: 1.28rem; }
.plan__price { font-size: 2.5rem; font-weight: 850; color: var(--ink); margin: .5rem 0 .15rem; letter-spacing: -0.03em; }
.plan__price small { font-size: .95rem; font-weight: 500; color: var(--ink-mute); }
.plan__for { color: var(--ink-mute); font-size: .9rem; margin-bottom: 1.3rem; }
.plan ul { list-style: none; display: grid; gap: .65rem; margin-bottom: 1.7rem; }
.plan li { position: relative; padding-left: 1.65rem; font-size: .93rem; color: var(--ink-soft); }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--green-500); font-weight: 800; }
.plans__note { text-align: center; color: var(--ink-mute); font-size: .88rem; max-width: 48rem; margin: 1.8rem auto 0; }

/* Comparison table */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--surface); }
.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp th, .cmp td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
.cmp thead th { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mute); font-weight: 800; background: var(--cream-2); }
:root[data-theme="dark"] .cmp thead th { background: #10161200; }
.cmp tbody td:first-child, .cmp tbody th:first-child { font-weight: 600; color: var(--ink); }
.cmp td.mid { text-align: center; }
.cmp .yes { color: var(--green-600); font-weight: 800; }
:root[data-theme="dark"] .cmp .yes { color: var(--green-300); }
.cmp .no { color: var(--ink-mute); }
.cmp tr:last-child td { border-bottom: none; }
.cmp .col-feat { background: rgba(47,138,89,.05); }

/* ── FAQ (accordion) ───────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: .8rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-weight: 650; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--green-600); font-weight: 400; transition: transform .2s ease; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-size: .96rem; }

/* ── Quote / callout ───────────────────────────────────────────────────── */
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote p { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 650; letter-spacing: -0.02em; line-height: 1.4; }
.quote cite { display: block; margin-top: 1.1rem; font-style: normal; font-size: .95rem; color: var(--ink-mute); }

.callout { display: flex; gap: 1rem; align-items: flex-start; background: rgba(224,168,62,.1); border: 1px solid rgba(224,168,62,.4); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.callout__ico { flex: none; font-size: 1.3rem; }
.callout p { color: var(--ink-soft); font-size: .96rem; }
.callout strong { color: var(--ink); }

/* ── Final CTA band ────────────────────────────────────────────────────── */
.cta { position: relative; overflow: hidden; background: radial-gradient(760px 340px at 50% 122%, rgba(224,168,62,.24), transparent 60%), var(--green-700); color: #fff; text-align: center; padding: clamp(3.6rem, 7vw, 6rem) 0; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.cta p { color: #d6e3d8; font-size: 1.12rem; margin: .9rem auto 1.9rem; max-width: 40ch; }
.cta__row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta__note { margin-top: 1.2rem; font-size: .85rem; color: #b6c8ba; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer { background: var(--green-900); color: #c3d0c6; padding: 3.2rem 0 1.6rem; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 2.6rem; padding-bottom: 2.3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand { color: #fff; font-size: 1.32rem; }
.footer__brand .brand__thin { color: #aebcb0; }
.footer__brand .brand__accent { color: #ecc169; }
.footer__brand p { margin-top: .85rem; font-size: .92rem; max-width: 36ch; color: #aebcb0; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__cols h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .85rem; }
.footer__cols a { display: block; font-size: .9rem; color: #aebcb0; margin-bottom: .55rem; transition: color .14s ease; }
.footer__cols a:hover { color: var(--honey); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; padding-top: 1.4rem; font-size: .8rem; color: #8f9d92; }

/* ── Utilities ─────────────────────────────────────────────────────────── */
.center { text-align: center; }
.mt-sm { margin-top: 1rem; } .mt-md { margin-top: 1.8rem; } .mt-lg { margin-top: 2.6rem; }
.maxw-42 { max-width: 42rem; } .mx-auto { margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__actions .btn--small, .nav__actions .theme-toggle { display: none; }
  .nav__burger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__mock { order: -1; }
  .hero .frame { transform: none; }
  .hero .lede { max-width: none; }
  .phero__grid { grid-template-columns: 1fr; }
  .phero__media { order: -1; }
  .flagship { grid-template-columns: 1fr; }
  .pipe { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .steps--4up { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .values { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step__line { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .mrow { grid-template-columns: 1fr; gap: 2rem; }
  .mrow--flip .mrow__media { order: -1; }
  .mrow__media { order: -1; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.9rem; }
}
@media (max-width: 520px) {
  .features { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .trust__inner { justify-content: flex-start; }
  .grid-2 { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

/* ── Motion ────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.hero .frame, .float { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero .frame { animation: floaty 8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero .frame, .float { animation: none; }
  .bars i { transition: none; }
  html { scroll-behavior: auto; }
  * { scroll-behavior: auto !important; }
}
