/* ================================================================
   PULSO AI · BRAND SYSTEM · matches deck aesthetic 1:1
   Bebas Neue (headings) + DM Sans (body) + JetBrains Mono (labels)
   ================================================================ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --lime:#BEFF2E;
  --lime-dim:rgba(190,255,46,.6);
  --lime-soft:rgba(190,255,46,.12);
  --black:#080808;
  --black-2:#0d0d0d;
  --off:#F5F5F0;
  --mid:#131313;
  --elev:#181818;
  --card:#111;
  --border:#1a1a1a;
  --border-hi:#252525;
  --muted:#333;
  --dim:#555;
  --text:#888;
  --red:#ff3333;
  --orange:#ff8c00;
  --green:#2ed573;
  --blue:#60A5FA;
}

html{scroll-behavior:smooth;background:var(--black);scroll-padding-top:80px}
body{
  background:var(--black);
  color:var(--off);
  font-family:'DM Sans',sans-serif;
  font-size:15px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  cursor:none;
  min-height:100vh;
}
@media(max-width:900px){body{cursor:auto}}

a{color:inherit;text-decoration:none}
button{background:none;border:none;color:inherit;font-family:inherit;cursor:none;padding:0}
@media(max-width:900px){button{cursor:pointer}}

img,svg{display:block;max-width:100%}

/* ================================================================
   CUSTOM CURSOR (desktop only)
   ================================================================ */
.cursor{position:fixed;width:8px;height:8px;background:var(--lime);border-radius:50%;pointer-events:none;z-index:9999;transform:translate(-50%,-50%);mix-blend-mode:difference;transition:width .2s ease,height .2s ease}
.cursor.hover{width:22px;height:22px}
@media(max-width:900px){.cursor{display:none}}

/* ================================================================
   ATMOSPHERE LAYERS (grain, vignette, scan, halo) — always on
   ================================================================ */
.atmos-grain{position:fixed;inset:0;pointer-events:none;z-index:200;opacity:.1;mix-blend-mode:overlay;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E")}
.atmos-vignette{position:fixed;inset:0;pointer-events:none;z-index:200;background:radial-gradient(ellipse at center,transparent 40%,rgba(0,0,0,.35) 80%,rgba(0,0,0,.65) 100%)}
.scan{position:fixed;height:2px;left:0;right:0;background:linear-gradient(90deg,transparent 0%,transparent 12%,rgba(190,255,46,.18) 50%,transparent 88%,transparent 100%);animation:scan 14s linear infinite;pointer-events:none;z-index:198;box-shadow:0 0 8px rgba(190,255,46,.12)}
@keyframes scan{0%{top:-2px}100%{top:100vh}}

/* ================================================================
   ECG HEART MONITOR — hero-only, same as decks
   ================================================================ */
.ecg-stage{position:fixed;left:0;right:0;bottom:25vh;width:100%;height:220px;pointer-events:none;z-index:5;overflow:hidden;opacity:0;transition:opacity .6s ease}
body.hero-mode .ecg-stage{opacity:1}
.ecg-svg{display:block;width:100%;height:100%;overflow:visible}
.ecg-sweep{
  stroke:var(--lime);
  stroke-width:1.2;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 0 3px rgba(190,255,46,.35)) drop-shadow(0 0 9px rgba(190,255,46,.18));
  stroke-dasharray:4800;
  stroke-dashoffset:4800;
  animation:ecgSweep 4s linear infinite;
  animation-play-state:paused;
  opacity:.75;
}
body.hero-mode .ecg-sweep{animation-play-state:running}
@keyframes ecgSweep{
  0%{stroke-dashoffset:4800;opacity:.75}
  70%{stroke-dashoffset:0;opacity:.75}
  85%{stroke-dashoffset:0;opacity:.35}
  100%{stroke-dashoffset:0;opacity:0}
}
.ecg-dot{fill:#f5ffdc;filter:drop-shadow(0 0 2px rgba(245,255,220,.85)) drop-shadow(0 0 6px rgba(190,255,46,.55)) drop-shadow(0 0 14px rgba(190,255,46,.3))}
.ecg-flash{
  position:fixed;inset:0;pointer-events:none;z-index:4;
  background:radial-gradient(ellipse at 50% 72%,rgba(190,255,46,.10) 0%,rgba(190,255,46,.04) 30%,rgba(190,255,46,.01) 55%,transparent 75%);
  opacity:0;
  animation:windowHeartbeat 4s cubic-bezier(.2,.7,.3,1) infinite;
  animation-play-state:paused;
  mix-blend-mode:screen;
}
body.hero-mode .ecg-flash{animation-play-state:running;opacity:.1}
@keyframes windowHeartbeat{
  0%,30%{opacity:.1}
  37%{opacity:.5}
  42%{opacity:.3}
  47%{opacity:.42}
  55%{opacity:.22}
  70%{opacity:.14}
  100%{opacity:.1}
}

/* ================================================================
   NAV
   ================================================================ */
nav.site-nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 40px;
  background:rgba(8,8,8,.75);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.nav-logo-mark{width:22px;height:22px;display:flex;align-items:center;justify-content:center;gap:2px}
.nav-logo-mark span{display:block;width:2px;background:var(--lime);border-radius:1px}
.nav-logo-mark span:nth-child(1){height:7px}
.nav-logo-mark span:nth-child(2){height:12px}
.nav-logo-mark span:nth-child(3){height:20px}
.nav-logo-mark span:nth-child(4){height:20px}
.nav-logo-mark span:nth-child(5){height:12px}
.nav-logo-mark span:nth-child(6){height:7px}
.nav-logo-text{font-family:'Bebas Neue',sans-serif;font-size:16px;letter-spacing:.18em;color:var(--off)}
.nav-logo-text em{color:var(--lime);font-style:normal}

.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;
  letter-spacing:.22em;
  color:var(--text);
  text-transform:uppercase;
  transition:color .2s;
  position:relative;
}
.nav-links a:hover{color:var(--off)}

