/* ── AidaQR landing — token-driven, zero-framework ─────────────────────────────
   Palette mirrors the console (22a swap rule applies here too): teal hero,
   cyan spark, teal-tinted neutrals. Flat doctrine: hairlines + tone, shadows
   only where something floats (nav island, mega menu, floating chips). */
:root {
  --ink:        #12242A;
  --dim:        #5F757B;
  --teal:       #025A67;
  --teal-deep:  #01444E;
  --cyan:       #1DCBD4;
  --cyan-pale:  #E0F7F9;
  --panel:      #E8F5F7;   /* soft tint for framed sections (console tabs); one edit point */
  --paper:      #F3F8F9;
  --card:       #FCFEFE;
  --line:       #DCE8EA;
  --green:      #16a34a;
  --green-pale: #e9f7ef;
  --red:        #dc2626;
  --amber:      #d97706;
  --on-teal:    #ffffff;

  --wash-a: rgba(29,203,212,0.13);
  --wash-b: rgba(2,90,103,0.07);

  --sans:    'DM Sans', system-ui, sans-serif;
  --display: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  --mono:    'DM Mono', monospace;

  --r-lg: 18px; --r-md: 12px; --r-sm: 8px;
  --shadow-float: 0 10px 40px rgba(4,42,48,0.12), 0 2px 8px rgba(4,42,48,0.06);
  --maxw: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); color: var(--ink);
  background:
    radial-gradient(60rem 40rem at 85% -10%, var(--wash-a), transparent 60%),
    radial-gradient(50rem 36rem at -10% 30%, var(--wash-b), transparent 58%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: inline-block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Shared bits ── */
.eyebrow {
  display: inline-block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal);
  background: var(--cyan-pale); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: var(--r-sm); margin-bottom: 18px;
}
.section-head { max-width: 640px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); line-height: 1.15; }
.section-head p { margin-top: 12px; color: var(--dim); font-size: 16px; line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; padding: 13px 26px;
  border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  transition: filter 0.16s, background 0.16s, border-color 0.16s, color 0.16s;
}
.btn--primary { background: var(--teal); color: var(--on-teal); }
.btn--primary:hover { filter: brightness(1.12); }
.btn--ghost { background: var(--card); color: var(--teal); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); }
.btn--light { background: var(--on-teal); color: var(--teal); font-family: var(--mono); }
.btn--light:hover { filter: brightness(0.96); }
.btn--sm { padding: 9px 18px; font-size: 13px; }

/* Scroll reveals — motion is opt-out via prefers-reduced-motion. */
/* --d = per-element stagger delay, set inline (style="--d:.06s"). Delay applies
   only on the way IN: on reset it would linger visibly. */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.7, 0.3, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Floating pill navbar ── */
