/* ==========================================================================
   GIGRADAR — MARKETING SITE DESIGN SYSTEM
   "Mission control for live events."
   ========================================================================== */

/* self-hosted fonts — no external font CDN dependency (some networks/browsers block
   fonts.googleapis.com / fonts.gstatic.com, which silently drops all typography) */
@font-face{
  font-family:'Big Shoulders'; font-style:normal; font-weight:600 800; font-display:swap;
  src:url('/assets/fonts/big-shoulders.woff2') format('woff2');
}
@font-face{
  font-family:'IBM Plex Sans'; font-style:normal; font-weight:400 700; font-display:swap;
  src:url('/assets/fonts/ibm-plex-sans.woff2') format('woff2');
}
@font-face{
  font-family:'IBM Plex Mono'; font-style:normal; font-weight:400; font-display:swap;
  src:url('/assets/fonts/ibm-plex-mono-400.woff2') format('woff2');
}
@font-face{
  font-family:'IBM Plex Mono'; font-style:normal; font-weight:500; font-display:swap;
  src:url('/assets/fonts/ibm-plex-mono-500.woff2') format('woff2');
}
@font-face{
  font-family:'IBM Plex Mono'; font-style:normal; font-weight:600; font-display:swap;
  src:url('/assets/fonts/ibm-plex-mono-600.woff2') format('woff2');
}

:root{
  /* -- surfaces: graphite, not navy-blue-scale -- */
  --bg:#0A0B0D;
  --bg-1:#121316;
  --bg-2:#181A1E;
  --bg-3:#202226;
  --panel:linear-gradient(180deg, rgba(24,26,30,0.92), rgba(10,11,13,0.92));
  --border:rgba(214,222,230,0.11);
  --border-strong:rgba(76,141,255,0.4);
  --line:rgba(214,222,230,0.08);

  /* -- text -- */
  --text:#EFF1F3;
  --text-muted:#9BA1AA;
  --text-dim:#5B6068;

  /* -- accents: electric blue leads, teal-cyan is the secondary/data signal -- */
  --cyan:#2FBFBF;
  --cyan-dim:rgba(47,191,191,0.14);
  --blue:#4C7EFF;
  --blue-dim:rgba(76,126,255,0.14);
  --safe:#3ECF8E;
  --safe-dim:rgba(62,207,142,0.14);
  --incident:#F0475C;
  --incident-dim:rgba(240,71,92,0.14);
  --purple:#9B87F5;
  --amber:#EFA33E;
  --amber-dim:rgba(239,163,62,0.14);

  /* -- type: condensed industrial display, IBM Plex workhorse body/data -- */
  --f-display:'Big Shoulders', 'Archivo Narrow', sans-serif;
  --f-body:'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  --radius:3px;
  --radius-sm:2px;
  --maxw:1240px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto;} }
