/* SPDX-License-Identifier: LicenseRef-Vahini-Proprietary
   © 2026 Vahini Technologies. All rights reserved. Dual-IMU sensing: Indian Patent No. 584433.
   Proprietary & confidential. Third-party notices: /THIRD-PARTY-NOTICES.md · SBOM: /sbom.spdx.json */
/* ============================================================
   Vahini — site.css
   Shared design system for the marketing site.
   Palette: ivory paper · elephant grey ink · Vahini crimson highlight.
   Type: Spectral (display serif) · Hanken Grotesk (UI/body).
   ============================================================ */

:root{
  /* ----------------------------------------------------------
     COLOURS live in theme.css (switch via theme.config.js).
     Only non-colour design tokens are defined here.
     ---------------------------------------------------------- */
  --radius:   12px;
  --radius-lg:18px;
  --radius-xl:26px;
  --nav-h:    72px;
  --maxw:     1200px;

  --shadow-1: 0 1px 2px rgba(34,40,49,.05), 0 6px 22px rgba(34,40,49,.07);
  --shadow-2: 0 18px 60px rgba(34,40,49,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, "Segoe UI", Roboto, sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth; color-scheme:only light;}
body{
  margin:0; background:var(--ivory); color:var(--elephant);
  font-family:var(--sans); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{max-width:100%; display:block;}
a{color:inherit;}
::selection{background:var(--hot-soft); color:var(--hot-deep);}

h1,h2,h3,h4{font-family:var(--serif); color:var(--ink); font-weight:600; line-height:1.08; margin:0; letter-spacing:-.01em;}
p{margin:0;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}

/* ---------- reveal-on-scroll ---------- */
.reveal{opacity:0; transform:translateY(22px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in{opacity:1; transform:none;}
.reveal[data-d="1"]{transition-delay:.08s;}
.reveal[data-d="2"]{transition-delay:.16s;}
.reveal[data-d="3"]{transition-delay:.24s;}
.reveal[data-d="4"]{transition-delay:.32s;}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  html{scroll-behavior:auto;}
}

/* ============================================================
   NAV
   ============================================================ */
.nav{position:sticky; top:0; z-index:120; background:color-mix(in srgb, var(--ivory) 86%, transparent);
  backdrop-filter:saturate(140%) blur(12px); -webkit-backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid transparent; transition:border-color .3s, background .3s;}
.nav.scrolled{border-bottom-color:var(--rule); background:color-mix(in srgb, var(--ivory) 94%, transparent);}
.nav__in{max-width:var(--maxw); margin:0 auto; height:var(--nav-h); display:flex; align-items:center; gap:26px; padding:0 28px;}

.logo{display:flex; align-items:center; gap:12px; text-decoration:none; flex:0 0 auto;}
.logo img{width:clamp(46px,4.4vw,58px); height:clamp(46px,4.4vw,58px); border-radius:50%; transition:transform .2s var(--ease);}
.logo:hover img{transform:scale(1.05);}

.menu{flex:1; display:flex;}
.menu ul{list-style:none; display:flex; align-items:center; gap:2px; margin:0; padding:0;}
.menu li{position:relative;}
.navlink,.navtrig{display:inline-flex; align-items:center; gap:6px; font:inherit; font-size:15.5px; font-weight:500; white-space:nowrap;
  color:var(--elephant); background:none; border:0; cursor:pointer; padding:9px 14px; border-radius:9px;
  text-decoration:none; transition:background .16s, color .16s;}
.navlink:hover,.navtrig:hover,.navtrig[aria-expanded="true"]{background:rgba(34,40,49,.05); color:var(--hot);}
.caret{width:9px; height:9px; transition:transform .25s var(--ease);}
.has-mega.open .caret{transform:rotate(180deg);}

/* simple dropdown (Company) */
.drop{position:absolute; top:calc(100% + 10px); left:50%; transform:translate(-50%,-8px); min-width:240px;
  background:var(--surface); border:1px solid var(--rule); border-radius:14px; box-shadow:var(--shadow-2);
  padding:10px; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index:125;}
.has-drop.open .drop{opacity:1; visibility:visible; transform:translate(-50%,0); pointer-events:auto;}
.drop__link{display:flex; flex-direction:column; gap:2px; padding:9px 12px; border-radius:9px; text-decoration:none; transition:background .14s;}
.drop__link:hover{background:rgba(34,40,49,.05);}
.drop__link:hover .drop__t{color:var(--hot);}
.drop__t{font-size:15px; font-weight:600; color:var(--ink); font-family:var(--sans);}
.drop__d{font-size:12.5px; color:var(--muted);}

.actions{display:flex; align-items:center; gap:10px; flex:0 0 auto;}

/* buttons */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; font-family:var(--sans);
  font-size:15px; font-weight:600; text-decoration:none; padding:11px 20px; border-radius:11px; cursor:pointer;
  border:1px solid transparent; transition:transform .18s var(--ease), background .18s, color .18s, box-shadow .18s, border-color .18s; white-space:nowrap;}
.btn svg{width:17px; height:17px;}
.btn--ghost{color:var(--ink); border-color:var(--rule-2); background:transparent;}
.btn--ghost:hover{background:rgba(34,40,49,.05); border-color:var(--hot); color:var(--hot); transform:translateY(-1px);}
.btn--dark{color:#fff; background:var(--ink); border-color:var(--ink);}
.btn--dark:hover{background:#000; transform:translateY(-1px); box-shadow:var(--shadow-1);}
.btn--crimson{color:#fff; background:var(--crimson); border-color:var(--crimson);}
.btn--crimson:hover{background:var(--hot); border-color:var(--hot); transform:translateY(-1px); box-shadow:0 10px 26px rgba(192,8,11,.30);}
.btn--lg{padding:14px 26px; font-size:16px; border-radius:12px;}
.btn--sm{padding:8px 15px; font-size:14px;}
.btn--link{padding:0; border:0; background:none; color:var(--crimson-deep); font-weight:600; gap:5px;}
.btn--link:hover{gap:9px; color:var(--hot);}

/* burger */
.burger{display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:9px;}
.burger span{width:23px; height:2px; background:var(--ink); border-radius:2px; transition:.25s var(--ease);}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0;}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- mega menu (fixed + viewport-centred so it always fits) ---------- */
.mega{position:fixed; top:calc(var(--nav-h) + 8px); left:50%; transform:translate(-50%,-10px);
  width:min(1080px, calc(100vw - 32px)); max-height:calc(100vh - var(--nav-h) - 24px); overflow:auto;
  background:var(--surface); border:1px solid var(--rule); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-2); padding:26px; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;}
.has-mega.open .mega{opacity:1; visibility:visible; transform:translate(-50%,0); pointer-events:auto;}
.mega__grid{display:grid; grid-template-columns:1.15fr 1.15fr .95fr; gap:30px;}
.mega__head{font-family:var(--sans); font-size:11.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--hint); margin:0 0 14px;}
.mega__link{display:flex; flex-direction:column; gap:2px; padding:9px 10px; margin:0 -10px; border-radius:10px; text-decoration:none; transition:background .14s;}
.mega__link:hover{background:rgba(34,40,49,.05);}
.mega__link:hover .mega__t{color:var(--hot);}
.mega__t{display:flex; align-items:center; gap:8px; font-size:15.5px; font-weight:600; color:var(--ink);}
.mega__d{font-size:13px; color:var(--muted);}
.mega__feature{background:linear-gradient(160deg,var(--dark),var(--dark-2)); border-radius:var(--radius); padding:22px; color:#EEEEEE; display:flex; flex-direction:column;}
.mega__feature .mega__head{color:rgba(247,243,232,.55);}
.mega__feature h4{color:#fff; font-size:20px; margin:2px 0 8px;}
.mega__feature p{font-size:13.5px; color:rgba(247,243,232,.74); line-height:1.55; margin-bottom:16px;}
.mega__feature .btn{margin-top:auto;}
.mega__note{font-size:11.5px; color:rgba(247,243,232,.5); margin-top:14px;}

/* maturity pills */
.pill{display:inline-flex; align-items:center; font-family:var(--sans); font-size:10.5px; font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; padding:2px 8px; border-radius:20px; line-height:1.5;}
.pill--live{color:var(--live); background:var(--live-bg);}
.pill--dev{color:var(--dev); background:var(--dev-bg);}
.pill--research{color:var(--research); background:var(--research-bg);}
.pill--pilot{color:#2563A8; background:#E4EDF8;}
.pill--assess{color:#7A52A6; background:#EFE7F7;}
.pill--next{color:#B4502E; background:#F7E7DF;}
.pill--future{color:#5A6470; background:#E8EAED;}

/* ---------- mobile drawer ---------- */
.drawer{position:fixed; inset:var(--nav-h) 0 0; background:var(--ivory); z-index:115; padding:18px 24px 40px;
  overflow-y:auto; transform:translateY(-8px); opacity:0; visibility:hidden; transition:.3s var(--ease);}
.drawer.open{transform:none; opacity:1; visibility:visible;}
.drawer details{border-bottom:1px solid var(--rule);}
.drawer summary{list-style:none; cursor:pointer; padding:16px 4px; font-family:var(--serif); font-size:21px; color:var(--ink); display:flex; justify-content:space-between; align-items:center;}
.drawer summary::-webkit-details-marker{display:none;}
.drawer summary::after{content:"+"; color:var(--hint); font-family:var(--sans);}
.drawer details[open] summary::after{content:"–";}
.drawer details a{display:flex; align-items:center; gap:8px; padding:11px 8px; font-size:15px; color:var(--muted); text-decoration:none;}
.drawer .d-link{display:block; border-bottom:1px solid var(--rule); padding:16px 4px; font-family:var(--serif); font-size:21px; color:var(--ink); text-decoration:none;}
.drawer__actions{display:flex; flex-direction:column; gap:11px; margin-top:24px;}
.drawer__actions .btn{width:100%;}

@media (max-width:920px){
  .menu,.actions{display:none;}
  .burger{display:flex;}
  .nav__in{justify-content:space-between;}
  .logo img{width:34px; height:34px;}
  .logo b{font-size:23px;}
  /* keep search reachable on mobile even though the rest of .actions is hidden */
  .actions{display:flex; gap:6px;}
  .actions .btn{display:none;}
  .navsearch{display:grid;}
}
@media (min-width:1500px){
  :root{ --maxw:1340px; }
  body{ font-size:18px; }
}

/* ============================================================
   site search
   ============================================================ */
.navsearch{appearance:none; -webkit-appearance:none; color-scheme:light; display:grid; place-items:center; width:40px; height:40px; border-radius:11px; border:1.5px solid var(--rule);
  background:var(--surface); color:var(--elephant); cursor:pointer; transition:.16s; flex:0 0 auto;}
.navsearch:hover{border-color:var(--rule-2); color:var(--ink);}
.navsearch svg{width:18px; height:18px;}
.vsearch{position:fixed; inset:0; z-index:120; background:rgba(20,23,28,.46); backdrop-filter:blur(4px);
  display:flex; align-items:flex-start; justify-content:center; padding:14vh 20px 20px;}
.vsearch[hidden]{display:none;}
.vsearch__panel{width:min(620px,100%); background:var(--surface); border:1px solid var(--rule);
  border-radius:16px; box-shadow:0 30px 80px rgba(20,23,28,.4); overflow:hidden; animation:vsIn .22s var(--ease);}
@keyframes vsIn{from{opacity:0; transform:translateY(-10px);} to{opacity:1; transform:none;}}
.vsearch__bar{display:flex; align-items:center; gap:12px; padding:16px 18px; border-bottom:1px solid var(--rule);}
.vsearch__bar svg{width:20px; height:20px; color:var(--hint); flex:0 0 auto;}
.vsearch__bar input{flex:1; border:0; outline:0; background:none; font-family:var(--sans); font-size:17px; color:var(--ink);}
.vsearch__bar input::placeholder{color:var(--hint);}
.vsearch__esc{flex:0 0 auto; font-family:var(--sans); font-size:11px; font-weight:700; color:var(--muted);
  border:1px solid var(--rule); border-radius:6px; padding:3px 7px; background:var(--ivory-2); cursor:pointer;}
.vsearch__results{max-height:min(52vh,460px); overflow-y:auto; padding:8px;}
.vsearch__hit{display:flex; flex-direction:column; gap:2px; padding:11px 14px; border-radius:10px; text-decoration:none; color:inherit;}
.vsearch__hit:hover{background:var(--ivory-2);}
.vsearch__hit .vh-t{font-family:var(--serif); font-size:16px; font-weight:600; color:var(--ink);}
.vsearch__hit .vh-d{font-size:13px; color:var(--muted);}
.vsearch__empty{padding:22px 16px; text-align:center; color:var(--muted); font-size:15px;}

/* ============================================================
   page transition veil
   ============================================================ */
.veil{position:fixed; inset:0; z-index:300; background:var(--ink); transform:scaleY(0); transform-origin:bottom;
  pointer-events:none; will-change:transform;}
.veil.cover{animation:veilCover .26s cubic-bezier(.4,0,.2,1) forwards;}
@keyframes veilCover{from{transform:scaleY(0); transform-origin:bottom;} to{transform:scaleY(1); transform-origin:bottom;}}
/* page arrives with a soft fade+rise — pure CSS so it never depends on JS */
.page-fade{animation:pageIn .34s cubic-bezier(.22,.61,.36,1) both;}
@keyframes pageIn{from{opacity:0; transform:translateY(7px);} to{opacity:1; transform:none;}}
@media (prefers-reduced-motion: reduce){.page-fade{animation:none;}}

/* ============================================================
   SECTIONS / shared content
   ============================================================ */
section{position:relative;}
.sec{padding:104px 0;}
.sec--tight{padding:72px 0;}
.eyebrow{font-family:var(--sans); font-size:12.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--crimson-deep);}
.eyebrow--mute{color:var(--hint);}
.kicker{display:flex; align-items:center; gap:10px;}
.kicker::before{content:""; width:26px; height:1.5px; background:var(--crimson); display:inline-block;}

.lede{font-size:20px; line-height:1.55; color:var(--muted); max-width:620px;}
.h-display{font-size:clamp(40px, 6vw, 76px); line-height:1.02; letter-spacing:-.02em;}
.h-2{font-size:clamp(30px,4vw,46px);}
.h-3{font-size:clamp(22px,2.4vw,28px);}

/* card */
.card{background:var(--surface); border:1px solid var(--rule); border-radius:var(--radius-lg); padding:26px; box-shadow:var(--shadow-1); transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;}
.card:hover{transform:translateY(-4px); box-shadow:var(--shadow-2); border-color:var(--rule-2);}

/* footer */
.foot{background:var(--dark); color:rgba(238,238,238,.7); padding:72px 0 36px; margin-top:0;}
.foot a{color:rgba(247,243,232,.7); text-decoration:none; transition:color .15s;}
.foot a:hover{color:#fff;}
.foot__grid{display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:36px;}
.foot__brand b{font-family:var(--serif); color:#fff; font-size:24px; display:flex; align-items:center; gap:10px;}
.foot__brand img{width:30px; height:30px; border-radius:50%;}
.foot__social{display:flex; gap:10px; margin-top:16px;}
/* .foot__social .foot__soc (not the bare .foot__soc class alone): .foot__soc
   is nested inside .foot__col, so the plain ".foot__soc" selector's
   specificity (0,1,0) loses to ".foot__col a"'s (0,1,1), which sets
   display:flex with no justify-content -- silently breaking the intended
   grid centering and leaving the icon glyph packed against one edge. */
.foot__social .foot__soc{display:grid; place-items:center; width:36px; height:36px; border-radius:9px; border:1px solid var(--rule-on);
  background:rgba(255,255,255,.05); color:rgba(247,243,232,.82); padding:0; transition:.16s;}
.foot__social .foot__soc:hover{background:var(--crimson); border-color:var(--crimson); color:#fff; transform:translateY(-2px);}
.foot__social .foot__soc svg{width:18px; height:18px;}

/* ============================================================
   cookie consent (GDPR / CCPA)
   ============================================================ */
.cc{position:fixed; left:0; right:0; bottom:0; z-index:400; background:var(--dark); color:var(--ivory);
  box-shadow:0 -10px 40px rgba(0,0,0,.32); animation:ccUp .34s var(--ease);}
.cc--gone{animation:ccDown .3s var(--ease) forwards;}
@keyframes ccUp{from{transform:translateY(100%);} to{transform:translateY(0);}}
@keyframes ccDown{from{transform:translateY(0);} to{transform:translateY(100%);}}
.cc__main{max-width:var(--maxw,1240px); margin:0 auto; padding:20px 24px; display:flex; align-items:center; gap:28px; flex-wrap:wrap;}
.cc__txt{flex:1 1 420px; min-width:280px;}
.cc__txt b{display:block; font-family:var(--serif); font-size:17px; color:#fff; margin-bottom:5px;}
.cc__txt p{font-size:13.5px; line-height:1.55; color:rgba(238,238,238,.72); margin:0;}
.cc__txt a{color:var(--accent-lite); text-decoration:underline; text-underline-offset:2px;}
.cc__txt b b{display:inline; font-family:var(--sans); color:var(--accent-lite); font-size:inherit;}
.cc__btns{display:flex; gap:10px; flex-wrap:wrap; align-items:center;}
.cc__b{font-family:var(--sans); font-size:14px; font-weight:600; padding:11px 18px; border-radius:10px; cursor:pointer; border:1px solid transparent; transition:.16s; white-space:nowrap;}
.cc__b--ghost{background:transparent; color:var(--ivory); border-color:var(--rule-on);}
.cc__b--ghost:hover{border-color:rgba(238,238,238,.5);}
.cc__b--solid{background:var(--crimson); color:#fff;}
.cc__b--solid:hover{background:var(--crimson-deep,#A80016);}
.cc__panel{max-width:var(--maxw,1240px); margin:0 auto; padding:0 24px 22px; display:flex; flex-direction:column; gap:12px;}
.cc__row{display:flex; align-items:center; justify-content:space-between; gap:20px; background:rgba(255,255,255,.05); border:1px solid var(--rule-on); border-radius:12px; padding:15px 18px;}
.cc__row b{display:block; color:#fff; font-size:14.5px; margin-bottom:3px;}
.cc__row span{font-size:12.5px; color:rgba(238,238,238,.62); line-height:1.45; display:block; max-width:560px;}
.cc__lock{font-size:12px; font-weight:700; color:var(--accent-lite); white-space:nowrap; align-self:center;}
.cc__sw{position:relative; flex:0 0 auto; width:46px; height:26px; cursor:pointer;}
.cc__sw input{position:absolute; opacity:0; width:100%; height:100%; margin:0; cursor:pointer;}
.cc__track{position:absolute; inset:0; background:rgba(238,238,238,.22); border-radius:20px; transition:.18s;}
.cc__track::before{content:""; position:absolute; top:3px; left:3px; width:20px; height:20px; border-radius:50%; background:#fff; transition:.18s;}
.cc__sw input:checked + .cc__track{background:var(--accent);}
.cc__sw input:checked + .cc__track::before{transform:translateX(20px);}
.cc__sw input:focus-visible + .cc__track{outline:2px solid var(--accent-lite); outline-offset:2px;}
.cc__panelbtns{display:flex; justify-content:flex-end;}
/* hide the floating feedback launcher while the cookie banner is open so they don't collide */
body.cc-open .vfb-launch{display:none !important;}
@media (max-width:720px){
  .cc__main{flex-direction:column; align-items:stretch; gap:16px; padding:18px;}
  .cc__btns{justify-content:stretch;} .cc__btns .cc__b{flex:1;}
  .cc__row{flex-wrap:wrap; gap:12px;}
}
.foot__brand p{font-size:14px; line-height:1.6; margin-top:14px; max-width:280px; color:rgba(247,243,232,.55);}
.foot__col h5{font-family:var(--sans); font-size:11.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(247,243,232,.45); margin:0 0 16px;}
.foot__col a{display:flex; align-items:center; gap:8px; font-size:14.5px; padding:5px 0;}
.foot__bot{display:flex; justify-content:space-between; align-items:center; gap:18px; flex-wrap:wrap; margin-top:54px; padding-top:24px; border-top:1px solid var(--rule-on); font-size:13px; color:rgba(247,243,232,.45);}
.foot__marks{display:flex; gap:18px; flex-wrap:wrap;}

@media (max-width:820px){
  .foot__grid{grid-template-columns:1fr 1fr;}
  .foot__brand{grid-column:1 / -1;}
}
@media (max-width:560px){
  .sec{padding:72px 0;}
  body{font-size:16px;}
  .foot__grid{grid-template-columns:1fr;}
}

/* ============================================================
   SUB-PAGE shared blocks (solution / company pages)
   ============================================================ */
.phero{padding:84px 0 64px; border-bottom:1px solid var(--rule);}
.phero__tags{display:flex; align-items:center; gap:12px; margin-bottom:20px;}
.phero__tags .eyebrow{margin:0;}
.phero h1{font-size:clamp(36px,5vw,62px); line-height:1.02; letter-spacing:-.02em; max-width:16ch;}
.phero .lede{margin-top:22px; font-size:20px;}
.phero__cta{display:flex; gap:13px; flex-wrap:wrap; margin-top:32px;}
/* split hero: copy left, illustration right */
.phero--split .wrap{display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center;}
.phero--split h1{max-width:none;}
.phero__media{display:flex; align-items:center; justify-content:center;}
.phero__media svg{width:100%; height:auto; max-width:460px; filter:drop-shadow(0 24px 48px rgba(34,40,49,.12));}
@media (max-width:860px){
  .phero--split .wrap{grid-template-columns:1fr; gap:30px;}
  .phero__media{order:-1;} .phero__media svg{max-width:360px;}
}
.phero--dark{background:var(--dark); border-color:transparent;}
.phero--dark h1{color:#fff;} .phero--dark .lede{color:rgba(238,238,238,.74);}

/* dark section band — shared so EVERY page renders it (not just index.html,
   where it used to live inline). Without this, dark sections on other pages
   fell back to a transparent background with white text = invisible. */
.band-dark{background:var(--dark); color:#EEEEEE;}
.band-dark h2, .band-dark h3{color:#fff;}
.band-dark .eyebrow{color:var(--accent-lite);}
.band-dark p{color:rgba(238,238,238,.74);}

.block{padding:80px 0;}
.block--alt{background:var(--ivory-2); border-top:1px solid var(--rule); border-bottom:1px solid var(--rule);}
.block__head{max-width:640px; margin-bottom:14px;}
.block h2{font-size:clamp(26px,3.4vw,40px);}
.block h2 + p{margin-top:18px;}
.block p.body{font-size:17.5px; color:var(--muted); line-height:1.7; max-width:660px;}
.block p.body em{font-style:italic; color:var(--elephant);}

.steps-row{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:38px;}
.scard{background:var(--surface); border:1px solid var(--rule); border-radius:var(--radius-lg); padding:26px; box-shadow:var(--shadow-1);}
.scard .num{font-family:var(--serif); font-size:14px; color:var(--crimson-deep); font-weight:600;}
.scard h3{font-size:21px; margin:12px 0 9px;}
.scard p{font-size:14.5px; color:var(--muted); line-height:1.6;}

.proof{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;}
.proof__ph{border:1.5px dashed var(--rule-2); border-radius:var(--radius-lg); padding:40px 28px; text-align:center; color:var(--hint); font-size:14px; background:var(--surface-2); min-height:200px; display:grid; place-content:center; gap:8px;}
.proof__ph svg{width:34px; height:34px; margin:0 auto; color:var(--rule-2);}

.note-strip{display:flex; gap:14px; align-items:flex-start; padding:20px 22px; background:var(--crimson-soft); border:1px solid rgba(0,173,181,.22); border-radius:var(--radius); margin-top:30px;}
.note-strip svg{width:22px; height:22px; color:var(--crimson); flex:0 0 auto; margin-top:2px;}
.note-strip p{font-size:14.5px; color:var(--crimson-ink); line-height:1.6;}

.bigcta{text-align:center; padding:92px 0;}
.bigcta h2{font-size:clamp(30px,4.4vw,50px); max-width:18ch; margin:0 auto;}
.bigcta p{font-size:18px; color:var(--muted); margin:20px auto 30px; max-width:540px;}
.bigcta__row{display:flex; gap:13px; justify-content:center; flex-wrap:wrap;}

@media (max-width:820px){
  .steps-row{grid-template-columns:1fr;}
  .proof{grid-template-columns:1fr; gap:30px;}
}

/* ============================================================
   MARKETS: key benefits · common use cases · worked example
   (shared across every market sub-page)
   ============================================================ */
.mk-benefit .num{display:flex; align-items:center; gap:9px;}
.mk-benefit .num svg{width:19px; height:19px; color:var(--crimson-deep);}
.mk-cases{display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:40px; align-items:stretch;}
.mk-uses{background:var(--surface); border:1px solid var(--rule); border-radius:var(--radius-lg); padding:28px 30px; box-shadow:var(--shadow-1);}
.mk-uses .eyebrow{margin-bottom:6px;}
.mk-uses h3{font-size:20px; margin-bottom:18px;}
.mk-uses ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px;}
.mk-uses li{display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--muted); line-height:1.55;}
.mk-uses li svg{width:20px; height:20px; flex:0 0 auto; color:var(--accent-deep); margin-top:1px;}
.mk-uses li b{color:var(--ink); font-weight:600;}
.mk-example{background:var(--dark); color:#EEEEEE; border-radius:var(--radius-lg); padding:30px; box-shadow:var(--shadow-2); display:flex; flex-direction:column;}
.mk-example .eyebrow{color:var(--accent-lite); margin-bottom:8px;}
.mk-example h3{color:#fff; font-size:22px; line-height:1.2; margin-bottom:12px;}
.mk-example p{font-size:14.5px; color:rgba(238,238,238,.80); line-height:1.62;}
.mk-example p + p{margin-top:11px;}
.mk-flow{display:flex; flex-wrap:wrap; align-items:center; gap:9px; margin-top:auto; padding-top:22px;}
.mk-flow b{font-size:12px; font-weight:700; letter-spacing:.02em; background:rgba(238,238,238,.10); border:1px solid rgba(238,238,238,.18); color:#EEEEEE; padding:8px 13px; border-radius:999px;}
.mk-flow b.is-out{background:var(--accent); border-color:transparent; color:#06262a;}
.mk-flow svg{width:15px; height:15px; color:var(--accent-lite); flex:0 0 auto;}
@media (max-width:820px){ .mk-cases{grid-template-columns:1fr;} }

/* ============================================================
   MARKET STACK — layered "why the market isn't small"
   (shared: homepage + investors)
   ============================================================ */
.mstack{margin-top:34px; display:flex; flex-direction:column; gap:12px;}
.mlayer{display:grid; grid-template-columns:138px 1fr; gap:20px; align-items:center;
  background:var(--surface); border:1px solid var(--rule); border-left:4px solid var(--accent);
  border-radius:var(--radius-lg); padding:17px 22px; box-shadow:var(--shadow-1);
  transition:transform .22s var(--ease), box-shadow .22s var(--ease);}
.mlayer:hover{transform:translateX(3px); box-shadow:var(--shadow-2);}
.mlayer__tag b{font-family:var(--serif); font-size:17px; color:var(--ink); display:block; line-height:1.15;}
.mlayer__tag span{font-size:10.5px; font-weight:800; letter-spacing:.07em; text-transform:uppercase; color:var(--accent-deep); display:block; margin-top:4px;}
.mlayer__body p{margin:0; font-size:15px; color:var(--elephant); line-height:1.5;}
.mlayer__body .who{font-size:12.5px; color:var(--hint); margin-top:5px; display:block;}
.mlayer.is-live{border-left-color:var(--live);} .mlayer.is-live .mlayer__tag span{color:var(--live);}
.mlayer.is-dev{border-left-color:var(--dev);} .mlayer.is-dev .mlayer__tag span{color:var(--dev);}
.mlayer.is-next{border-left-color:var(--accent-deep);} .mlayer.is-next .mlayer__tag span{color:var(--accent-deep);}
.mlayer.is-moat{border-left-color:var(--hot);} .mlayer.is-moat .mlayer__tag span{color:var(--hot-deep);}
.mstack-note{font-size:12.5px; color:var(--hint); margin-top:16px; font-style:italic;}
@media (max-width:680px){ .mlayer{grid-template-columns:1fr; gap:7px; padding:16px 18px;} }

/* ============================================================
   REVENUE TRAJECTORY — 3-year conservative plan (investors)
   ============================================================ */
.traj{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:14px;}
.tyear{background:var(--surface); border:1px solid var(--rule); border-radius:var(--radius-lg); padding:22px 24px; position:relative;}
.tyear .yr{font-size:11.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--hint);}
.tyear .rev{font-family:var(--serif); font-size:clamp(28px,3.4vw,36px); font-weight:700; color:var(--ink); line-height:1; margin-top:9px;}
.tyear .gm{font-size:13px; color:var(--accent-deep); font-weight:700; margin-top:9px;}
.tyear.is-3{border-color:rgba(4,138,145,.42); background:var(--accent-soft);}
.tyear.is-3 .rev{color:var(--accent-ink);}
.traj-note{font-size:12.5px; color:var(--hint); margin-top:16px; font-style:italic;}
@media (max-width:680px){ .traj{grid-template-columns:1fr;} }

/* ============================================================
   PILOT PROOF WALL — "field-tested" stats (investors)
   ============================================================ */
.pilot{margin-top:8px;}
.pilot__grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:8px;}
.pstat{background:var(--surface); border:1px solid var(--rule); border-top:3px solid var(--crimson); border-radius:var(--radius); padding:24px 22px;}
.pstat .v{font-family:var(--serif); font-size:clamp(30px,3.4vw,40px); font-weight:700; color:var(--ink); line-height:1;}
.pstat .v small{font-size:15px; color:var(--crimson-deep); font-weight:700; font-family:var(--sans);}
.pstat .k{font-size:13px; color:var(--muted); margin-top:9px; line-height:1.4;}
.pilot__quote{display:grid; grid-template-columns:auto 1fr; gap:20px; align-items:center; margin-top:18px;
  background:var(--surface); border:1px solid var(--rule); border-radius:var(--radius-lg); padding:24px 26px; box-shadow:var(--shadow-1);}
.pilot__quote .av{width:52px; height:52px; border-radius:50%; background:var(--crimson-deep); color:#fff; display:grid; place-items:center; font-family:var(--serif); font-weight:700; font-size:19px;}
.pilot__quote q{font-family:var(--serif); font-size:18px; font-style:italic; color:var(--ink); line-height:1.5; display:block;}
.pilot__quote .who{font-size:13px; color:var(--muted); margin-top:8px; display:block;}
@media (max-width:820px){ .pilot__grid{grid-template-columns:1fr 1fr;} }
@media (max-width:520px){ .pilot__quote{grid-template-columns:1fr;} }