.nav-wrap { position: fixed; top: 14px; left: 0; right: 0; z-index: 100; padding: 0 16px; }
.nav {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center; gap: 22px;
  background: rgba(252,254,254,0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.4); backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 10px 18px;
  box-shadow: var(--shadow-float);
}
.nav__logo { display: flex; flex-shrink: 0; }
.nav__links { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav__links > a, .nav__mega-btn {
  font-size: 14px; font-weight: 500; color: var(--ink);
  padding: 8px 13px; border-radius: 9px; border: none; background: none;
  cursor: pointer; font-family: var(--sans);
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav__links > a:hover, .nav__mega-btn:hover { background: var(--cyan-pale); color: var(--teal); }
.nav__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__signin { font-size: 14px; font-weight: 600; color: var(--dim); }
.nav__signin:hover { color: var(--teal); }

/* Mega menu (Flourish) — hover-intent on desktop, click on touch, focus-safe. */
.nav__mega-host { position: relative; }
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  display: flex; gap: 22px;
  width: min(620px, calc(100vw - 40px));
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.22, 0.7, 0.3, 1);
}
.nav__mega-host.open .mega { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; flex: 1; }
.mega__card {
  display: flex; flex-direction: column; gap: 6px;
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 12px;
  transition: border-color 0.15s, background 0.15s;
}
.mega__card:hover { border-color: var(--teal); background: var(--cyan-pale); }
.mega__card b { font-size: 13.5px; }
.mega__card small { font-size: 11.5px; color: var(--dim); line-height: 1.5; }
.mega__mini {
  height: 74px; border-radius: var(--r-sm); background: var(--paper);
  border: 1px solid var(--line); position: relative; overflow: hidden; margin-bottom: 4px;
}
.mega__mini--id .mm-photo { position: absolute; left: 10px; top: 12px; width: 34px; height: 46px; border-radius: 5px; background: var(--line); }
.mega__mini--id .mm-lines { position: absolute; left: 54px; top: 18px; right: 12px; display: flex; flex-direction: column; gap: 7px; }
.mega__mini--id .mm-lines i { height: 6px; border-radius: 3px; background: var(--line); }
.mega__mini--id .mm-lines i:last-child { width: 60%; }
.mega__mini--id .mm-badge {
  position: absolute; right: 10px; bottom: 8px; font-size: 10px; font-weight: 700;
  background: var(--green-pale); color: var(--green); border-radius: 5px; padding: 2px 7px;
}
.mega__mini--qr img { position: absolute; inset: 0; margin: auto; height: 62px; width: 62px; }

/* Wide variant: 4 use-case cards + the links column. */
.mega--wide { width: min(880px, calc(100vw - 40px)); }
.mega__cards--4 { grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mega__cards--4 .mega__card { padding: 10px; }
.mega__cards--4 .mega__mini { height: 62px; }
.mega__cards--4 .mega__card b { font-size: 12.5px; }
.mega__cards--4 .mega__card small { font-size: 11px; }

/* Console thumbnail: a sidebar rail + rows, two of them status-coloured. */
.mega__mini--console .mc-side { position: absolute; left: 0; top: 0; bottom: 0; width: 22px; background: var(--cyan-pale); border-right: 1px solid var(--line); }
.mega__mini--console .mc-row { position: absolute; left: 32px; right: 12px; height: 7px; border-radius: 3px; background: var(--line); }
.mega__mini--console .mc-row:nth-of-type(2) { top: 14px; }
.mega__mini--console .mc-row--ok { top: 31px; background: var(--green); opacity: 0.55; }
.mega__mini--console .mc-row--bad { top: 48px; background: var(--red); opacity: 0.45; width: 55%; right: auto; }

/* Verify-page thumbnail: photo + name line + the green status banner. */
.mega__mini--verify .mv-photo { position: absolute; left: 50%; transform: translateX(-50%); top: 8px; width: 22px; height: 28px; border-radius: 4px; background: var(--line); }
.mega__mini--verify .mv-name { position: absolute; left: 50%; transform: translateX(-50%); top: 40px; width: 46px; height: 5px; border-radius: 3px; background: var(--line); }
.mega__mini--verify .mv-banner {
  position: absolute; left: 8px; right: 8px; bottom: 7px; text-align: center;
  font-family: var(--mono); font-size: 7.5px; font-style: normal; letter-spacing: 0.06em;
  background: var(--green-pale); color: var(--green); border-radius: 4px; padding: 3px 0;
}

/* Certificate thumbnail: a seal + ruled lines. */
.mega__mini--cert .cert-seal {
  position: absolute; right: 9px; bottom: 8px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--cyan-pale); color: var(--teal); border: 1px solid var(--cyan);
  font-style: normal; font-size: 9px; display: grid; place-items: center;
}
.mega__mini--cert .cert-line { position: absolute; left: 10px; right: 32px; height: 6px; border-radius: 3px; background: var(--line); top: 16px; }
.mega__mini--cert .cert-line.short { top: 30px; right: 50%; }