.nav-tools{display:flex;align-items:center;gap:14px}
.lang-toggle{display:flex;gap:0;font-family:'JetBrains Mono',monospace;font-size:9px;letter-spacing:.18em;text-transform:uppercase;border:1px solid var(--border-hi);border-radius:2px;overflow:hidden;background:rgba(8,8,8,.6)}
.lang-toggle button{color:var(--muted);padding:6px 10px;transition:all .15s ease}
.lang-toggle button:hover{color:var(--off)}
.lang-toggle button.active{background:var(--lime);color:var(--black);font-weight:500}

.nav-cta{
  background:var(--lime);color:var(--black);
  padding:10px 18px;
  font-family:'Bebas Neue',sans-serif;
  font-size:13px;letter-spacing:.12em;
  text-transform:uppercase;
  transition:transform .15s ease,box-shadow .15s ease;
}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 4px 20px rgba(190,255,46,.25);color:var(--black)}

@media(max-width:900px){
  nav.site-nav{padding:14px 20px}
  .nav-links{display:none}
  .nav-logo-text{font-size:14px}
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1,h2,h3,h4{font-family:'Bebas Neue',sans-serif;letter-spacing:.02em;line-height:.95;color:var(--off)}
h1{font-size:clamp(48px,8vw,120px);letter-spacing:.01em}
h2{font-size:clamp(34px,5.5vw,72px)}
h3{font-size:clamp(22px,2.8vw,36px);letter-spacing:.04em}
h4{font-size:clamp(16px,1.6vw,20px);letter-spacing:.08em}

p{font-family:'DM Sans',sans-serif;line-height:1.65;color:var(--text);font-weight:300}
.lead{font-size:clamp(15px,1.35vw,19px);max-width:720px}
.lead strong{color:var(--off);font-weight:500}
.lead em{color:var(--lime);font-style:normal}

.eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;
  letter-spacing:.3em;
  color:var(--lime);
  text-transform:uppercase;
  display:inline-block;
  padding-bottom:4px;
  border-bottom:1px solid rgba(190,255,46,.25);
  margin-bottom:24px;
}

.lime{color:var(--lime)}
.dim{color:var(--text)}
.off{color:var(--off)}

.divider{width:40px;height:2px;background:var(--lime);margin:20px 0}
.divider-center{margin-left:auto;margin-right:auto}

/* ================================================================
   LAYOUT
   ================================================================ */
