/* Zizo Apps · landing page
   Reuses the pre-read deck's brand: deep navy + warm cream, Inter + JetBrains Mono.
   Fluid/responsive (mobile-first), independent of the fixed-size deck styles. */

:root {
  /* Surfaces */
  --bg: #f5f1ea;
  --bg-2: #ede6da;
  --bg-dark: #142033;
  --bg-deep: #0a1422;
  --paper: #ffffff;

  /* Text */
  --ink: #15201d;
  --ink-2: #3d4a46;
  --ink-soft: #7e8a85;
  --rule: #ddd5c4;
  --rule-soft: #ebe3d2;

  /* Accents */
  --accent: #2A4A7F;
  --accent-2: #8FB4E0;
  --accent-deep: #142033;
  --accent-soft: rgba(42, 74, 127, 0.10);
  --accent-warm: #C8853A;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Layout */
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --sec-pad: clamp(64px, 9vw, 132px);
  --radius: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 18px;
}
.eyebrow .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 999px;
  background: var(--accent); margin-right: 9px; vertical-align: middle;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.03em; text-wrap: balance; line-height: 1.04; }

.h-display { font-size: clamp(2.7rem, 7.2vw, 5.4rem); font-weight: 600; }
.h-sec { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 600; line-height: 1.02; }
.h-card { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 600; letter-spacing: -0.022em; line-height: 1.12; }