/* Statement thumbnail: ruled lines + a stamped tick. */
.mega__mini--doc .doc-line { position: absolute; left: 10px; right: 12px; height: 6px; border-radius: 3px; background: var(--line); }
.mega__mini--doc .doc-line:nth-of-type(1) { top: 12px; }
.mega__mini--doc .doc-line:nth-of-type(2) { top: 25px; }
.mega__mini--doc .doc-line.short { top: 38px; right: 45%; }
.mega__mini--doc .doc-stamp {
  position: absolute; right: 10px; bottom: 7px; font-style: normal; font-size: 8px; font-weight: 700;
  color: var(--teal); background: var(--cyan-pale); border: 1px dashed var(--cyan);
  border-radius: 4px; padding: 1px 5px;
}

/* Code thumbnail: the one dark surface in the menu, mirroring the dev section. */
.mega__mini--code {
  background: var(--teal-deep); border-color: var(--teal-deep);
  display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0 12px;
}
.mega__mini--code code { font-family: var(--mono); font-size: 9.5px; color: var(--cyan); white-space: nowrap; }
.mega__mini--code code.dim { color: #7fa7ad; }

.mega__col { display: flex; flex-direction: column; gap: 2px; min-width: 150px; padding-top: 4px; }
.mega__muted { font-size: 12px; color: var(--dim); padding: 7px 10px; font-family: var(--mono); }
.mega__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 8px; }
.mega__col a { font-size: 13.5px; padding: 7px 10px; border-radius: 7px; color: var(--ink); }
.mega__col a:hover { background: var(--cyan-pale); color: var(--teal); }

/* Mobile nav */
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav__sheet {
  max-width: 980px; margin: 8px auto 0;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-float); padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
/* `display: flex` above would silently defeat the hidden attribute (author CSS
   beats the UA's [hidden]{display:none}) — restate it, and never show the
   mobile sheet on desktop regardless of state. */
.nav__sheet[hidden] { display: none; }
@media (min-width: 961px) { .nav__sheet { display: none; } }
.nav__sheet a { padding: 11px 14px; border-radius: 9px; font-weight: 500; }
.nav__sheet a:hover { background: var(--cyan-pale); }

/* ── Hero ── */
.hero { position: relative; padding: 168px 0 80px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero__copy h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.06; }
.hero__copy h1 em { font-style: normal; color: var(--teal); position: relative; }
.hero__copy h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px;
  background: var(--cyan); opacity: 0.28; border-radius: 3px; z-index: -1;
}
.hero__sub { margin-top: 20px; font-size: 16.5px; line-height: 1.75; color: var(--dim); max-width: 520px; }
.hero__sub b { color: var(--ink); }
.hero__ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero__trust { margin-top: 22px; font-size: 12.5px; color: var(--dim); font-family: var(--mono); }