section{
  padding:clamp(80px,10vh,140px) clamp(24px,5vw,80px);
  position:relative;
}
.container{max-width:1360px;margin:0 auto;position:relative}
.container-tight{max-width:1080px;margin:0 auto;position:relative}
.container-narrow{max-width:820px;margin:0 auto;position:relative}

/* ================================================================
   HERO (homepage + industry pages)
   ================================================================ */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:120px 24px 80px;
  position:relative;
  overflow:hidden;
}
.hero-inner{max-width:1200px;text-align:center;position:relative;z-index:10}
.hero h1{margin-bottom:24px}
.hero p.lead{font-size:clamp(17px,1.6vw,22px);max-width:820px;margin:0 auto 40px}
.hero-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:44px}

.btn-primary{
  background:var(--lime);color:var(--black);
  padding:16px 32px;
  font-family:'Bebas Neue',sans-serif;
  font-size:15px;letter-spacing:.15em;
  text-transform:uppercase;
  transition:transform .15s ease,box-shadow .15s ease;
  display:inline-flex;align-items:center;gap:10px;
  border:1px solid var(--lime);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(190,255,46,.3);color:var(--black)}
.btn-primary .arrow{transition:transform .2s ease}
.btn-primary:hover .arrow{transform:translateX(4px)}

.btn-ghost{
  background:transparent;color:var(--off);
  padding:16px 32px;
  font-family:'Bebas Neue',sans-serif;
  font-size:15px;letter-spacing:.15em;
  text-transform:uppercase;
  border:1px solid var(--border-hi);
  transition:all .15s ease;
  display:inline-flex;align-items:center;gap:10px;
}
.btn-ghost:hover{border-color:var(--lime);color:var(--lime)}

.hero-subrow{
  display:flex;gap:60px;justify-content:center;flex-wrap:wrap;
  margin-top:80px;padding-top:40px;
  border-top:1px solid var(--border);
}
.hero-stat{text-align:left}
.hero-stat-num{font-family:'Bebas Neue',sans-serif;font-size:clamp(32px,4vw,48px);color:var(--lime);line-height:1}
.hero-stat-lbl{font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:.22em;color:var(--dim);text-transform:uppercase;margin-top:6px}

/* ================================================================
   INDUSTRY PICKER (homepage)
   ================================================================ */
.industries-section{background:var(--black);position:relative}
.industries-head{text-align:center;margin-bottom:60px}
.industry-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2px;
  max-width:1200px;margin:0 auto;
}
.industry-card{
  background:var(--mid);
  padding:48px 32px;
  border-top:3px solid var(--border);
  transition:all .25s cubic-bezier(.4,0,.2,1);
  position:relative;
  display:flex;flex-direction:column;
  min-height:320px;
  text-align:left;
}
.industry-card:hover{
  background:var(--elev);
  border-top-color:var(--lime);
  transform:translateY(-4px);
}
.industry-card .num{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.22em;
  color:var(--dim);margin-bottom:16px;
}
.industry-card .icon{
  width:44px;height:44px;
  margin-bottom:20px;
  color:var(--lime);
}
.industry-card h3{margin-bottom:10px;letter-spacing:.04em}
.industry-card p{font-size:13px;color:var(--text);flex:1;margin-bottom:20px}
.industry-card .arrow{
  font-family:'Bebas Neue',sans-serif;
  font-size:14px;letter-spacing:.15em;
  color:var(--lime);
  display:flex;align-items:center;gap:8px;
  text-transform:uppercase;
  transition:gap .2s ease;
}
.industry-card:hover .arrow{gap:14px}

/* ================================================================
   STATS BLOCKS (regional)
   ================================================================ */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:2px;
  width:100%;
  margin-top:48px;
}
.stat-card{
  background:var(--mid);
  padding:32px 28px;
  border-top:2px solid var(--lime);
  text-align:left;
}
.stat-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(36px,4.2vw,58px);
  color:var(--lime);
  line-height:.9;
  margin-bottom:6px;
}
.stat-lbl{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.22em;
  color:var(--dim);
  text-transform:uppercase;
  margin-bottom:12px;
}
.stat-desc{font-size:13px;color:var(--text);line-height:1.55}
.stat-desc strong{color:var(--off);font-weight:500}