.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink-2);
  font-weight: 450;
  letter-spacing: -0.014em;
  max-width: 46ch;
  text-wrap: pretty;
}
.accent-ink { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(42,74,127,.22); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(42,74,127,.30); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ondark { background: #fff; color: var(--accent-deep); box-shadow: 0 8px 22px rgba(0,0,0,.25); }
.btn-ondark:hover { box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.btn-arrow { font-family: var(--font-mono); font-size: 1.05em; line-height: 1; }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,241,234,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 0; font-family: var(--font-mono);
  font-size: 1.02rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink-2); font-weight: 500; }
.brand b { color: var(--ink); font-weight: 700; }
.brand .dot { width: 11px; height: 11px; border-radius: 999px; background: var(--accent); margin-right: 11px; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink-2); transition: color .15s ease; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: inline-flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 11px 20px; font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { display: block; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(48px, 8vw, 96px); padding-bottom: var(--sec-pad); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-bottom: 26px; }
.hero .lede { margin-bottom: 34px; max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-family: var(--font-mono); font-size: .82rem; color: var(--ink-soft); letter-spacing: 0.02em;
  margin-top: 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero-note .pip { width: 8px; height: 8px; border-radius: 999px; background: #3a9d6e; box-shadow: 0 0 0 4px rgba(58,157,110,.16); }

/* Phone mock */
.phone-stage { display: flex; justify-content: center; position: relative; }
.phone-stage::before {
  content: ""; position: absolute; inset: -8% -4%; border-radius: 50%;
  background: radial-gradient(60% 55% at 60% 40%, rgba(42,74,127,.12), transparent 70%);
  z-index: 0;
}
.phone {
  position: relative; z-index: 1;
  width: clamp(256px, 31vw, 326px); aspect-ratio: 320 / 768;
  background: #faf7ec; border-radius: 40px;
  border: 1px solid var(--rule);
  box-shadow: 0 40px 80px rgba(20,32,51,.20), 0 12px 26px rgba(20,32,51,.10);
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
}
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: #0a1422; border-radius: 999px; z-index: 3; }
.ph-head { display: flex; align-items: center; gap: 9px; padding: 30px 17px 5px; }
.ph-avatar { width: 30px; height: 30px; border-radius: 999px; background: #ece5d0; border: 1px solid var(--rule);
  display: grid; place-items: center; color: var(--ink-soft); flex-shrink: 0; }
.ph-avatar svg { width: 15px; height: 15px; }
.ph-uname { font-family: var(--font-sans); font-weight: 600; font-size: 13px; color: var(--ink); letter-spacing: -0.01em; }
.ph-head-ic { margin-left: auto; display: flex; gap: 12px; color: var(--accent); }
.ph-head-ic svg { width: 18px; height: 18px; display: block; }
.ph-body { padding: 0 16px 0; overflow: hidden; flex: 1; }
.ph-h { font-family: var(--font-sans); font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -0.02em; margin: 5px 0 4px; }

/* menu card */
.ph-menu { background: #f0ead6; border-radius: 12px; overflow: hidden; }
.ph-mrow { display: grid; grid-template-columns: 64px 1fr; gap: 10px; align-items: center; padding: 5px 12px; border-bottom: 1px solid rgba(20,32,51,.07); }
.ph-mrow:last-child { border-bottom: 0; }
.ph-mrow .mlabel b { display: block; font-size: 10px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.ph-mrow .mlabel span { font-size: 8px; color: var(--ink-soft); }
.ph-mrow .mdesc { font-size: 8.5px; line-height: 1.3; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* events */
.ph-evt { display: grid; grid-template-columns: 42px 1fr; gap: 10px; padding: 6px 0; border-bottom: 1px solid rgba(20,32,51,.08); }
.ph-evt:last-child { border-bottom: 0; }
.ph-evt .thumb { width: 42px; height: 42px; border-radius: 9px; }
.ph-evt .etime { font-size: 8px; color: var(--ink-soft); margin-bottom: 1px; }
.ph-evt .etitle { font-size: 10.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.12; margin-bottom: 1px; }
.ph-evt .edesc { font-size: 8px; color: var(--ink-2); line-height: 1.28; }

/* announcements */
.ph-ann { display: grid; grid-template-columns: 38px 1fr; gap: 10px; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(20,32,51,.08); }
.ph-ann:last-child { border-bottom: 0; }
.ph-ann .athumb { width: 38px; height: 38px; border-radius: 8px; }
.ph-ann .alabel { font-size: 7.5px; color: var(--accent); font-weight: 600; text-decoration: underline; margin-bottom: 1px; }
.ph-ann .atitle { font-size: 10px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.12; }
.ph-ann .asub { font-size: 8px; color: var(--ink-soft); }

/* communities */
.ph-comm { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 2px; }
.ph-tile { position: relative; height: 52px; border-radius: 10px; overflow: hidden; padding: 8px 9px; display: flex; align-items: flex-end; }
.ph-tile .scope { position: absolute; top: 6px; right: 6px; font-size: 6.5px; font-weight: 600; background: rgba(255,255,255,.88); color: var(--ink-2); padding: 2px 6px; border-radius: 999px; }
.ph-tile .cname { font-size: 9px; font-weight: 700; color: #fff; background: rgba(20,32,51,.42); padding: 2px 7px; border-radius: 6px; letter-spacing: -0.01em; }

/* bottom tabs */
.ph-tabs { display: flex; justify-content: space-around; align-items: center; padding: 8px 6px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(20,32,51,.08); background: #f4eeda; }
.ph-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--ink-soft); }
.ph-tab svg { width: 18px; height: 18px; display: block; }
.ph-tab .tico { display: inline-grid; place-items: center; padding: 3px 13px; border-radius: 999px; }
.ph-tab .tlabel { font-size: 8px; font-weight: 500; letter-spacing: -0.01em; }
.ph-tab.active { color: var(--accent); }
.ph-tab.active .tico { background: rgba(42,74,127,.12); }

.phone-wrap { position: relative; width: max-content; margin-inline: auto; }
.floaty { position: absolute; z-index: 3; background: var(--paper); border: 1px solid var(--rule);
  border-radius: 13px; padding: 10px 13px; box-shadow: 0 16px 38px rgba(20,32,51,.18);
  font-family: var(--font-sans); width: max-content; max-width: clamp(124px, 16vw, 168px); }
.floaty .ft-k { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: .09em; color: var(--accent); margin-bottom: 3px; }
.floaty .ft-v { font-weight: 700; font-size: clamp(.8rem, 1.05vw, .98rem); color: var(--ink); letter-spacing: -0.02em; line-height: 1.18; }
.floaty.ev { top: 46%; left: 0; transform: translate(-57%, -50%); }
.floaty.an { top: 59%; right: 0; transform: translate(58%, -50%); }
.floaty.co { top: 78%; left: 0; transform: translate(-58%, -50%); }
@media (max-width: 560px) {
  .floaty { max-width: 132px; padding: 8px 11px; border-radius: 11px; box-shadow: 0 10px 26px rgba(20,32,51,.20); }
  .floaty .ft-v { font-size: .8rem; }
  .floaty.ev { transform: translate(-46%, -50%); }
  .floaty.co { transform: translate(-34%, -50%); }
  .floaty.an { transform: translate(34%, -50%); }
}

/* ---------- Logos / trust strip ---------- */
.trust { border-block: 1px solid var(--rule); background: var(--bg-2); }
.trust-inner { display: flex; align-items: center; gap: clamp(18px,4vw,48px); padding: 22px 0; flex-wrap: wrap; }
.trust .label { font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.trust .item { font-family: var(--font-mono); font-size: .92rem; color: var(--ink-2); font-weight: 500; letter-spacing: .02em; }
.trust .item b { color: var(--ink); font-weight: 700; }

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--sec-pad); }
.section.alt { background: var(--bg-2); }
.section.dark { background: var(--bg-dark); color: #d8e3f0; }
.section.dark .h-sec, .section.dark .h-card { color: #fff; }
.section.dark .eyebrow { color: var(--accent-2); }
.section.dark .lede { color: #c1d1e3; }

.sec-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .lede { margin-top: 20px; }
.sec-head.center .lede { margin-inline: auto; }

/* ---------- Problem cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.pcard { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(24px,3vw,34px); }
.pcard .num { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 16px; }
.pcard h3 { margin-bottom: 12px; }
.pcard p { margin: 0; color: var(--ink-2); font-size: 1.02rem; text-wrap: pretty; }
.problem-foot { margin-top: clamp(34px, 5vw, 52px); padding-top: 30px; border-top: 1px solid var(--rule);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); max-width: 24ch; text-wrap: balance; }
.section.alt .pcard { background: var(--paper); }

/* ---------- Audience (residents / staff) split ---------- */
.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split.rev { grid-template-columns: 1.08fr 0.92fr; }
.split.rev .split-media { order: -1; }
.feat-list { display: grid; gap: 4px; margin-top: 30px; }
.feat-list .fi { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--rule); align-items: start; }
.feat-list .fi:last-child { border-bottom: 1px solid var(--rule); }
.feat-list .fi .ix { font-family: var(--font-mono); font-size: .82rem; color: var(--accent); font-weight: 500; padding-top: 4px; letter-spacing: .04em; }
.feat-list .fi h4 { font-size: 1.18rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 5px; }
.feat-list .fi p { margin: 0; color: var(--ink-2); font-size: 1rem; text-wrap: pretty; }
.section.dark .feat-list .fi { border-color: rgba(143,180,224,.22); }
.section.dark .feat-list .fi p { color: #b9cadf; }
.section.dark .feat-list .fi .ix { color: var(--accent-2); }
.section.dark .feat-list .fi h4 { color: #fff; }

/* glow card for audience media */
.media-panel {
  border-radius: 22px; padding: clamp(26px, 3.4vw, 40px);
  background: var(--paper); border: 1px solid var(--rule);
  box-shadow: 0 30px 70px rgba(20,32,51,.10);
}
.section.dark .media-panel { background: rgba(255,255,255,.04); border-color: rgba(143,180,224,.22); box-shadow: none; }
.mini-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini { border-radius: 14px; padding: 18px; border: 1px solid var(--rule); background: var(--bg); }
.section.dark .mini { background: rgba(255,255,255,.03); border-color: rgba(143,180,224,.18); }
.mini .mk { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 12px; }
.section.dark .mini .mk { color: var(--accent-2); }
.mini .mv { font-weight: 600; font-size: 1.04rem; letter-spacing: -0.02em; color: var(--ink); line-height: 1.2; }
.section.dark .mini .mv { color: #fff; }
.mini .ln { height: 7px; border-radius: 999px; background: var(--rule); margin-top: 9px; }
.mini .ln.s { width: 62%; }
.section.dark .mini .ln { background: rgba(143,180,224,.28); }
.mini.span { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; }
.mini.span .badge { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 11px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 600; }

/* ---------- Stats / proof ---------- */
.stat-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px,5vw,64px); align-items: center; }
.stat-big { font-size: clamp(4.5rem, 12vw, 9rem); font-weight: 600; line-height: .9; letter-spacing: -0.04em; color: var(--accent-2); font-variant-numeric: tabular-nums; }
.stat-big small { font-size: .42em; font-weight: 500; }
.stat-cap { font-family: var(--font-mono); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-2); margin-top: 8px; }
.stat-sub { color: #c1d1e3; font-size: 1.1rem; margin-top: 20px; max-width: 40ch; text-wrap: pretty; }
.stat-sub b { color: #fff; font-weight: 600; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2.4vw,30px); margin-top: clamp(34px,5vw,52px); padding-top: 34px; border-top: 1px solid rgba(143,180,224,.24); }
.stat-cell .n { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat-cell .n .pct { font-size: .5em; }
.stat-cell .l { font-family: var(--font-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-2); margin-top: 12px; }
.proof-notes { display: grid; gap: 16px; }
.proof-note { border: 1px solid rgba(143,180,224,.24); border-radius: 14px; padding: 20px 22px; background: rgba(255,255,255,.03); }
.proof-note .pt { font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-2); margin-bottom: 9px; font-weight: 500; }
.proof-note p { margin: 0; color: #c1d1e3; font-size: 1rem; line-height: 1.5; text-wrap: pretty; }

/* ---------- Feature grid ---------- */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2.2vw,24px); }
.fcard { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(24px,2.8vw,32px); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.fcard:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(20,32,51,.10); border-color: var(--accent-2); }
@media (prefers-reduced-motion: reduce) { .fcard:hover { transform: none; } }
.fcard .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 20px; color: var(--accent); }
.fcard .ico svg { width: 24px; height: 24px; }
.fcard h3 { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 9px; }
.fcard p { margin: 0; color: var(--ink-2); font-size: 1rem; text-wrap: pretty; }

/* ---------- Three outcomes ---------- */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.ocard { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; }
.ocard.tint { background: #e3ecf7; border-color: #c4d4e8; }
.ocard.dark { background: var(--bg-dark); border-color: var(--bg-dark); color: #d8e3f0; }
.otag { align-self: flex-start; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; padding: 6px 13px; border-radius: 999px; background: var(--accent); color: #fff; }
.ocard.tint .otag { background: var(--accent-deep); }
.ocard.dark .otag { background: var(--accent-2); color: var(--bg-deep); }
.ocard h3 { margin: 20px 0 6px; font-size: clamp(1.3rem, 2.1vw, 1.6rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.08; }
.ocard.dark h3 { color: #fff; }
.olist { list-style: none; margin: 14px 0 0; padding: 0; }
.olist li { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: baseline; padding: 13px 0; border-top: 1px solid var(--rule); font-size: 1rem; line-height: 1.4; color: var(--ink-2); letter-spacing: -0.011em; text-wrap: pretty; }
.olist li:last-child { border-bottom: 1px solid var(--rule); }
.olist .oi { font-family: var(--font-mono); font-size: .82rem; color: var(--accent); font-weight: 500; }
.ocard.tint .olist li { border-color: #c4d4e8; }
.ocard.dark .olist li { border-color: rgba(143,180,224,.24); color: #c1d1e3; }
.ocard.dark .olist .oi { color: var(--accent-2); }
@media (max-width: 880px) { .outcomes { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.6vw,28px); }
.step { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(24px,3vw,32px); position: relative; }
.step.live { border-color: var(--accent); border-width: 1.5px; }
.step .kk { font-family: var(--font-mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.step .badge-live { position: absolute; top: 22px; right: 24px; font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.step h3 { font-size: 1.28rem; font-weight: 600; letter-spacing: -0.022em; margin-bottom: 10px; }
.step p { margin: 0; color: var(--ink-2); font-size: 1rem; text-wrap: pretty; }
.step .snum { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 500; color: var(--rule); line-height: 1; margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq details:first-of-type { border-top: 1px solid var(--rule); }
.faq summary { list-style: none; cursor: pointer; padding: 26px 0; display: flex; align-items: center; gap: 20px;
  font-size: clamp(1.08rem, 2vw, 1.32rem); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-ic { margin-left: auto; flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .25s ease; }
.faq summary .q-ic::before, .faq summary .q-ic::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq summary .q-ic::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq summary .q-ic::after { left: 12px; top: 4px; bottom: 4px; width: 2px; transition: transform .25s ease; }
.faq details[open] summary .q-ic::after { transform: scaleY(0); }
.faq details p { margin: 0 0 26px; color: var(--ink-2); font-size: 1.06rem; line-height: 1.6; max-width: 64ch; text-wrap: pretty; }
@media (prefers-reduced-motion: reduce) { .faq summary .q-ic, .faq summary .q-ic::after { transition: none; } }

/* ---------- Final CTA ---------- */
.cta { background: var(--bg-dark); color: #fff; border-radius: clamp(20px, 3vw, 32px); padding: clamp(44px, 7vw, 92px) clamp(28px,5vw,80px); text-align: center; position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(70% 120% at 50% -10%, rgba(143,180,224,.20), transparent 60%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; margin-bottom: 22px; }
.cta p { color: #c1d1e3; font-size: clamp(1.05rem,1.8vw,1.3rem); max-width: 52ch; margin: 0 auto 36px; text-wrap: pretty; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-meta { margin-top: 38px; display: flex; gap: clamp(18px,4vw,48px); justify-content: center; flex-wrap: wrap; }
.cta-meta .cm { text-align: left; }
.cta-meta .cm .k { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-2); margin-bottom: 6px; }
.cta-meta .cm .v { font-weight: 600; font-size: 1.02rem; }

/* ---------- Footer ---------- */
.footer { padding-block: clamp(48px, 6vw, 72px) 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--rule); }
.footer .brand { font-size: 1.1rem; }
.footer .ftag { color: var(--ink-2); font-size: 1rem; margin-top: 14px; max-width: 36ch; }
.footer-cols { display: flex; gap: clamp(36px, 6vw, 84px); flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-weight: 500; margin: 0 0 16px; }
.footer-col a, .footer-col span { display: block; color: var(--ink-2); font-size: .98rem; margin-bottom: 11px; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 28px; font-family: var(--font-mono); font-size: .78rem; color: var(--ink-soft); letter-spacing: .02em; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .phone-stage { order: -1; margin-bottom: 12px; }
  .hero .lede, .hero h1 { max-width: 100%; }
  .stat-hero { grid-template-columns: 1fr; }
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0; background: var(--bg);
    border-bottom: 1px solid var(--rule); padding: 14px var(--gut) 22px;
  }
  .nav.open .nav-links a { padding: 10px 0; width: 100%; font-size: 1.05rem; }
  .cards-3 { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  .nav-cta .btn-text-full { display: none; }
}
@media (max-width: 480px) {
  .fgrid { grid-template-columns: 1fr; }
  .mini-tiles { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}