html,body{margin:0;padding:0;}
body{
  background:var(--bg);
  color:var(--text-muted);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
::selection{ background:var(--cyan); color:#04121A; }

a{ color:var(--cyan); text-decoration:none; }
:focus-visible{ outline:2px solid var(--cyan); outline-offset:3px; border-radius:2px; }

h1,h2,h3,h4{
  color:var(--text);
  margin:0; letter-spacing:-0.01em; text-wrap:balance;
}
h1,h2{ font-family:var(--f-display); font-weight:700; letter-spacing:0; }
h3,h4{ font-family:var(--f-body); font-weight:600; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
img,svg{ display:block; max-width:100%; }
button{ font-family:inherit; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; position:relative; }
@media (max-width:640px){ .wrap{ padding:0 20px; } }

/* background radar-grid texture, applied per-section */
.grid-bg{
  background-image:
    linear-gradient(rgba(148,178,214,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,178,214,0.05) 1px, transparent 1px);
  background-size:56px 56px;
  background-position:center top;
}

/* ==========================================================================
   BUTTONS / BADGES
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--f-mono); font-weight:600; font-size:13px; letter-spacing:0.04em;
  text-transform:uppercase; white-space:nowrap;
  padding:13px 22px; border-radius:3px; border:1px solid transparent;
  cursor:pointer; transition:transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.btn svg{ width:14px; height:14px; flex-shrink:0; }
.btn-primary{
  background:linear-gradient(135deg, var(--cyan), var(--blue));
  color:#04121A; box-shadow:0 0 0 0 rgba(47,191,191,0);
}
.btn-primary:hover{ transform:translateY(-1px); box-shadow:0 8px 28px -8px rgba(47,191,191,0.55); }
.btn-outline{ background:transparent; border-color:var(--border-strong); color:var(--text); }
.btn-outline:hover{ background:var(--cyan-dim); border-color:var(--cyan); color:var(--cyan); transform:translateY(-1px); }
.btn-ghost{ background:transparent; border-color:transparent; color:var(--text-muted); padding:13px 8px; }
.btn-ghost:hover{ color:var(--cyan); }
.btn-sm{ padding:9px 16px; font-size:11.5px; }
.btn-block{ width:100%; }
.btn.is-active{ background:var(--cyan-dim); border-color:var(--cyan) !important; color:var(--cyan) !important; }
.btn-row{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }

.badge{
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--f-mono); font-size:11px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
  padding:6px 12px; border-radius:2px; border:1px solid var(--border);
  color:var(--text-muted); background:rgba(255,255,255,0.02);
}
.badge .dot{ width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.badge-live{ border-color:rgba(52,211,153,0.35); color:var(--safe); background:var(--safe-dim); }
.badge-live .dot{ background:var(--safe); animation:blink 1.8s ease-in-out infinite; }
.badge-roadmap{ border-color:rgba(245,165,36,0.35); color:var(--amber); background:var(--amber-dim); }
.badge-roadmap .dot{ background:var(--amber); }
.badge-demo{ border-color:rgba(139,124,246,0.35); color:var(--purple); background:rgba(139,124,246,0.12); }
.badge-demo .dot{ background:var(--purple); }
.badge-incident{ border-color:rgba(240,71,92,0.4); color:var(--incident); background:var(--incident-dim); }
.badge-incident .dot{ background:var(--incident); animation:blink 1s ease-in-out infinite; }
@keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:0.3;} }
@media (prefers-reduced-motion:reduce){ .badge .dot{ animation:none; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--f-mono); font-size:12px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:16px;
}
.eyebrow::before{ content:""; width:22px; height:1px; background:var(--cyan); opacity:0.7; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:rgba(6,9,17,0.72); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  transition:background 200ms ease, border-color 200ms ease;
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; padding:14px 28px; }
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-mark{ width:30px; height:30px; color:var(--cyan); }
.brand-word{
  font-family:var(--f-display); font-weight:700; font-size:15px; letter-spacing:0.08em;
  color:var(--text);
}
.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  font-family:var(--f-mono); font-size:11px; font-weight:600; letter-spacing:0.09em; text-transform:uppercase;
  color:var(--text-muted); padding:9px 14px; border-radius:2px; transition:color 150ms, background 150ms;
}
.nav-links a:hover, .nav-links a[aria-current="page"]{ color:var(--cyan); background:rgba(255,255,255,0.04); }
.nav-cta{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:36px; height:36px; background:none; border:1px solid var(--border); border-radius:2px; cursor:pointer;
}
.nav-toggle span{ display:block; width:16px; height:1.5px; background:var(--text); margin:0 auto; transition:transform 200ms, opacity 200ms; }
.nav-mobile{
  display:none; flex-direction:column; padding:8px 20px 22px; border-top:1px solid var(--line);
  background:var(--bg-1);
}
.nav-mobile a{ padding:13px 4px; font-family:var(--f-mono); font-size:12.5px; font-weight:600; letter-spacing:0.07em; text-transform:uppercase; color:var(--text-muted); border-bottom:1px solid var(--line); }
.nav-mobile a:last-of-type{ border-bottom:none; }
.nav-mobile .btn{ margin-top:14px; }

@media (max-width:980px){
  .nav-links{ display:none; }
  .nav-cta .btn-primary{ display:none; }
  .nav-toggle{ display:flex; }
  .nav.is-open .nav-mobile{ display:flex; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section{ position:relative; }
.section{ padding:100px 0; border-bottom:1px solid var(--line); }
.section-tight{ padding:72px 0; }
@media (max-width:760px){ .section{ padding:64px 0; } .section-tight{ padding:52px 0; } }
.section-head{ max-width:680px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(32px,4.6vw,54px); line-height:1; }
.section-head .sub{ margin-top:18px; font-size:16.5px; color:var(--text-muted); max-width:56ch; }
.section-head.center .sub{ margin-left:auto; margin-right:auto; }

.panel-tint{ background:var(--bg-1); border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin-top:-1px; }

[data-reveal]{ opacity:0; transform:translateY(22px); transition:opacity 700ms ease, transform 700ms ease; }
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }
[data-reveal-delay="1"]{ transition-delay:90ms; }
[data-reveal-delay="2"]{ transition-delay:180ms; }
[data-reveal-delay="3"]{ transition-delay:270ms; }
[data-reveal-delay="4"]{ transition-delay:360ms; }
@media (prefers-reduced-motion:reduce){ [data-reveal]{ opacity:1; transform:none; transition:none; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; padding:172px 0 100px; overflow:hidden;
  background:var(--bg);
}
.hero-photo{
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center 30%;
  filter:saturate(0.75) brightness(0.55);
}
.hero-photo::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(6,9,17,0.97) 0%, rgba(6,9,17,0.88) 32%, rgba(6,9,17,0.55) 58%, rgba(6,9,17,0.82) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 22%, transparent 78%, var(--bg) 100%);
}
.hero::before{
  content:""; position:absolute; inset:0; z-index:1;
  background-image:linear-gradient(rgba(148,178,214,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(148,178,214,0.05) 1px, transparent 1px);
  background-size:52px 52px; mask-image:radial-gradient(ellipse 90% 80% at 60% 25%, black 30%, transparent 78%);
  pointer-events:none;
}
.radar-sweep{
  position:absolute; top:-30%; right:-18%; width:900px; height:900px; pointer-events:none; z-index:1;
  background:conic-gradient(from 0deg, rgba(47,191,191,0.16), transparent 26%);
  border-radius:50%; opacity:0.6;
  animation:sweep 7s linear infinite;
}
@keyframes sweep{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion:reduce){ .radar-sweep{ animation:none; } }
@media (max-width:900px){ .radar-sweep{ display:none; } }

.hero-grid{ display:grid; grid-template-columns:1fr; gap:54px; align-items:center; position:relative; z-index:2; }
.hero h1{
  font-size:clamp(42px,7.4vw,98px); line-height:0.96; margin-bottom:26px; max-width:14ch;
}
.hero h1 .accent{ color:var(--cyan); }
.hero .lede{ font-size:18px; color:var(--text-muted); max-width:52ch; margin-bottom:34px; }
.hero .lede strong{ color:var(--text); font-weight:600; }

.hero-console{
  position:relative; border-radius:6px; border:1px solid var(--border);
  background:linear-gradient(160deg, rgba(19,28,51,0.85), rgba(8,12,22,0.92));
  box-shadow:0 40px 90px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow:hidden;
}
.console-topbar{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 18px; border-bottom:1px solid var(--line);
  font-family:var(--f-mono); font-size:11px; letter-spacing:0.06em; color:var(--text-dim);
}
.console-topbar .dots{ display:flex; gap:6px; }
.console-topbar .dots span{ width:8px; height:8px; border-radius:50%; background:var(--border); }
.console-stage{ position:relative; aspect-ratio:16/12; }
@media (max-width:640px){ .console-stage{ aspect-ratio:4/3.6; } }

.venue-map{ position:absolute; inset:0; width:100%; height:100%; }
.venue-map .zone{ fill:rgba(47,191,191,0.05); stroke:rgba(47,191,191,0.22); stroke-width:1; stroke-dasharray:3 3; }
.venue-map .zone-hot{ fill:rgba(240,71,92,0.08); stroke:rgba(240,71,92,0.35); }
.venue-map .stage{ fill:rgba(148,178,214,0.1); stroke:rgba(148,178,214,0.25); }
.venue-map .path{ fill:none; stroke:rgba(148,178,214,0.18); stroke-width:1; }
.marker{ transform-box:fill-box; transform-origin:center; }
.marker circle.ring{ fill:none; stroke-width:1.4; opacity:0.55; animation:ping 2.4s ease-out infinite; }
.marker.cyan circle.ring{ stroke:var(--cyan); } .marker.cyan circle.core{ fill:var(--cyan); }
.marker.green circle.ring{ stroke:var(--safe); } .marker.green circle.core{ fill:var(--safe); }
.marker.red circle.ring{ stroke:var(--incident); } .marker.red circle.core{ fill:var(--incident); }
.marker.purple circle.ring{ stroke:var(--purple); } .marker.purple circle.core{ fill:var(--purple); }
@keyframes ping{ 0%{ r:4; opacity:0.6; } 100%{ r:16; opacity:0; } }
@media (prefers-reduced-motion:reduce){ .marker circle.ring{ animation:none; opacity:0.25; } }

.hud-card{
  position:absolute; background:rgba(9,13,24,0.86); border:1px solid var(--border); border-radius:3px;
  padding:10px 13px; backdrop-filter:blur(6px); box-shadow:0 12px 30px -14px rgba(0,0,0,0.55);
}
.hud-card .label{ font-family:var(--f-mono); font-size:9.5px; letter-spacing:0.09em; color:var(--text-dim); text-transform:uppercase; margin-bottom:3px; }
.hud-card .value{ font-family:var(--f-mono); font-size:19px; font-weight:600; color:var(--text); }
.hud-card .value.cyan{ color:var(--cyan); } .hud-card .value.green{ color:var(--safe); } .hud-card .value.red{ color:var(--incident); }
.hud-stack{ position:absolute; top:16px; left:16px; display:flex; flex-direction:column; gap:8px; z-index:3; }
.hud-stack .hud-card{ position:static; }
.hud-stat-row{ position:absolute; bottom:16px; left:16px; right:16px; display:flex; gap:8px; flex-wrap:wrap; z-index:3; }
.hud-stat-row .hud-card{ flex:1; min-width:84px; position:static; }

.demo-flag{
  position:absolute; top:14px; right:16px; z-index:4;
}

.hero-proof{ display:flex; gap:28px; flex-wrap:wrap; margin-top:38px; }
.hero-proof .proof-item{ font-family:var(--f-mono); font-size:12px; color:var(--text-dim); letter-spacing:0.03em; }
.hero-proof .proof-item b{ color:var(--text-muted); font-weight:500; }

@media (min-width:1040px){
  .hero-grid{ grid-template-columns:1fr 1fr; gap:60px; }
}

/* ==========================================================================
   TIMELINE / SCENARIO STORY
   ========================================================================== */
.story{ padding-top:20px; }
.story-timeline{ display:grid; grid-template-columns:1fr; gap:0; max-width:760px; }
.story-step{
  display:grid; grid-template-columns:88px 1fr; gap:22px; padding:26px 0; border-left:1px solid var(--line); padding-left:26px; margin-left:8px; position:relative;
}
.story-step::before{
  content:""; position:absolute; left:-6px; top:32px; width:11px; height:11px; border-radius:50%;
  background:var(--bg); border:2px solid var(--text-dim);
}
.story-step.is-active::before{ border-color:var(--cyan); background:var(--cyan); box-shadow:0 0 0 5px var(--cyan-dim); }
.story-step.is-incident::before{ border-color:var(--incident); background:var(--incident); box-shadow:0 0 0 5px var(--incident-dim); }
.story-time{ font-family:var(--f-mono); font-size:14px; color:var(--text-dim); font-weight:600; padding-top:2px; }
.story-step.is-active .story-time, .story-step.is-incident .story-time{ color:var(--text); }
.story-text{ font-size:16px; color:var(--text-muted); }
.story-text strong{ color:var(--text); }
.story-questions{
  display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:10px;
}
@media (max-width:560px){ .story-questions{ grid-template-columns:1fr; } }
.story-questions span{
  font-family:var(--f-mono); font-size:12px; letter-spacing:0.05em; color:var(--cyan);
  border:1px solid var(--border-strong); background:var(--cyan-dim); border-radius:2px; padding:8px 11px;
}
.story-resolve{
  margin-top:36px; padding:30px 0 0; border-top:1px solid var(--border-strong);
}
.story-resolve .eyebrow{ margin-bottom:10px; }
.story-resolve p{ color:var(--text-muted); font-size:15.5px; max-width:60ch; }
.story-resolve p strong{ color:var(--text); }

/* ==========================================================================
   BLIND SPOT DIAGRAM
   ========================================================================== */
.diagram-wrap{
  border:1px solid var(--border); border-radius:var(--radius); background:var(--bg-1); padding:36px 28px; overflow:hidden;
}
.blindspot-grid{ display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; }
.bs-node{
  display:flex; flex-direction:column; align-items:center; gap:10px; width:118px; text-align:center;
}
.bs-node .icon{
  width:52px; height:52px; border-radius:4px; display:flex; align-items:center; justify-content:center;
  background:var(--bg-2); border:1px solid var(--border); color:var(--text-dim);
}
.bs-node .icon svg{ width:24px; height:24px; }
.bs-node span{ font-family:var(--f-mono); font-size:11.5px; color:var(--text-muted); letter-spacing:0.02em; }
.bs-link{ width:30px; height:1px; background:repeating-linear-gradient(90deg, var(--incident) 0 6px, transparent 6px 11px); opacity:0.6; align-self:center; margin-top:-24px; }
@media (max-width:760px){ .bs-link{ display:none; } }

.connected-grid{ display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:wrap; position:relative; }
.connected-grid .bs-node .icon{ border-color:var(--border-strong); color:var(--cyan); background:var(--cyan-dim); }
.center-node{ width:64px; height:64px; border-radius:4px; background:linear-gradient(135deg, var(--cyan), var(--blue)); display:flex; align-items:center; justify-content:center; color:#04121A; font-family:var(--f-mono); font-weight:700; font-size:10px; letter-spacing:0.03em; text-align:center; box-shadow:0 0 40px -8px rgba(47,191,191,0.6); }
.cn-link{ width:30px; height:1px; background:var(--cyan); opacity:0.5; align-self:center; margin-top:-40px; }
@media (max-width:760px){ .cn-link{ display:none; } }

.blindspot-toggle{ display:flex; justify-content:center; margin-top:28px; }
.bs-view{ display:none; }
.bs-view.is-active{ display:block; }

/* ==========================================================================
   COMMAND DASHBOARD (platform section)
   ========================================================================== */
.dashboard{
  border-radius:6px; border:1px solid var(--border);
  background:linear-gradient(160deg, rgba(19,28,51,0.85), rgba(8,12,22,0.95));
  overflow:hidden; box-shadow:0 50px 110px -40px rgba(0,0,0,0.65);
}
.dashboard-header{
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  padding:20px 26px; border-bottom:1px solid var(--line);
}
.dashboard-header .dh-left{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.dashboard-header h3{ font-family:var(--f-mono); font-size:13px; letter-spacing:0.1em; color:var(--text); text-transform:uppercase; }
.dashboard-header .dh-location{ font-family:var(--f-mono); font-size:12px; color:var(--text-dim); }

.dashboard-stats{
  display:grid; grid-template-columns:repeat(4,1fr); border-bottom:1px solid var(--line);
}
@media (max-width:700px){ .dashboard-stats{ grid-template-columns:repeat(2,1fr); } }
.dstat{ padding:20px 22px; border-right:1px solid var(--line); }
.dstat:last-child{ border-right:none; }
.dstat .label{ font-family:var(--f-mono); font-size:10.5px; letter-spacing:0.08em; color:var(--text-dim); text-transform:uppercase; margin-bottom:8px; }
.dstat .value{ font-family:var(--f-display); font-size:30px; font-weight:600; color:var(--text); font-variant-numeric:tabular-nums; }
.dstat .value.cyan{ color:var(--cyan); } .dstat .value.green{ color:var(--safe); } .dstat .value.red{ color:var(--incident); }

.dashboard-body{ display:grid; grid-template-columns:1.3fr 1fr; }
@media (max-width:860px){ .dashboard-body{ grid-template-columns:1fr; } }
.dashboard-map{ position:relative; border-right:1px solid var(--line); min-height:340px; }
@media (max-width:860px){ .dashboard-map{ border-right:none; border-bottom:1px solid var(--line); } }
.dashboard-map svg{ position:absolute; inset:0; width:100%; height:100%; }
.map-legend{ position:absolute; bottom:14px; left:14px; display:flex; gap:14px; flex-wrap:wrap; background:rgba(9,13,24,0.8); border:1px solid var(--border); border-radius:3px; padding:8px 12px; }
.map-legend span{ display:flex; align-items:center; gap:6px; font-family:var(--f-mono); font-size:10.5px; color:var(--text-dim); }
.map-legend i{ width:8px; height:8px; border-radius:50%; display:inline-block; }

.incident-feed{ padding:18px 22px; max-height:400px; overflow:auto; }
.incident-feed h4{ font-family:var(--f-mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-dim); margin-bottom:14px; }
.feed-item{ display:flex; gap:12px; padding:11px 0; border-bottom:1px solid var(--line); }
.feed-item:last-child{ border-bottom:none; }
.feed-time{ font-family:var(--f-mono); font-size:11.5px; color:var(--text-dim); flex-shrink:0; width:44px; padding-top:1px; }
.feed-dot{ width:7px; height:7px; border-radius:50%; margin-top:6px; flex-shrink:0; }
.feed-dot.cyan{ background:var(--cyan); } .feed-dot.green{ background:var(--safe); } .feed-dot.red{ background:var(--incident); } .feed-dot.purple{ background:var(--purple); }
.feed-text{ font-size:13.5px; color:var(--text-muted); }
.feed-text b{ color:var(--text); font-weight:600; }

/* ==========================================================================
   SCENARIO CARDS
   ========================================================================== */
.scenario-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:940px){ .scenario-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .scenario-grid{ grid-template-columns:1fr; } }
.scenario-card{
  border:1px solid var(--border); border-radius:var(--radius); padding:28px 24px;
  background:var(--bg-1); transition:border-color 200ms, transform 200ms, background 200ms;
  display:flex; flex-direction:column; gap:14px;
}
.scenario-card:hover{ border-color:var(--border-strong); background:var(--bg-2); transform:translateY(-3px); }
.scenario-card .num{ font-family:var(--f-mono); font-size:12px; color:var(--cyan); letter-spacing:0.08em; }
.scenario-card h3{ font-size:20px; }
.scenario-card .q{ font-size:14.5px; color:var(--text-muted); }
.scenario-card .q em{ color:var(--text); font-style:normal; }
.scenario-card .link{ margin-top:auto; font-family:var(--f-mono); font-size:12px; color:var(--cyan); letter-spacing:0.04em; display:flex; align-items:center; gap:6px; }

.scenario-detail{
  display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center;
  padding:56px 0; border-bottom:1px solid var(--line);
}
@media (max-width:900px){ .scenario-detail{ grid-template-columns:1fr; gap:32px; } }
.scenario-detail:last-child{ border-bottom:none; }
.scenario-detail.reverse .sd-visual{ order:-1; }
@media (max-width:900px){ .scenario-detail.reverse .sd-visual{ order:0; } }
.sd-num{ font-family:var(--f-mono); font-size:13px; color:var(--cyan); letter-spacing:0.1em; margin-bottom:14px; display:block; }
.sd-visual{
  border:1px solid var(--border); border-radius:var(--radius); background:var(--bg-1); padding:32px; min-height:220px;
  display:flex; align-items:center; justify-content:center;
}
.sd-visual.sd-photo{
  position:relative; overflow:hidden; padding:0; min-height:340px; background-size:cover; background-position:center;
}
.sd-visual.sd-photo::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(200deg, rgba(6,9,17,0.05) 0%, rgba(6,9,17,0.55) 60%, rgba(6,9,17,0.9) 100%);
}
.sd-visual.sd-photo .sd-photo-chip{
  position:relative; z-index:1; align-self:flex-end; margin:0 18px 18px auto;
}
.sd-visual.sd-photo{ align-items:flex-end; justify-content:flex-start; }
.sd-question{
  margin-top:18px; padding:16px 18px; border-radius:3px; border:1px solid var(--border-strong); background:var(--cyan-dim);
  font-size:14.5px; color:var(--text);
}
.sd-list{ margin-top:16px; display:flex; flex-direction:column; gap:9px; }
.sd-list li{ display:flex; gap:10px; font-size:14.5px; color:var(--text-muted); }
.sd-list li::before{ content:"—"; color:var(--cyan); flex-shrink:0; }

/* ==========================================================================
   MESH / CONNECTIVITY COMPARE
   ========================================================================== */
.mesh-compare{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
@media (max-width:820px){ .mesh-compare{ grid-template-columns:1fr; } }
.mesh-panel{ border:1px solid var(--border); border-radius:var(--radius); padding:30px 26px; background:var(--bg-1); }
.mesh-panel h4{ font-family:var(--f-mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-dim); margin-bottom:22px; }
.chain{ display:flex; flex-direction:column; gap:10px; align-items:stretch; }
.chain-node{
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:14px; border-radius:3px; border:1px solid var(--border); background:var(--bg-2);
  font-family:var(--f-mono); font-size:13px; color:var(--text-muted);
}
.chain-arrow{ text-align:center; color:var(--text-dim); font-size:14px; }
.mesh-net{ display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.mesh-device{
  aspect-ratio:1; border-radius:3px; border:1px solid var(--border-strong); background:var(--cyan-dim);
  display:flex; align-items:center; justify-content:center; font-family:var(--f-mono); font-size:10.5px; color:var(--cyan);
  position:relative;
}
.mesh-device::after{ content:""; position:absolute; inset:-1px; border-radius:3px; box-shadow:0 0 0 0 rgba(47,191,191,0.4); animation:mesh-pulse 3s ease-in-out infinite; }
.mesh-device:nth-child(2)::after{ animation-delay:0.4s; } .mesh-device:nth-child(3)::after{ animation-delay:0.8s; } .mesh-device:nth-child(4)::after{ animation-delay:1.2s; }
.mesh-device:nth-child(5)::after{ animation-delay:1.6s; } .mesh-device:nth-child(6)::after{ animation-delay:2s; } .mesh-device:nth-child(7)::after{ animation-delay:2.4s; } .mesh-device:nth-child(8)::after{ animation-delay:2.8s; }
@keyframes mesh-pulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(47,191,191,0.35); } 50%{ box-shadow:0 0 0 6px rgba(47,191,191,0); } }
@media (prefers-reduced-motion:reduce){ .mesh-device::after{ animation:none; } }
.mesh-roadmap-note{ margin-top:18px; font-size:13px; color:var(--text-dim); }

/* ==========================================================================
   GRID / TILES (capability lists, event types, trust)
   ========================================================================== */
.tile-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
@media (max-width:900px){ .tile-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .tile-grid{ grid-template-columns:1fr; } }

.event-tile{
  position:relative; border-radius:var(--radius); border:1px solid var(--border); overflow:hidden;
  padding:22px 20px; min-height:220px; display:flex; flex-direction:column; justify-content:flex-end; gap:4px;
  background-size:cover; background-position:center;
  transition:transform 220ms ease, border-color 220ms ease;
}
.event-tile::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(200deg, rgba(6,9,17,0.15) 10%, rgba(6,9,17,0.82) 78%, rgba(6,9,17,0.94) 100%);
  filter:saturate(0.8);
  transition:background 220ms ease;
}
.event-tile:hover{ transform:translateY(-4px); border-color:var(--border-strong); }
.event-tile:hover::before{ background:linear-gradient(200deg, rgba(8,20,28,0.1) 10%, rgba(6,9,17,0.7) 75%, rgba(6,9,17,0.9) 100%); }
.event-tile > *{ position:relative; z-index:1; }
.event-tile h4{ font-size:18px; }
.event-tile p{ font-size:12.5px; color:var(--text-muted); font-family:var(--f-mono); }
.tile-grid.tile-grid-3{ grid-template-columns:repeat(3,1fr); }
@media (max-width:900px){ .tile-grid.tile-grid-3{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .tile-grid.tile-grid-3{ grid-template-columns:1fr; } }
.tile-grid .event-tile:nth-child(3n+1){ min-height:260px; }
@media (max-width:900px){ .tile-grid .event-tile:nth-child(3n+1){ min-height:220px; } }

.capability-grid{
  display:grid; grid-template-columns:repeat(2,1fr);
  border-top:1px solid var(--line); border-left:1px solid var(--line);
}
@media (max-width:760px){ .capability-grid{ grid-template-columns:1fr; } }
.capability{
  display:flex; gap:18px; padding:32px 30px;
  border-right:1px solid var(--line); border-bottom:1px solid var(--line);
}
.capability .cap-icon{
  flex-shrink:0; width:20px; height:20px; margin-top:3px;
  display:flex; align-items:center; justify-content:center; color:var(--cyan);
}
.capability .cap-icon svg{ width:20px; height:20px; }
.capability h4{ font-size:17px; margin-bottom:8px; font-weight:600; }
.capability p{ font-size:14.5px; color:var(--text-muted); }

/* trust grid — spec-table treatment, not floating cards */
.trust-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line); border-left:1px solid var(--line);
}
@media (max-width:820px){ .trust-grid{ grid-template-columns:1fr; } }
.trust-item{ padding:34px 30px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-item .ti-icon{ width:20px; height:20px; display:flex; align-items:center; justify-content:center; color:var(--cyan); margin-bottom:20px; }
.trust-item .ti-icon svg{ width:20px; height:20px; }
.trust-item h4{ font-size:17px; margin-bottom:10px; font-weight:600; }
.trust-item p{ font-size:14.5px; color:var(--text-muted); }

/* ==========================================================================
   CTA / PILOT
   ========================================================================== */
.cta-band{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--bg-1);
  padding:56px 48px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
@media (max-width:760px){ .cta-band{ padding:40px 28px; flex-direction:column; align-items:flex-start; } }
.cta-band h2{ font-size:clamp(24px,3.4vw,34px); max-width:22ch; }
.cta-band p{ color:var(--text-muted); margin-top:10px; max-width:48ch; }

/* ==========================================================================
   FORM (demo request)
   ========================================================================== */
.form-panel{ border:1px solid var(--border); border-radius:var(--radius); background:var(--bg-1); padding:34px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.field label{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:0.05em; text-transform:uppercase; color:var(--text-dim); }
.field input, .field select, .field textarea{
  background:var(--bg-2); border:1px solid var(--border); border-radius:3px; color:var(--text);
  padding:12px 14px; font-family:var(--f-body); font-size:14.5px; width:100%;
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible{ outline:none; border-color:var(--cyan); box-shadow:0 0 0 3px var(--cyan-dim); }
.field textarea{ resize:vertical; min-height:100px; }
.form-note{ font-size:12.5px; color:var(--text-dim); margin-top:14px; }
.form-confirm{
  display:none; text-align:center; padding:40px 20px;
}
.form-confirm.is-active{ display:block; }
.form-confirm .fc-icon{
  width:56px; height:56px; border-radius:50%; background:var(--safe-dim); border:1px solid rgba(52,211,153,0.4);
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px; color:var(--safe);
}
.form-confirm .fc-icon svg{ width:26px; height:26px; }
.form-confirm h3{ font-size:22px; margin-bottom:10px; }
.form-confirm p{ color:var(--text-muted); max-width:44ch; margin:0 auto; }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-hero{
  position:relative; padding:170px 0 84px; border-bottom:1px solid var(--line); overflow:hidden;
  background:var(--bg);
}
.page-hero.has-photo{ padding:210px 0 90px; }
.page-hero-photo{
  position:absolute; inset:0; z-index:0; background-size:cover; background-position:center;
  filter:saturate(0.7) brightness(0.42);
}
.page-hero-photo::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(6,9,17,0.95) 0%, rgba(6,9,17,0.75) 42%, rgba(6,9,17,0.4) 75%, rgba(6,9,17,0.85) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 18%, transparent 85%, var(--bg) 100%);
}
.page-hero > .wrap{ position:relative; z-index:2; }
.page-hero h1{ font-size:clamp(32px,5vw,56px); line-height:1.05; max-width:20ch; margin-bottom:18px; }
.page-hero .lede{ font-size:17px; color:var(--text-muted); max-width:56ch; }

/* ==========================================================================
   PROSE (legal pages)
   ========================================================================== */
.prose{ max-width:70ch; }
.prose .updated{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:0.05em; color:var(--text-dim); margin-bottom:30px; display:block; }
.prose h2{ font-family:var(--f-mono); font-size:12.5px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--cyan); margin:34px 0 13px; padding-bottom:9px; border-bottom:1px solid var(--line); }
.prose h2:first-of-type{ margin-top:0; }
.prose p, .prose li{ font-size:14.5px; color:var(--text-muted); margin-bottom:11px; }
.prose ul{ padding-left:20px; margin:0 0 15px; }
.prose li{ list-style:disc; }
.prose strong{ color:var(--text); }
.prose a{ text-decoration:underline; text-underline-offset:2px; }
.provider-box{ background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-sm); padding:16px 18px; font-size:13.5px; margin-bottom:24px; }
.callout{ border-radius:var(--radius-sm); padding:20px 22px; margin:26px 0; background:var(--amber-dim); border:1px solid rgba(245,165,36,0.35); }
.callout-title{ display:flex; align-items:center; gap:9px; font-family:var(--f-display); font-size:16px; color:var(--text); margin-bottom:10px; font-weight:600; }
.callout .warn-dot{ width:9px; height:9px; border-radius:50%; background:var(--amber); flex-shrink:0; animation:blink 1.8s ease-in-out infinite; }
@media (prefers-reduced-motion:reduce){ .callout .warn-dot{ animation:none; } }
.callout p, .callout li{ color:var(--text-muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ padding:64px 0 0; }
.footer-grid{
  display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:32px; padding-bottom:48px; border-bottom:1px solid var(--line);
}
@media (max-width:900px){ .footer-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand p{ font-size:13.5px; color:var(--text-dim); margin-top:12px; max-width:26ch; }
.btn-playstore{ margin-top:18px; }
.btn-playstore svg{ width:15px; height:15px; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{ width:34px; height:34px; border-radius:3px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--text-muted); }
.footer-social a:hover{ color:var(--cyan); border-color:var(--border-strong); }
.footer-col h3{ font-family:var(--f-mono); font-size:11px; font-weight:600; letter-spacing:0.09em; text-transform:uppercase; color:var(--text); margin-bottom:18px; }
.footer-col a{
  display:block; font-family:var(--f-mono); font-size:12px; letter-spacing:0.02em;
  color:var(--text-dim); padding:7px 0;
}
.footer-col a:hover{ color:var(--cyan); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; padding:24px 0 40px; }
.footer-bottom p{ font-family:var(--f-mono); font-size:11px; color:var(--text-dim); letter-spacing:0.02em; }

/* ==========================================================================
   MISC
   ========================================================================== */
.divider-label{ text-align:center; font-family:var(--f-mono); font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-dim); margin:36px 0; display:flex; align-items:center; gap:16px; }
.divider-label::before, .divider-label::after{ content:""; flex:1; height:1px; background:var(--line); }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
@media (max-width:860px){ .two-col{ grid-template-columns:1fr; gap:36px; } }

.stat-strip{ display:flex; gap:40px; flex-wrap:wrap; }
.stat-strip .s{ }
.stat-strip .s .v{ font-family:var(--f-display); font-size:32px; color:var(--text); font-weight:600; }
.stat-strip .s .l{ font-family:var(--f-mono); font-size:11.5px; color:var(--text-dim); letter-spacing:0.04em; margin-top:4px; }

.numbered-list{ display:flex; flex-direction:column; gap:22px; }
.numbered-list li{ display:flex; gap:18px; }
.numbered-list .n{ font-family:var(--f-mono); font-size:13px; color:var(--cyan); border:1px solid var(--border-strong); border-radius:50%; width:30px; height:30px; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.numbered-list .t h4{ font-size:16px; margin-bottom:5px; } .numbered-list .t p{ font-size:14px; color:var(--text-muted); }

.icon-btn-list{ display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