/* ================================================================
   MODULES / CAPABILITY LAYERS
   ================================================================ */
.modules-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2px;
  margin-top:48px;
}
.module{
  background:var(--mid);
  padding:36px 28px;
  border-top:3px solid var(--border);
  text-align:left;
  display:flex;flex-direction:column;
}
.module.highlight{border-top-color:var(--lime);background:rgba(190,255,46,.03)}
.module-label{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.22em;
  color:var(--dim);
  margin-bottom:10px;
}
.module.highlight .module-label{color:var(--lime)}
.module-name{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(18px,1.8vw,24px);
  letter-spacing:.04em;
  color:var(--off);
  margin-bottom:14px;
}
.module-desc{font-size:13px;color:var(--text);line-height:1.6;margin-bottom:18px;flex:1}
.module-desc strong{color:var(--off);font-weight:500}
.module-meta{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:16px;
  border-top:1px solid var(--border);
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.15em;
}
.module-meta .tag{color:var(--off)}
.module-meta .time{color:var(--dim)}

/* ================================================================
   PATH / PHASES
   ================================================================ */
.path-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:2px;
  margin-top:48px;
}
.phase{
  background:var(--mid);
  padding:28px 24px;
  border-top:2px solid var(--lime);
  text-align:left;
}
.phase-num{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.22em;
  color:var(--lime);
  margin-bottom:12px;
}
.phase-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:18px;letter-spacing:.04em;
  color:var(--off);
  margin-bottom:10px;
}
.phase-desc{font-size:12px;color:var(--text);line-height:1.55}

/* ================================================================
   TIMELINE (today/next/12m/24-36m)
   ================================================================ */
.timeline{max-width:880px;margin:48px auto 0}
.timeline-row{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:32px;
  padding:24px 0;
  border-bottom:1px solid var(--border);
  align-items:flex-start;
}
.timeline-row:last-child{border-bottom:none}
.timeline-when{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(22px,2.5vw,32px);
  color:var(--lime);
  line-height:1;
}
.timeline-text{font-size:14px;color:var(--text);line-height:1.65}
.timeline-text strong{color:var(--off);font-weight:500}
.timeline-text em{color:var(--lime);font-style:normal}

@media(max-width:700px){
  .timeline-row{grid-template-columns:1fr;gap:10px}
}

/* ================================================================
   LIME STRIP (key callout)
   ================================================================ */
.lime-bar{
  background:var(--lime);
  color:var(--black);
  padding:clamp(18px,2.5vh,28px) clamp(28px,3vw,40px);
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(18px,2.4vw,32px);
  letter-spacing:.03em;
  text-align:center;
  line-height:1.15;
  max-width:1100px;margin:48px auto 0;
}

/* ================================================================
   PROOF / LEADERS
   ================================================================ */
.leaders-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:2px;
  margin-top:48px;
}
.leader{
  background:var(--mid);
  padding:28px 24px;
  border-top:3px solid;
  text-align:left;
}
.leader.c1{border-color:var(--blue)}
.leader.c2{border-color:var(--green)}
.leader.c3{border-color:var(--orange)}
.leader.c4{border-color:var(--lime)}
.leader-cat{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.22em;
  color:var(--dim);
  margin-bottom:8px;
}
.leader-names{
  font-family:'Bebas Neue',sans-serif;
  font-size:17px;letter-spacing:.05em;
  color:var(--off);
  margin-bottom:12px;
  line-height:1.2;
}
.leader-desc{font-size:12px;color:var(--text);line-height:1.55}
.leader-desc strong{color:var(--off);font-weight:500}

.callout{
  margin-top:36px;
  padding:20px 28px;
  background:rgba(255,51,51,.04);
  border:1px solid rgba(255,51,51,.18);
  border-left:3px solid var(--red);
  text-align:left;
}
.callout-label{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.22em;
  color:var(--red);
  margin-bottom:8px;
}
.callout-text{font-size:13px;color:var(--off);line-height:1.65}
.callout-text strong{color:var(--red)}
.callout-text em{color:var(--lime);font-style:normal}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section{
  padding:clamp(80px,12vh,140px) clamp(24px,5vw,80px);
  text-align:center;
  background:linear-gradient(180deg,var(--black) 0%,var(--black-2) 100%);
  border-top:1px solid var(--border);
  position:relative;
}
.cta-section h2{margin-bottom:20px}
.cta-section .lead{margin:0 auto 40px}

