/* RLOCK / AEGIS — public marketing site.
   Identity v3 "Signal": Sora (geometric display) + Hanken Grotesk (body),
   electric-blue accent on a cool near-black / near-white base. Self-hosted
   fonts — nothing leaves the visitor's browser, matching the privacy promise. */

/* ── self-hosted type (latin subset) ─────────────────────────────────── */
@font-face { font-family: "Sora"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/sora-600.woff2") format("woff2"); }
@font-face { font-family: "Sora"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/sora-700.woff2") format("woff2"); }
@font-face { font-family: "Sora"; font-style: normal; font-weight: 800; font-display: swap; src: url("fonts/sora-800.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/hankengrotesk-400.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/hankengrotesk-500.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/hankengrotesk-600.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/hankengrotesk-700.woff2") format("woff2"); }

:root {
  --ground: #F7F9FC; --surface: #FFFFFF; --surface-2: #EEF2F8;
  --ink: #0E1116; --ink-soft: #363E48; --muted: #626C78;
  --hairline: #E5E9F0; --hairline-2: #D3DAE4;
  --accent: #0A5CFF; --accent-ink: #0B50D8; --accent-soft: #E7EEFF; --accent-glow: rgba(10,92,255,.14);
  --good: #1F8A54; --good-soft: #E4F3EA;
  /* committed dark surface (hero scene + CTA band) — neutral near-black */
  --dark: #0A0D14; --dark-2: #121826; --dark-ink: #F3F5F9; --dark-muted: #9AA3AF; --dark-line: #232B39; --dark-accent: #5B9BFF;
  --shadow-sm: 0 1px 2px rgba(14,17,22,.05), 0 4px 12px rgba(14,17,22,.05);
  --shadow: 0 1px 2px rgba(14,17,22,.04), 0 10px 30px rgba(14,17,22,.07);
  --shadow-lg: 0 2px 4px rgba(14,17,22,.05), 0 24px 60px rgba(14,20,40,.14);
  --display: "Sora", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 68rem;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #0A0D13; --surface: #11161F; --surface-2: #0D121A;
    --ink: #EAEEF4; --ink-soft: #C2CAD4; --muted: #8B95A1;
    --hairline: #1D242E; --hairline-2: #2A313B;
    --accent: #4C8DFF; --accent-ink: #7EAcFF; --accent-soft: #14203A; --accent-glow: rgba(76,141,255,.17);
    --good: #55B584; --good-soft: #14241B;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 4px 12px rgba(0,0,0,.3);
    --shadow: 0 1px 2px rgba(0,0,0,.35), 0 12px 34px rgba(0,0,0,.42);
    --shadow-lg: 0 2px 6px rgba(0,0,0,.4), 0 28px 70px rgba(0,0,0,.55);
  }
}
:root[data-theme="light"] { --ground:#F7F9FC; --surface:#FFFFFF; --surface-2:#EEF2F8; --ink:#0E1116; --ink-soft:#363E48; --muted:#626C78; --hairline:#E5E9F0; --hairline-2:#D3DAE4; --accent:#0A5CFF; --accent-ink:#0B50D8; --accent-soft:#E7EEFF; --accent-glow:rgba(10,92,255,.14); --good:#1F8A54; --good-soft:#E4F3EA; --shadow-sm:0 1px 2px rgba(14,17,22,.05),0 4px 12px rgba(14,17,22,.05); --shadow:0 1px 2px rgba(14,17,22,.04),0 10px 30px rgba(14,17,22,.07); --shadow-lg:0 2px 4px rgba(14,17,22,.05),0 24px 60px rgba(14,20,40,.14); }
:root[data-theme="dark"]  { --ground:#0A0D13; --surface:#11161F; --surface-2:#0D121A; --ink:#EAEEF4; --ink-soft:#C2CAD4; --muted:#8B95A1; --hairline:#1D242E; --hairline-2:#2A313B; --accent:#4C8DFF; --accent-ink:#7EACFF; --accent-soft:#14203A; --accent-glow:rgba(76,141,255,.17); --good:#55B584; --good-soft:#14241B; --shadow-sm:0 1px 2px rgba(0,0,0,.3),0 4px 12px rgba(0,0,0,.3); --shadow:0 1px 2px rgba(0,0,0,.35),0 12px 34px rgba(0,0,0,.42); --shadow-lg:0 2px 6px rgba(0,0,0,.4),0 28px 70px rgba(0,0,0,.55); }

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.num { font-variant-numeric: tabular-nums; }
h1, h2, h3, .serif { font-family: var(--display); text-wrap: balance; letter-spacing: -.02em; }
h1 em, h2 em, h3 em, .serif em { font-style: normal; color: var(--accent); }
a { color: var(--accent-ink); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.eyebrow { font-family: var(--body); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--accent-ink); }

/* ── reveal motion (progressive) ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ── buttons ─────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--body); font-weight: 600; font-size: .95rem;
  padding: .72rem 1.35rem; border-radius: 9px; border: 1px solid transparent; cursor: pointer; text-decoration: none;
  background: var(--accent); color: #fff; transition: transform .15s, filter .15s, box-shadow .2s; box-shadow: 0 1px 2px rgba(10,92,255,.25), 0 8px 20px var(--accent-glow); }
.btn:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 2px 4px rgba(10,92,255,.28), 0 12px 26px var(--accent-glow); }
.btn:active { transform: translateY(0); }
.btn.ghost { background: transparent; border-color: var(--hairline-2); color: var(--ink); box-shadow: none; }
.btn.ghost:hover { background: var(--surface-2); filter: none; box-shadow: none; }
.btn.on-dark.ghost { color: var(--dark-ink); border-color: rgba(255,255,255,.24); background: transparent; }
.btn.on-dark.ghost:hover { background: rgba(255,255,255,.09); }
a:focus-visible, .btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ── nav ─────────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--ground) 78%, transparent);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid var(--hairline); }
.nav .row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 64px; }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--ink); }
.brand svg { width: 23px; height: 28px; color: var(--accent); }
.brand b { font-family: var(--display); font-weight: 800; letter-spacing: .16em; font-size: .84rem; text-transform: uppercase; }
.brand b span { color: var(--muted); font-weight: 600; }
.nav .links { display: flex; align-items: center; gap: .15rem; }
.nav .links a { color: var(--ink-soft); text-decoration: none; font-size: .9rem; font-weight: 500; padding: .45rem .75rem; border-radius: 7px; transition: color .15s, background .15s; }
.nav .links a:hover { color: var(--ink); background: var(--surface-2); }
.nav .links a.active { color: var(--accent-ink); }
.nav .links .btn { margin-left: .6rem; padding: .52rem 1.05rem; }

/* ── hero ────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--ground); border-bottom: 1px solid var(--hairline); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--hairline) 1px, transparent 1px), linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(120% 90% at 78% 0%, #000 12%, transparent 62%);
  -webkit-mask-image: radial-gradient(120% 90% at 78% 0%, #000 12%, transparent 62%); }
.hero::after { content: ""; position: absolute; width: 620px; height: 620px; right: -6%; top: -220px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 66%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding: clamp(3.2rem, 8vw, 5.6rem) 0 clamp(3.4rem, 8vw, 5.4rem); position: relative; z-index: 1; }
.hero h1 { font-weight: 800; font-size: clamp(2.5rem, 6vw, 4.3rem); line-height: 1.02; margin: 1.1rem 0 0; max-width: 16ch; letter-spacing: -.035em; color: var(--ink); }
.hero .lede { margin: 1.4rem 0 0; max-width: 46ch; font-size: clamp(1.05rem, 2.4vw, 1.2rem); color: var(--muted); }
.hero .lede strong { color: var(--ink); font-weight: 600; }
.hero .cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero .trust { margin-top: 2rem; font-size: .84rem; color: var(--muted); display: flex; gap: 1.4rem; flex-wrap: wrap; }
.hero .trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero .trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero .trust b { color: var(--ink); font-weight: 700; }

/* hero product mockup — a live plate-read, the thing AEGIS actually does */
.scene { position: relative; }
.scene-cam { background: linear-gradient(180deg, #0d1420, var(--dark)); border: 1px solid var(--dark-line); border-radius: 16px 16px 0 0;
  box-shadow: var(--shadow-lg); overflow: hidden; }
.cam-top { display: flex; align-items: center; justify-content: space-between; padding: .7rem .95rem; border-bottom: 1px solid var(--dark-line);
  font-size: .72rem; letter-spacing: .04em; color: var(--dark-muted); font-variant-numeric: tabular-nums; }
.cam-top .live { display: inline-flex; align-items: center; gap: .4rem; color: #ff5b6b; font-weight: 700; }
.cam-top .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #ff5b6b; box-shadow: 0 0 0 0 rgba(255,91,107,.6); animation: pulse 2s infinite; }
.cam-view { position: relative; aspect-ratio: 16 / 10; background:
  radial-gradient(120% 80% at 50% 120%, #1a2740, transparent 60%),
  linear-gradient(180deg, #0b111c 0%, #0e1626 55%, #0a1020 100%); overflow: hidden; }
.cam-view .road { position: absolute; left: 0; right: 0; bottom: 0; height: 46%;
  background: linear-gradient(180deg, transparent, rgba(76,141,255,.06)); border-top: 1px solid rgba(120,160,220,.14); }
.cam-view .car { position: absolute; left: 50%; bottom: 16%; width: 46%; transform: translateX(-50%); color: #24344f; }
.cam-view .reticle { position: absolute; left: 50%; bottom: 30%; transform: translate(-50%, 0); width: 40%; aspect-ratio: 3.2/1;
  border: 1.5px solid var(--dark-accent); border-radius: 4px; box-shadow: 0 0 0 4px rgba(76,141,255,.12); }
.cam-view .reticle::before, .cam-view .reticle::after { content: ""; position: absolute; width: 9px; height: 9px; border: 2px solid var(--dark-accent); }
.cam-view .reticle::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.cam-view .reticle::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.cam-view .scan { position: absolute; left: 0; right: 0; height: 2px; top: 0;
  background: linear-gradient(90deg, transparent, var(--dark-accent), transparent); opacity: .8; animation: scan 3.4s ease-in-out infinite; }
.plate-chip { position: absolute; top: .8rem; left: .8rem; display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(10,15,25,.82); backdrop-filter: blur(4px); border: 1px solid rgba(126,172,255,.35); border-radius: 9px; padding: .4rem .6rem; }
.plate { font-family: var(--display); font-weight: 800; letter-spacing: .06em; font-size: .92rem; color: #eaf1ff;
  background: linear-gradient(180deg, #f7fafe, #dfe8f5); color: #0c1830; padding: .12rem .5rem; border-radius: 4px; box-shadow: inset 0 0 0 2px #0c1830; }
.plate-chip .conf { font-size: .68rem; color: var(--dark-accent); font-weight: 700; }
.scene-feed { background: var(--surface); border: 1px solid var(--hairline); border-top: 0; border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-lg); overflow: hidden; }
.feed-row { display: flex; align-items: center; gap: .7rem; padding: .7rem .9rem; border-top: 1px solid var(--hairline); font-size: .82rem; }
.feed-row:first-child { border-top: 0; }
.feed-row .fp { font-family: var(--display); font-weight: 700; font-size: .82rem; letter-spacing: .03em; color: var(--ink);
  border: 1px solid var(--hairline-2); border-radius: 4px; padding: .1rem .4rem; }
.feed-row .fmeta { color: var(--muted); font-variant-numeric: tabular-nums; }
.feed-row .ftag { margin-left: auto; font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .15rem .5rem; border-radius: 999px; }
.feed-row .ftag.ok { color: var(--good); background: var(--good-soft); }
.feed-row.alert .ftag { color: #c81e3a; background: color-mix(in srgb, #c81e3a 12%, transparent); }
.feed-row.alert .fp { border-color: color-mix(in srgb, #c81e3a 45%, transparent); color: #c81e3a; }

@keyframes scan { 0% { top: 4%; opacity: 0; } 12% { opacity: .85; } 88% { opacity: .85; } 100% { top: 92%; opacity: 0; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,91,107,.55); } 70% { box-shadow: 0 0 0 6px rgba(255,91,107,0); } 100% { box-shadow: 0 0 0 0 rgba(255,91,107,0); } }

/* ── sections ────────────────────────────────────────────────────────── */
section { padding: clamp(3.6rem, 8vw, 5.8rem) 0; }
section.alt { background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.sec-head { max-width: 42rem; margin-bottom: 2.6rem; }
.sec-head h2 { font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .6rem 0 0; }
.sec-head p { margin: .8rem 0 0; color: var(--muted); font-size: 1.06rem; }

/* problem / difference */
.claim { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.claim .col { padding: 1.7rem 1.8rem; border-radius: 14px; border: 1px solid var(--hairline); background: var(--surface); box-shadow: var(--shadow-sm); }
.claim .col.them { background: var(--surface-2); border-style: dashed; box-shadow: none; }
.claim .col.us { border-color: color-mix(in srgb, var(--accent) 40%, var(--hairline)); box-shadow: var(--shadow); }
.claim .tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.claim .them .tag { color: var(--muted); }
.claim .us .tag { color: var(--accent-ink); }
.claim h3 { margin: .6rem 0 .5rem; font-size: 1.22rem; }
.claim p { margin: 0; color: var(--muted); font-size: .97rem; }

/* feature cards */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.card { background: var(--surface); border: 1px solid var(--hairline); border-radius: 16px; padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--hairline-2); }
.card .ic { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; background: var(--accent-soft); color: var(--accent); margin-bottom: 1.15rem; }
.card .ic svg { width: 22px; height: 22px; }
.card h3 { margin: 0 0 .4rem; font-size: 1.16rem; font-weight: 700; }
.card p { margin: 0; color: var(--muted); font-size: .96rem; }

/* heritage */
.heritage { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.heritage .mark { display: grid; place-items: center; }
.heritage .mark svg { width: min(210px, 58vw); height: auto; color: var(--accent); filter: drop-shadow(0 12px 30px var(--accent-glow)); }
.heritage blockquote { margin: 0; }
.heritage blockquote p { font-size: clamp(1.25rem, 2.7vw, 1.6rem); line-height: 1.36; color: var(--ink); font-weight: 600; letter-spacing: -.02em; }
.heritage cite { display: block; margin-top: 1.2rem; font-style: normal; color: var(--muted); font-size: .93rem; font-family: var(--body); letter-spacing: 0; }

/* pricing */
.price-wrap { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
.price-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); }
.price-card .rows { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2.4rem; }
.price-card .r .l { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.price-card .r .v { font-family: var(--display); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-top: .4rem; }
.price-card .r .v .cur { color: var(--accent); }
.price-card .r .v .unit { font-family: var(--body); font-size: .95rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.price-card .note { margin: 1.4rem 0 0; padding-top: 1.3rem; border-top: 1px solid var(--hairline); font-size: .9rem; color: var(--ink-soft); }
.compare { overflow-x: auto; border: 1px solid var(--hairline); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-sm); }
.compare table { width: 100%; border-collapse: collapse; min-width: 26rem; }
.compare caption { text-align: left; padding: 1.2rem 1.4rem .1rem; color: var(--muted); font-size: .82rem; }
.compare th, .compare td { padding: .85rem 1.4rem; text-align: right; font-variant-numeric: tabular-nums; border-bottom: 1px solid var(--hairline); white-space: nowrap; }
.compare th.h, .compare td.h { text-align: left; }
.compare thead th { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.compare tr.you th, .compare tr.you td { color: var(--accent-ink); font-weight: 700; }
.compare tr.save { border-top: 2px solid var(--hairline-2); }
.compare tr.save th, .compare tr.save td { color: var(--good); font-weight: 700; }
.compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom: none; }

/* product line */
.line { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.line .item { border: 1px solid var(--hairline); border-radius: 16px; padding: 1.8rem; background: var(--surface); box-shadow: var(--shadow-sm); }
.line .item.now { border-color: color-mix(in srgb, var(--accent) 34%, var(--hairline)); box-shadow: var(--shadow); }
.line .item .badge { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: .2rem .6rem; border-radius: 999px; }
.line .item.now .badge { background: var(--accent-soft); color: var(--accent-ink); }
.line .item.soon .badge { background: var(--surface-2); color: var(--muted); }
.line .item h3 { margin: .85rem 0 .4rem; font-size: 1.22rem; font-weight: 700; }
.line .item p { margin: 0; color: var(--muted); font-size: .96rem; }

/* CTA band — the committed dark moment (neutral near-black) */
.cta-band { background: radial-gradient(130% 180% at 18% -50%, var(--dark-2), var(--dark) 62%); color: var(--dark-ink); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; width: 460px; height: 460px; left: 55%; bottom: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(91,155,255,.2), transparent 66%); pointer-events: none; }
.cta-band .inner { padding: clamp(3rem, 6vw, 4.4rem) 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h2 { font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0; max-width: 20ch; }
.cta-band p { margin: .7rem 0 0; color: var(--dark-muted); }
.cta-band .btn { background: var(--dark-accent); color: #05224d; box-shadow: 0 8px 24px rgba(91,155,255,.28); }
.cta-band .btn:hover { filter: brightness(1.07); box-shadow: 0 12px 30px rgba(91,155,255,.34); }

/* footer */
footer.foot { background: var(--surface); border-top: 1px solid var(--hairline); }
footer.foot .inner { padding: 2.8rem 0 2.2rem; display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
footer.foot .brand b { color: var(--ink); }
footer.foot .cols { display: flex; gap: 3rem; flex-wrap: wrap; }
footer.foot .cols h4 { margin: 0 0 .7rem; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-family: var(--body); font-weight: 700; }
footer.foot .cols a { display: block; color: var(--ink-soft); text-decoration: none; font-size: .9rem; padding: .2rem 0; }
footer.foot .cols a:hover { color: var(--accent-ink); }
footer.foot .legal { border-top: 1px solid var(--hairline); }
footer.foot .legal .inner { padding: 1.2rem 0; color: var(--muted); font-size: .78rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .scene { max-width: 30rem; }
}
@media (max-width: 760px) {
  .nav .links a:not(.btn) { display: none; }
  .claim, .grid, .heritage, .price-card .rows, .line { grid-template-columns: 1fr; }
  .heritage .mark { order: -1; }
}

/* ── subpage hero ────────────────────────────────────────────────────── */
.page-hero { position: relative; overflow: hidden; background: var(--ground); border-bottom: 1px solid var(--hairline); }
.page-hero::after { content: ""; position: absolute; width: 460px; height: 460px; right: -3%; top: -200px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 66%); pointer-events: none; }
.page-hero .inner { padding: clamp(3rem, 7vw, 4.6rem) 0 clamp(2.2rem, 5vw, 3rem); position: relative; z-index: 1; max-width: 50rem; }
.page-hero h1 { font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.3rem); line-height: 1.04; margin: .8rem 0 0; letter-spacing: -.035em; }
.page-hero .lede { margin: 1.2rem 0 0; max-width: 54ch; font-size: clamp(1.02rem, 2.3vw, 1.18rem); color: var(--muted); }

/* ── prose ───────────────────────────────────────────────────────────── */
.prose { max-width: 40rem; }
.prose p { color: var(--ink-soft); margin: 0 0 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.prose .lead { font-size: 1.16rem; color: var(--ink); }

/* ── included list ───────────────────────────────────────────────────── */
.inc { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.4rem; }
.inc li { position: relative; padding: .85rem 0 .85rem 1.7rem; border-bottom: 1px solid var(--hairline); font-size: .96rem; }
.inc li::before { content: ""; position: absolute; left: 0; top: 1.25rem; width: 8px; height: 8px; border: 1.7px solid var(--accent); border-radius: 50%; }
.inc b { font-weight: 700; }
.inc span { color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 16px; overflow: hidden; }
.faq .qa { background: var(--surface); padding: 1.5rem 1.7rem; }
.faq .qa h3 { margin: 0 0 .45rem; font-size: 1.06rem; font-weight: 700; }
.faq .qa p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ── value pill (About) ──────────────────────────────────────────────── */
.pill-note { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .95rem; border: 1px solid var(--hairline-2);
  border-radius: 999px; font-size: .88rem; color: var(--ink-soft); background: var(--surface); }
.pill-note b { color: var(--accent-ink); font-weight: 700; }

@media (max-width: 760px) { .inc { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scan, .cam-top .live::before { animation: none; }
}