/* QR-scatter texture — faded corner-finder glyphs (SkyQR motif). */
.qr-scatter { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.qr-scatter::before, .qr-scatter::after {
  content: ''; position: absolute; width: 90px; height: 90px; opacity: 0.07;
  border: 12px solid var(--teal); border-radius: 22px;
}
.qr-scatter::before { top: 100px; left: -24px; transform: rotate(-12deg); }
.qr-scatter::after { bottom: 40px; right: -20px; transform: rotate(14deg); border-color: var(--cyan); }

/* Single hero object — the scannable QR card, centered with room to breathe. */
.hero__demo { position: relative; display: flex; justify-content: center; align-items: center; will-change: transform; }

/* .verify-mock / .vm__* / .float-chip are no longer used by the hero (kept for
   reuse; the hero was simplified to a single object 2026-07). */
.verify-mock { width: 232px; flex-shrink: 0; margin-top: 26px; }
.vm__brand { text-align: center; margin-bottom: 8px; opacity: 0.85; }
.vm__card {
  background: #fff; border-radius: 16px; border: 1px solid var(--line);
  box-shadow: var(--shadow-float); overflow: hidden;
}
.vm__head { display: flex; gap: 8px; align-items: center; padding: 10px 12px; border-bottom: 1px solid #efefef; }
.vm__logo { width: 26px; height: 26px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.vm__head b { font-size: 11.5px; display: block; color: #1c1c1c; }
.vm__head small { font-size: 9px; color: #888; }
.vm__photo { width: 58px; height: 76px; border-radius: 8px; background: #eef2f3; color: #9aa; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 14px auto 0; font-size: 18px; }
.vm__name { text-align: center; margin-top: 8px; font-weight: 700; font-size: 13px; color: #1c1c1c; }
.vm__name small { display: block; font-weight: 400; font-size: 9.5px; color: #888; margin-top: 1px; }
.vm__banner {
  margin: 10px 12px; padding: 9px; border-radius: 9px; text-align: center;
  background: var(--green-pale); color: #0d6b32; font-size: 11px; font-weight: 700; letter-spacing: 0.03em;
}
.vm__rows { padding: 0 12px 12px; }
.vm__rows span { display: flex; justify-content: space-between; font-size: 10px; padding: 5px 0; border-bottom: 1px solid #f0f3f3; }
.vm__rows span:last-child { border-bottom: 0; }
.vm__rows i { font-style: normal; color: #888; }
.vm__rows b { color: #1c1c1c; font-weight: 600; }

.qr-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-float); padding: 18px; text-align: center; width: 264px;
}
.qr-card__frame { position: relative; display: inline-block; background: #fff; border-radius: var(--r-md); padding: 8px; border: 1px solid var(--line); }
.qr-card__qr { display: block; }
.qr-card__logo {
  position: absolute; inset: 0; margin: auto; width: 58px; height: 30px;
  background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px #fff;
}
.qr-card__hint { margin-top: 12px; font-size: 12.5px; color: var(--dim); line-height: 1.55; }
.qr-card__hint b { color: var(--ink); }
.qr-card__link { display: inline-block; margin-top: 8px; font-size: 12px; color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

.float-chip {
  position: absolute; font-size: 11.5px; font-weight: 600;
  background: var(--card); border: 1px solid var(--line); border-radius: 9px;
  padding: 7px 12px; box-shadow: var(--shadow-float); color: var(--teal);
  animation: bob 5s ease-in-out infinite;
}
.float-chip--a { top: -6px; right: 6px; }
.float-chip--b { bottom: -10px; left: 4px; animation-delay: 2.5s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Scroll cue — invites the eye down. Bobs via CSS; Motion fades it on scroll
   (progressive: no JS = it just bobs). It's a real anchor, so it always works. */
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: max-content; margin: 46px auto 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim);
  transition: color 0.18s;
}
.scroll-cue svg { animation: bob 2.4s ease-in-out infinite; color: var(--teal); }
.scroll-cue:hover { color: var(--teal); }

/* ── Stats strip ── */
/* ── Trusted-by strip ──
   Restrained by default (greyed, dimmed), full colour when the row is hovered —
   the SkyQR container-on-hover idea. Colour returns on focus-within too, so the
   effect is never hover-only. */
.logos { padding: 34px 0 6px; }
.logos__row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.logos__label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim);
}
.logos__item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 14px; border-radius: var(--r-md); border: 1px solid transparent;
  transition: border-color 0.18s, background 0.18s;
}
.logos__item img {
  height: 40px; width: auto;
  filter: grayscale(1); opacity: 0.62;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.logos__item span { font-size: 13px; color: var(--dim); font-weight: 500; }
.logos__row:hover .logos__item img,
.logos__row:focus-within .logos__item img { filter: none; opacity: 1; }
.logos__item:hover { border-color: var(--line); background: var(--card); }
.logos__item:hover span { color: var(--ink); }
.logos__next { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--teal); }
.logos__next:hover { text-decoration: underline; }

.stats { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stats__row div { display: flex; align-items: baseline; gap: 10px; }
.stats__row b { font-family: var(--display); font-size: 26px; color: var(--teal); }
.stats__row span { font-size: 12.5px; color: var(--dim); line-height: 1.4; }

/* ── How it works ── */
.how { padding: 90px 0; }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; list-style: none; counter-reset: step; }
.how__steps li { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; position: relative; }
.how__n {
  display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--teal); color: var(--on-teal);
  font-family: var(--mono); font-weight: 700; margin-bottom: 14px;
}
.how__steps h3 { font-size: 18px; margin-bottom: 8px; }
.how__steps p { font-size: 14px; color: var(--dim); line-height: 1.7; }

/* ── Console tabs (Copilot clickable multi-section) ── */
.console { padding: 40px 0 90px; }

/* One soft-tinted panel frames the whole tabbed demo so it reads as a single
   unit instead of loose rows floating on the page. Token-driven (--panel) so it
   tracks the palette and any future theme. */
.console__panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px clamp(20px, 4vw, 56px) clamp(34px, 4vw, 52px);
}
/* Centered header + tab-rail at the top of the panel; scoped to .console so the
   page's other left-aligned section heads are untouched. */
.console .section-head { max-width: 600px; margin: 0 auto 28px; text-align: center; }

.tabs {
  display: flex; width: fit-content; max-width: 100%; margin: 0 auto 34px;
  gap: 4px; padding: 5px; overflow-x: auto;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
}
.tab {
  border: none; background: none; font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  color: var(--dim); padding: 9px 18px; border-radius: 8px; cursor: pointer; white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.tab:hover { color: var(--teal); }
.tab.is-on { background: var(--teal); color: var(--on-teal); }
.console__stage { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 40px; align-items: center; }
.console__blurb h3 { font-size: 22px; margin-bottom: 10px; }
.console__blurb p { color: var(--dim); line-height: 1.75; font-size: 15px; }

/* Illustrative browser frame (abstract, not a screenshot) */
.browser-mock { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-float); }
.bm__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.bm__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.bm__bar span { margin-left: 10px; font-family: var(--mono); font-size: 10.5px; color: var(--dim); background: var(--paper); border-radius: 6px; padding: 3px 10px; }
.bm__body { display: flex; min-height: 250px; }
.bm__side { width: 56px; border-right: 1px solid var(--line); padding: 14px 12px; display: flex; flex-direction: column; gap: 12px; background: var(--paper); }
.bm__pill { width: 26px; height: 26px; border-radius: 8px; background: var(--teal); }
.bm__side i { width: 26px; height: 8px; border-radius: 4px; background: var(--line); }
.bm__side i.on { background: var(--cyan); }
.bm__main { flex: 1; padding: 18px; }
.bm__row { height: 34px; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 8px; display: flex; align-items: center; justify-content: flex-end; padding: 0 12px; background: #fff; }
.bm__row--head { background: var(--paper); border-style: dashed; }
.bm__row u { text-decoration: none; font-family: var(--mono); font-size: 10px; padding: 2px 8px; border-radius: 5px; }
.bm__row u.ok   { background: var(--green-pale); color: var(--green); }
.bm__row u.bad  { background: #fdecec; color: var(--red); }
.bm__row u.warn { background: #fdf3e0; color: var(--amber); }
.bm__chart { display: flex; align-items: flex-end; gap: 8px; height: 130px; margin-bottom: 14px; }
.bm__chart i { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--cyan), var(--teal)); border-radius: 6px 6px 0 0; opacity: 0.85; }
.bm__kpis { display: flex; gap: 10px; }
.bm__kpis span { flex: 1; height: 42px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }

/* ── Bento ── */
.bento-sec { padding: 40px 0 90px; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cell {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; transition: border-color 0.2s, background 0.2s;
}
.cell:hover { border-color: var(--teal); background: var(--cyan-pale); }
.cell--wide { grid-column: span 2; }
.cell h3 { font-size: 16.5px; margin-bottom: 8px; }
.cell p { font-size: 13.5px; color: var(--dim); line-height: 1.7; }

/* ── Personas ── */
.personas { padding: 20px 0 90px; }
.personas__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.persona { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.persona__ico { font-size: 26px; display: block; margin-bottom: 12px; }
.persona h3 { font-size: 15.5px; margin-bottom: 6px; }
.persona p { font-size: 13px; color: var(--dim); line-height: 1.65; }
.soon {
  display: inline-block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); background: var(--cyan-pale);
  border-radius: 5px; padding: 2px 7px; margin-left: 4px;
}

/* ── Pricing ── */
.pricing { padding: 40px 0 90px; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.tier { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; position: relative; }
.tier--hot { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.tier__tag {
  position: absolute; top: -11px; left: 24px;
  background: var(--teal); color: var(--on-teal); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 6px; padding: 3px 10px;
}
.tier h3 { font-size: 17px; }
.tier__price { font-family: var(--display); font-size: 36px; font-weight: 700; color: var(--teal); margin-top: 10px; }
.tier__price span { font-size: 14px; color: var(--dim); font-weight: 500; }
.tier__cap { font-family: var(--mono); font-size: 11.5px; color: var(--dim); margin: 4px 0 18px; }
.tier ul { list-style: none; }
.tier li { font-size: 13.5px; padding: 7px 0 7px 24px; position: relative; color: var(--ink); border-top: 1px solid var(--paper); }
.tier li::before { content: '✓'; position: absolute; left: 2px; color: var(--green); font-weight: 700; }
.pricing__notes { margin-top: 22px; font-size: 13px; color: var(--dim); line-height: 1.7; }
.pricing__notes a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* ── Developers ── */
.dev { padding: 20px 0 90px; }
.dev__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.dev h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.dev p { color: var(--dim); line-height: 1.75; margin-bottom: 22px; }
.code {
  background: #0d1b1f; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow-float);
}
.code__bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.code__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.code__bar span { margin-left: 10px; font-family: var(--mono); font-size: 11px; color: #7fa7ad; }
.code pre { padding: 20px 22px; font-family: var(--mono); font-size: 13px; line-height: 1.8; color: #c8dde0; overflow-x: auto; }
.code pre b { color: var(--cyan); font-weight: 500; }

/* ── CTA band ── */
.cta-band { background: var(--teal); color: var(--on-teal); padding: 72px 0; text-align: center; }
.cta-band h2 { font-size: clamp(24px, 3.6vw, 36px); }
.cta-band p { margin: 14px auto 26px; max-width: 480px; opacity: 0.85; line-height: 1.7; }

/* ── Footer ── */
.footer { position: relative; padding: 70px 0 30px; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; position: relative; z-index: 1; }
.footer__grid p { margin-top: 10px; font-size: 13px; color: var(--dim); }
.footer__grid nav { display: flex; flex-direction: column; gap: 8px; }
.footer__grid nav span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
.footer__grid nav a { font-size: 13.5px; }
.footer__grid nav a:hover { color: var(--teal); }
.footer__mark {
  font-family: var(--display); font-weight: 700; text-align: center;
  font-size: clamp(90px, 19vw, 230px); line-height: 0.9; letter-spacing: -0.04em;
  color: var(--teal); opacity: 0.07; filter: blur(2px);
  user-select: none; margin-top: 30px;
}
.footer__legal { text-align: center; font-size: 12px; color: var(--dim); font-family: var(--mono); margin-top: -14px; position: relative; z-index: 1; }

/* ── Subpages (contact / faq / privacy) ───────────────────────────────────────
   Shared shell: the nav is fixed, so these clear it with top padding rather
   than the hero's full bleed. */
.page { padding: 132px 0 40px; }
.page__head { max-width: 680px; }
.page__head h1 { font-size: clamp(30px, 4.6vw, 46px); line-height: 1.1; }
.page__head p { margin-top: 14px; color: var(--dim); font-size: 16px; line-height: 1.7; }
.page__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; padding-bottom: 90px; }

/* ── Form ── */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.field > span i { font-style: normal; color: var(--dim); font-weight: 400; }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 14.5px; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 12px 14px; width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 104px; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--cyan-pale);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--red); }
/* Honeypot: off-screen rather than display:none (some bots skip hidden inputs),
   and pulled out of the tab order + a11y tree so no human ever reaches it. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form__note { font-size: 12px; color: var(--dim); line-height: 1.6; }
.form__msg { font-size: 13.5px; border-radius: var(--r-md); padding: 12px 14px; line-height: 1.6; }
.form__msg[hidden] { display: none; }
.form__msg--err { background: #fdeaea; color: var(--red); border: 1px solid #f5c2c2; }
.btn[aria-busy="true"] { opacity: 0.6; pointer-events: none; }

/* Success panel replaces the form outright — the request is done, don't invite
   a second one. */
.sent { text-align: center; padding: 40px 28px; }
.sent__tick {
  width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: grid; place-items: center; font-size: 26px;
}
.sent h2 { font-size: 22px; margin-bottom: 10px; }
.sent p { color: var(--dim); font-size: 14.5px; line-height: 1.7; max-width: 380px; margin: 0 auto; }

/* Aside panel next to the form */
.aside-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.aside-card + .aside-card { margin-top: 16px; }
.aside-card h3 { font-size: 15.5px; margin-bottom: 12px; }
.aside-list { display: flex; flex-direction: column; gap: 11px; }
.aside-list li { display: flex; gap: 10px; font-size: 13.5px; color: var(--dim); line-height: 1.6; list-style: none; }
.aside-list li b { color: var(--ink); font-weight: 600; }
.aside-list .tick { color: var(--green); flex-shrink: 0; font-weight: 700; }

/* ── Prose (privacy) + FAQ accordion ── */
.prose { max-width: 720px; padding-bottom: 90px; }
.prose h2 { font-size: 20px; margin: 38px 0 12px; }
.prose h3 { font-size: 15.5px; margin: 24px 0 8px; }
.prose p, .prose li { font-size: 14.5px; line-height: 1.8; color: var(--dim); }
.prose p { margin-bottom: 12px; }
.prose ul { margin: 0 0 12px 20px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--teal); text-decoration: underline; }
.prose strong { color: var(--ink); }
.prose__updated { font-family: var(--mono); font-size: 11.5px; color: var(--dim); }

.faq { max-width: 760px; padding-bottom: 90px; display: grid; gap: 10px; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 4px 18px; transition: border-color 0.15s;
}
.faq details[open] { border-color: var(--cyan); }
.faq summary {
  cursor: pointer; list-style: none; padding: 15px 0; font-weight: 600; font-size: 14.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-family: var(--mono); font-size: 18px; color: var(--teal);
  flex-shrink: 0; transition: transform 0.2s;
}
.faq details[open] summary::after { content: '−'; }
.faq summary:hover { color: var(--teal); }
.faq__body { padding: 0 0 16px; font-size: 14px; line-height: 1.75; color: var(--dim); }
.faq__body a { color: var(--teal); text-decoration: underline; }
.faq__body code { font-family: var(--mono); font-size: 12.5px; background: var(--cyan-pale); padding: 1px 5px; border-radius: 4px; color: var(--teal); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .page__grid { grid-template-columns: 1fr; gap: 32px; }
  .logos__row { gap: 16px; }
  .logos__next { margin-left: 0; flex-basis: 100%; }
  .hero__grid, .console__stage, .dev__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero__demo { margin-top: 10px; flex-wrap: wrap; }
  .stats__row, .bento, .personas__grid, .tiers { grid-template-columns: 1fr 1fr; }
  .cell--wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__signin { display: none; }
  .nav__burger { display: block; margin-left: auto; }
  .nav .btn--sm { display: none; }
}
@media (max-width: 560px) {
  .stats__row, .bento, .personas__grid, .tiers { grid-template-columns: 1fr; }
  .cell--wide { grid-column: span 1; }
  .verify-mock { display: none; }   /* the QR card IS the demo on small screens */
  .float-chip--b { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .page { padding-top: 112px; }
  .console__panel { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
  .scroll-cue svg { animation: none; }
  .mega { transition: none; }
}