/* ================================================================
   FOOTER
   ================================================================ */
footer.site-footer{
  padding:60px 40px 40px;
  border-top:1px solid var(--border);
  background:var(--black-2);
}
.footer-top{
  display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;
  gap:40px;
  max-width:1360px;margin:0 auto 40px;
}
.footer-brand{max-width:300px}
.footer-brand .nav-logo{margin-bottom:14px}
.footer-brand p{font-size:12px;color:var(--text);line-height:1.6}
.footer-cols{display:flex;gap:60px;flex-wrap:wrap}
.footer-col h5{
  font-family:'JetBrains Mono',monospace;
  font-size:9px;letter-spacing:.22em;
  color:var(--lime);
  text-transform:uppercase;
  margin-bottom:14px;
}
.footer-col a{
  display:block;
  font-family:'DM Sans',sans-serif;
  font-size:13px;color:var(--text);
  padding:4px 0;
  transition:color .15s ease;
}
.footer-col a:hover{color:var(--off)}
.footer-bottom{
  max-width:1360px;margin:0 auto;
  padding-top:24px;
  border-top:1px solid var(--border);
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px;
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.15em;
  color:var(--dim);
  text-transform:uppercase;
}

/* ================================================================
   REGION BADGE (shows detected region)
   ================================================================ */
.region-badge{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.18em;
  color:var(--dim);
  text-transform:uppercase;
  padding:6px 12px;
  border:1px solid var(--border);
  border-radius:20px;
  background:rgba(8,8,8,.5);
}
.region-badge::before{
  content:'';
  width:6px;height:6px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 8px var(--lime);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .8s ease,transform .8s ease}
.reveal.in{opacity:1;transform:translateY(0)}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:900px){
  section{padding:60px 20px}
  .hero{padding:100px 20px 60px;min-height:auto}
  .hero-subrow{gap:32px;margin-top:50px}
  .hero-actions{flex-direction:column}
  .btn-primary,.btn-ghost{width:100%;justify-content:center}
  .footer-top{flex-direction:column}
  .footer-cols{gap:32px}
  .industry-card{min-height:auto;padding:32px 24px}
}

/* ================================================================
   ════════════════════════════════════════════════════════════════
   V2 · DECK-DNA COMPONENTS · used exclusively by new homepage
   ════════════════════════════════════════════════════════════════
   ================================================================ */

/* ── HIDE the old site-nav on homepage · HUD takes over ── */
body.deck-mode .site-nav{display:none}

/* ── HUD · fixed indicators like deck slides ── */
.hud-logo{position:fixed;top:22px;left:28px;z-index:250;display:flex;align-items:center;gap:10px;pointer-events:auto;text-decoration:none}
.hud-logo .bars{display:flex;gap:2px;align-items:center;width:26px;height:26px;justify-content:center}
.hud-logo .bars span{display:block;width:2px;background:var(--lime);border-radius:1px;animation:barPulse 1.6s ease-in-out infinite}
.hud-logo .bars span:nth-child(1){height:8px;animation-delay:0s}
.hud-logo .bars span:nth-child(2){height:14px;animation-delay:.1s}
.hud-logo .bars span:nth-child(3){height:22px;animation-delay:.2s}
.hud-logo .bars span:nth-child(4){height:22px;animation-delay:.3s}
.hud-logo .bars span:nth-child(5){height:14px;animation-delay:.4s}
.hud-logo .bars span:nth-child(6){height:8px;animation-delay:.5s}
@keyframes barPulse{0%,100%{transform:scaleY(1);opacity:.85}50%{transform:scaleY(1.15);opacity:1}}
.hud-logo .text{font-family:'Bebas Neue',sans-serif;font-size:15px;letter-spacing:.18em;color:var(--off)}
.hud-logo .text em{color:var(--lime);font-style:normal}

.hud-stack-right{position:fixed;top:22px;right:28px;z-index:250;display:flex;gap:14px;align-items:center}
.hud-lang{display:flex;gap:0;font-family:'JetBrains Mono',monospace;font-size:9px;letter-spacing:.18em;text-transform:uppercase;border:1px solid var(--border);border-radius:2px;overflow:hidden;background:rgba(8,8,8,.6);backdrop-filter:blur(4px)}
.hud-lang button{background:transparent;color:var(--muted);border:none;padding:6px 10px;cursor:none;font-family:inherit;font-size:inherit;letter-spacing:inherit;text-transform:inherit;transition:all .15s ease}
.hud-lang button:hover{color:var(--off)}
.hud-lang button.active{background:var(--lime);color:var(--black);font-weight:500}
@media(max-width:900px){.hud-lang button{cursor:pointer}}
.hud-label{font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:.2em;color:var(--lime);text-transform:uppercase}
.hud-num{font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:.15em;color:var(--muted)}
@media(max-width:900px){.hud-label{display:none}.hud-stack-right{top:20px;right:20px;gap:10px}.hud-logo{top:20px;left:20px}}

.hud-dots{position:fixed;bottom:28px;left:50%;transform:translateX(-50%);z-index:250;display:flex;gap:7px;padding:6px 14px;background:rgba(8,8,8,.5);backdrop-filter:blur(6px);border-radius:16px;border:1px solid var(--border)}
.hud-dot{width:6px;height:6px;border-radius:50%;background:var(--muted);cursor:none;transition:all .35s cubic-bezier(.4,0,.2,1);border:none;padding:0}
.hud-dot.active{background:var(--lime);width:22px;border-radius:3px;box-shadow:0 0 10px rgba(190,255,46,.55)}
@media(max-width:900px){.hud-dot{cursor:pointer}}

.hud-hint{position:fixed;bottom:32px;right:28px;z-index:250;font-family:'JetBrains Mono',monospace;font-size:8px;letter-spacing:.18em;color:#2a2a2a;text-transform:uppercase;display:flex;align-items:center;gap:8px}
.hud-hint::before{content:'';width:18px;height:1px;background:#2a2a2a}
@media(max-width:900px){.hud-hint{display:none}}

/* ── FULL-STAGE section · 100vh centered cinematic ── */
.fs{min-height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:130px clamp(20px,6vw,80px) 110px;position:relative;scroll-margin-top:0}
.fs-inner{max-width:1240px;width:100%;position:relative;z-index:10}
.fs-center{text-align:center}
.fs-tight{padding:90px clamp(20px,6vw,80px) 90px}
@media(max-width:900px){.fs{padding:110px 20px 100px}}

/* ── DECK EYEBROW · JetBrains Mono micro-label with underline ── */
.eye{font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:.32em;text-transform:uppercase;color:var(--lime);display:inline-block;padding-bottom:6px;border-bottom:1px solid rgba(190,255,46,.28);margin-bottom:34px;line-height:1}
.eye-static{color:var(--lime);opacity:.8}

/* ── GIANT HEADLINES · deck-caliber drama ── */
.h-giant{font-family:'Bebas Neue',sans-serif;font-size:clamp(56px,10.5vw,168px);line-height:.86;letter-spacing:.005em;color:var(--off);margin-bottom:32px;text-wrap:balance}
.h-big{font-family:'Bebas Neue',sans-serif;font-size:clamp(44px,7.5vw,110px);line-height:.9;letter-spacing:.015em;color:var(--off);margin-bottom:24px;text-wrap:balance}
@media(max-width:600px){.h-giant{font-size:54px}.h-big{font-size:44px}}

/* ── LEAD PARAGRAPH · the one beat of prose per section ── */
.lead-big{font-family:'DM Sans',sans-serif;font-size:clamp(15px,1.3vw,20px);line-height:1.65;color:var(--text);max-width:740px;margin:0 auto;font-weight:300}
.lead-big strong{color:var(--off);font-weight:500}
.lead-big em{color:var(--lime);font-style:normal;font-weight:400}
.fs-center .lead-big{margin:0 auto}

/* ── LIME BAR CALLOUT · high-impact statement breaker ── */
.lime-bar{background:var(--lime);color:var(--black);padding:clamp(18px,2.5vh,28px) clamp(28px,4vw,54px);font-family:'Bebas Neue',sans-serif;font-size:clamp(22px,3.2vw,42px);letter-spacing:.035em;line-height:1.08;text-align:center;margin:44px auto;max-width:1020px;box-shadow:0 0 48px rgba(190,255,46,.12)}
.lime-bar .sub{display:block;font-family:'JetBrains Mono',monospace;font-size:clamp(9px,.9vw,11px);letter-spacing:.26em;margin-top:10px;opacity:.7;text-transform:uppercase;font-weight:500}

/* ── CIRCUIT GRID · 2px gridline gaps like deck's audit-flow ── */
.circuit{display:grid;gap:2px;background:var(--border);padding:2px;margin-top:42px}
.circuit-2{grid-template-columns:repeat(2,1fr)}
.circuit-3{grid-template-columns:repeat(3,1fr)}
.circuit-4{grid-template-columns:repeat(4,1fr)}
.circuit-5{grid-template-columns:repeat(5,1fr)}
@media(max-width:1050px){.circuit-4{grid-template-columns:repeat(2,1fr)}.circuit-5,.circuit-3{grid-template-columns:1fr}}
@media(max-width:640px){.circuit-4,.circuit-5,.circuit-2{grid-template-columns:1fr}}

.circuit-cell{background:var(--black);padding:clamp(26px,3vw,40px) clamp(22px,2.5vw,32px);position:relative;transition:all .35s cubic-bezier(.4,0,.2,1);text-align:left;display:flex;flex-direction:column;min-height:200px}
.circuit-cell.link{cursor:none;text-decoration:none;color:inherit}
@media(max-width:900px){.circuit-cell.link{cursor:pointer}}
.circuit-cell.link:hover{background:var(--mid);box-shadow:inset 0 0 0 1px var(--lime),0 0 32px rgba(190,255,46,.1)}
.circuit-cell.link:hover .cc-arrow{transform:translateX(4px);opacity:1;color:var(--lime)}
.circuit-cell .cc-num{font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:.22em;color:var(--lime);margin-bottom:20px;text-transform:uppercase}
.circuit-cell .cc-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(22px,2.7vw,38px);letter-spacing:.025em;color:var(--off);margin-bottom:14px;line-height:1.02}
.circuit-cell .cc-title em{color:var(--lime);font-style:normal}
.circuit-cell .cc-desc{font-family:'DM Sans',sans-serif;font-size:13.5px;line-height:1.58;color:var(--text);font-weight:300;flex:1}
.circuit-cell .cc-arrow{font-family:'Bebas Neue',sans-serif;font-size:14px;letter-spacing:.16em;color:var(--dim);margin-top:22px;display:inline-flex;align-items:center;gap:8px;transition:all .35s;text-transform:uppercase}

/* ── STATS ROW · deck-style big lime numbers ── */
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:var(--border);padding:2px;margin-top:52px}
.stat-cell{background:var(--black);padding:26px 20px;text-align:center}
.stat-cell .n{font-family:'Bebas Neue',sans-serif;font-size:clamp(30px,4vw,54px);color:var(--lime);line-height:1;margin-bottom:8px;letter-spacing:.01em}
.stat-cell .l{font-family:'JetBrains Mono',monospace;font-size:9px;letter-spacing:.22em;color:var(--dim);text-transform:uppercase}
@media(max-width:700px){.stats-row{grid-template-columns:repeat(2,1fr)}}

/* ── HORIZONTAL TIMELINE · 4 nodes on lime thread ── */
.htime{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative;margin-top:60px;max-width:1100px;margin-left:auto;margin-right:auto}
.htime::before{content:'';position:absolute;top:8px;left:12.5%;right:12.5%;height:1px;background:linear-gradient(90deg,transparent 0%,var(--lime) 20%,var(--lime) 80%,transparent 100%);opacity:.45;z-index:1}
.htime-node{text-align:center;padding:0 14px;position:relative;z-index:2}
.htime-dot{width:16px;height:16px;background:var(--lime);border-radius:50%;margin:0 auto 24px;position:relative;box-shadow:0 0 0 4px var(--black),0 0 14px rgba(190,255,46,.6)}
.htime-dot::after{content:'';position:absolute;inset:-5px;border:1px solid var(--lime);border-radius:50%;opacity:.4;animation:dotPulse 2.4s ease-in-out infinite}
@keyframes dotPulse{0%,100%{transform:scale(1);opacity:.4}50%{transform:scale(1.35);opacity:0}}
.htime-time{font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:.22em;color:var(--lime);margin-bottom:10px;text-transform:uppercase}
.htime-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(20px,2.2vw,26px);letter-spacing:.04em;color:var(--off);margin-bottom:8px;line-height:1.05}
.htime-desc{font-family:'DM Sans',sans-serif;font-size:12.5px;line-height:1.55;color:var(--text);font-weight:300;max-width:220px;margin:0 auto}
@media(max-width:900px){.htime{grid-template-columns:1fr 1fr;gap:44px 12px}.htime::before{display:none}}

/* ── CTA BUTTONS · bigger, more commanding than original ── */
.cta-row-v2{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:42px}
.btn-lime{background:var(--lime);color:var(--black);font-family:'Bebas Neue',sans-serif;font-size:16px;letter-spacing:.13em;padding:17px 34px;display:inline-flex;gap:10px;align-items:center;text-transform:uppercase;border:1px solid var(--lime);transition:all .3s cubic-bezier(.4,0,.2,1);cursor:none;text-decoration:none;font-weight:400}
@media(max-width:900px){.btn-lime{cursor:pointer}}
.btn-lime:hover{background:transparent;color:var(--lime);box-shadow:0 0 28px rgba(190,255,46,.32)}
.btn-lime .arr{transition:transform .3s}
.btn-lime:hover .arr{transform:translateX(4px)}

.btn-ghost-v2{background:transparent;color:var(--off);font-family:'Bebas Neue',sans-serif;font-size:16px;letter-spacing:.13em;padding:17px 34px;display:inline-flex;gap:10px;align-items:center;text-transform:uppercase;border:1px solid var(--border-hi);transition:all .3s cubic-bezier(.4,0,.2,1);cursor:none;text-decoration:none}
@media(max-width:900px){.btn-ghost-v2{cursor:pointer}}
.btn-ghost-v2:hover{border-color:var(--lime);color:var(--lime);box-shadow:inset 0 0 20px rgba(190,255,46,.08)}

/* ── FOOTER-LITE · mono deck-style signoff ── */
.fl{margin-top:80px;padding-top:38px;border-top:1px solid var(--border);font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:.22em;color:var(--dim);text-transform:uppercase;text-align:center;display:flex;gap:22px;justify-content:center;flex-wrap:wrap}
.fl span{color:var(--lime)}

/* ── HERO-SPECIFIC overrides for deck-mode homepage ── */
body.deck-mode .fs-hero{min-height:100vh;padding-top:180px;padding-bottom:220px}
body.deck-mode .fs-hero .h-giant{margin-bottom:28px}
body.deck-mode .fs-hero .lead-big{margin-bottom:0}

/* ── Scroll reveal · more dramatic than base ── */
.rv{opacity:0;transform:translateY(32px);transition:opacity .9s cubic-bezier(.25,.1,.25,1),transform .9s cubic-bezier(.25,.1,.25,1)}
.rv.visible{opacity:1;transform:translateY(0)}
.rv-d1{transition-delay:.08s}
.rv-d2{transition-delay:.16s}
.rv-d3{transition-delay:.24s}
.rv-d4{transition-delay:.32s}

/* ── Section anchor system · each .fs has a data-section for HUD sync ── */

/* ── Mobile polish for homepage ── */
@media(max-width:900px){
  .fl{font-size:9px;gap:14px;flex-direction:column}
  .cta-row-v2{gap:10px}
  .btn-lime,.btn-ghost-v2{padding:15px 28px;font-size:14px;width:100%;justify-content:center;max-width:320px}
  .eye{font-size:10px;letter-spacing:.28em;margin-bottom:26px}
  .lime-bar{margin:32px auto;padding:18px 24px}
  .circuit-cell{min-height:auto;padding:26px 22px}
  .hud-num{display:none}
  .hud-dots{padding:5px 11px;gap:6px;bottom:20px}
  .hud-dot{width:5px;height:5px}
  .hud-dot.active{width:18px}
}
