/* ============ TOKENS ============ */
:root {
  --bg: #05060a;
  --bg-alt: #080a12;
  --panel: #0a0e18;
  --panel-line: #1a2338;
  --orange: #f48120;
  --amber: #faad3f;
  --cyan: #00e5ff;
  --magenta: #ff2ec4;
  --green: #34ff9a;
  --text: #e8ecf4;
  --muted: #9aa3b8;
  --dim: #5c6478;
  --font-display: 'Orbitron', 'Rajdhani', sans-serif;
  --font-body: 'Rajdhani', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --header-h: 68px;
  --glow-orange: 0 0 8px rgba(244,129,32,.75), 0 0 28px rgba(244,129,32,.35);
  --glow-cyan: 0 0 8px rgba(0,229,255,.75), 0 0 28px rgba(0,229,255,.3);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  overflow-x: hidden;
}
::selection { background: var(--orange); color: #000; }
.mono { font-family: var(--font-mono); }
.mono-dim { font-family: var(--font-mono); color: var(--muted); font-size: .8em; }
.neon-orange { color: var(--orange); text-shadow: var(--glow-orange); font-style: normal; }
.neon-cyan { color: var(--cyan); text-shadow: var(--glow-cyan); font-style: normal; }
.neon-magenta { color: var(--magenta); text-shadow: 0 0 8px rgba(255,46,196,.7), 0 0 26px rgba(255,46,196,.3); }
.neon-green { color: var(--green); text-shadow: 0 0 8px rgba(52,255,154,.7); }

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 300;
  background: var(--orange); color: #000; padding: 10px 16px;
  font-family: var(--font-mono); font-size: 13px; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  box-shadow: 0 0 12px rgba(0,229,255,.5);
}

/* ============ GLOBAL OVERLAYS ============ */
.crt-overlay {
  position: fixed; inset: 0; z-index: 250; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.028) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.grain-overlay {
  position: fixed; inset: -100px; z-index: 249; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0,0); } 25% { transform: translate(-30px,20px); }
  50% { transform: translate(20px,-25px); } 75% { transform: translate(-15px,-10px); }
  100% { transform: translate(0,0); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; position: relative;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: 14px 26px; border: 1px solid transparent;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #d96a10);
  color: #0a0500;
  box-shadow: 0 0 18px rgba(244,129,32,.45), inset 0 0 12px rgba(255,255,255,.15);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(244,129,32,.8), inset 0 0 16px rgba(255,255,255,.25);
}
.btn-ghost {
  background: rgba(0,229,255,.05); color: var(--cyan);
  border-color: rgba(0,229,255,.5);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(0,229,255,.14);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-block { display: block; text-align: center; margin-top: auto; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(5,6,10,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244,129,32,.25);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(244,129,32,.18); }
.header-inner {
  max-width: 1400px; margin: 0 auto; height: var(--header-h);
  display: flex; align-items: center; gap: 28px; padding: 0 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 34px; width: auto; display: block; filter: drop-shadow(0 0 6px rgba(244,129,32,.5)); }
.main-nav { display: flex; gap: 4px; margin-left: 12px; }
.nav-link {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  padding: 8px 14px; position: relative; transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 1px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .25s; box-shadow: var(--glow-cyan);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.under-attack {
  font-family: var(--font-mono); font-size: 12px; color: var(--magenta);
  text-decoration: none; display: flex; align-items: center; gap: 7px;
  letter-spacing: .06em;
}
.under-attack:hover { text-shadow: 0 0 10px rgba(255,46,196,.8); }
.attack-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--magenta);
  box-shadow: 0 0 8px var(--magenta); animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.login-link {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em;
  color: var(--text); text-decoration: none; text-transform: uppercase;
}
.login-link:hover { color: var(--cyan); }
.header-scanline {
  position: absolute; bottom: -1px; left: 0; height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), transparent);
  background-size: 40% 100%; background-repeat: no-repeat;
  animation: scan-sweep 6s linear infinite; opacity: .7;
}
@keyframes scan-sweep { from { background-position: -40% 0; } to { background-position: 140% 0; } }

.menu-toggle {
  display: none; background: none; border: 1px solid var(--panel-line);
  width: 42px; height: 38px; cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; background: var(--orange);
  transition: transform .25s, opacity .2s; box-shadow: 0 0 6px rgba(244,129,32,.6);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 190;
  background: rgba(5,6,10,.97); border-bottom: 1px solid var(--orange);
  padding: 20px 24px 28px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  font-family: var(--font-mono); font-size: 16px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text); text-decoration: none;
  padding: 13px 6px; border-bottom: 1px solid var(--panel-line);
}
.mobile-link:hover { color: var(--cyan); padding-left: 12px; transition: padding .2s; }
.mobile-link-alert { color: var(--magenta); }
.mobile-cta { margin-top: 16px; text-align: center; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 40px) 24px 60px;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 60% at 50% 110%, rgba(244,129,32,.14), transparent 60%),
              radial-gradient(ellipse 60% 45% at 80% 0%, rgba(0,229,255,.07), transparent 60%),
              var(--bg);
}
#net-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-grid-floor {
  position: absolute; left: -20%; right: -20%; bottom: -4%; height: 42%;
  background-image:
    linear-gradient(rgba(244,129,32,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,129,32,.35) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(62deg);
  transform-origin: bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,.9), transparent 85%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.9), transparent 85%);
  animation: grid-flow 3.2s linear infinite;
  pointer-events: none;
}
@keyframes grid-flow { from { background-position-y: 0; } to { background-position-y: 60px; } }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: 48px; align-items: center;
}
.conf-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .05em;
  color: var(--amber); text-decoration: none;
  border: 1px solid rgba(250,173,63,.4); padding: 8px 14px;
  background: rgba(250,173,63,.06); margin-bottom: 28px;
  transition: box-shadow .2s;
}
.conf-chip strong { color: var(--orange); }
.conf-chip:hover { box-shadow: 0 0 16px rgba(250,173,63,.35); }
.chip-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 8px var(--amber); animation: pulse-dot 2s infinite;
}
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 1.08; letter-spacing: .01em;
  text-transform: uppercase; margin-bottom: 26px;
}
.hero-line { display: block; }
.hero-sub {
  font-size: clamp(18px, 1.6vw, 23px); color: var(--muted);
  margin-bottom: 34px; max-width: 560px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13px; color: var(--dim); }
.hero-hud { position: relative; z-index: 2; display: flex; justify-content: flex-end; }
.hud-panel {
  background: rgba(8,10,18,.72); border: 1px solid var(--panel-line);
  padding: 22px 24px; min-width: 300px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  position: relative;
}
.hud-corner::before, .hud-corner::after,
.hud-frame::before, .hud-frame::after {
  content: ''; position: absolute; width: 14px; height: 14px; pointer-events: none;
}
.hud-corner::before, .hud-frame::before {
  top: -1px; left: -1px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan);
}
.hud-corner::after, .hud-frame::after {
  bottom: -1px; right: -1px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan);
}
.hud-frame { position: relative; }
.hud-row {
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--font-mono); font-size: 12.5px; padding: 7px 0;
  border-bottom: 1px dashed rgba(26,35,56,.9);
}
.hud-row:last-child { border-bottom: 0; }
.hud-label { color: var(--muted); letter-spacing: .08em; }
.hud-val { color: var(--text); font-weight: 700; }
.hero-scrollhint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .25em; color: var(--muted); z-index: 2;
  animation: hint-bob 2.4s ease-in-out infinite;
}
@keyframes hint-bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* ============ GLITCH ============ */
/* Opacity lives ONLY inside the keyframes (ends at 0), so the chromatic
   ghost layers always settle back to invisible — no static opacity in any
   trigger rule, no frozen layer when hover persists, sticky-tap hover holds,
   tab visibility pauses rAF/CSS, or the flicker class races the animation.
   Layers are applied per .hero-line so the ghost wraps exactly like the
   base text (the h1's block-level line spans would otherwise break lines
   at different points than a flat attr(data-text) overlay). */
.glitch { position: relative; }
.hero-line { position: relative; }
.glitch::before, .glitch::after,
.hero-line::before, .hero-line::after {
  content: attr(data-text); position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; opacity: 0;
}
.glitch::before, .hero-line::before { color: var(--cyan); z-index: -1; }
.glitch::after, .hero-line::after { color: var(--magenta); z-index: -2; }
.hero:hover .hero-line::before, .glitch.flicker .hero-line::before,
.final-cta:hover .glitch::before { animation: glitch-a .35s steps(2) 2; }
.hero:hover .hero-line::after, .glitch.flicker .hero-line::after,
.final-cta:hover .glitch::after { animation: glitch-b .35s steps(2) 2; }
@keyframes glitch-a {
  0% { opacity: .85; transform: translate(3px,-2px); clip-path: inset(10% 0 60% 0); }
  50% { opacity: .85; transform: translate(-3px,1px); clip-path: inset(50% 0 20% 0); }
  90% { opacity: .85; transform: translate(2px,2px); clip-path: inset(80% 0 5% 0); }
  100% { opacity: 0; transform: none; }
}
@keyframes glitch-b {
  0% { opacity: .85; transform: translate(-3px,2px); clip-path: inset(60% 0 10% 0); }
  50% { opacity: .85; transform: translate(3px,-1px); clip-path: inset(15% 0 55% 0); }
  90% { opacity: .85; transform: translate(-2px,-2px); clip-path: inset(40% 0 40% 0); }
  100% { opacity: 0; transform: none; }
}

/* ============ SECTIONS ============ */
.section { padding: 110px 24px; max-width: 1400px; margin: 0 auto; }
.section-alt { position: relative; }
.section-alt::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(10,14,24,.8) 15%, rgba(10,14,24,.8) 85%, transparent);
}
.section-head { max-width: 840px; margin-bottom: 56px; }
.eyebrow { color: var(--cyan); font-size: 12.5px; letter-spacing: .3em; margin-bottom: 14px; text-shadow: var(--glow-cyan); }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3.2vw, 42px); line-height: 1.15;
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 19px; max-width: 640px; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ STATS ============ */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 64px;
}
.stat {
  position: relative; background: var(--panel); border: 1px solid var(--panel-line);
  padding: 26px 22px; transition: border-color .25s, box-shadow .25s;
}
.stat:hover { border-color: var(--orange); box-shadow: 0 0 24px rgba(244,129,32,.22); }
.stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(34px, 3.4vw, 52px); color: var(--orange);
  text-shadow: var(--glow-orange); line-height: 1;
}
.stat-suffix { color: var(--amber); }
.stat-label { margin-top: 10px; color: var(--muted); font-size: 15.5px; line-height: 1.35; }

.run-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.run-card {
  background: var(--panel); border: 1px solid var(--panel-line);
  padding: 30px 26px; transition: transform .2s, border-color .25s, box-shadow .25s;
}
.run-card:hover {
  transform: translateY(-4px); border-color: var(--cyan);
  box-shadow: 0 8px 30px rgba(0,229,255,.15);
}
.run-icon, .p-icon {
  width: 34px; height: 34px; fill: none; stroke: var(--cyan); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(0,229,255,.55)); margin-bottom: 18px;
}
.run-card h3 { font-family: var(--font-display); font-size: 17px; letter-spacing: .06em; margin-bottom: 12px; }
.run-card p { color: var(--muted); font-size: 16.5px; }

/* ============ PRODUCT TABS ============ */
.product-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.tab-btn {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--muted);
  border: 1px solid var(--panel-line); padding: 12px 20px; cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all .2s;
}
.tab-btn:hover { color: var(--text); border-color: var(--cyan); }
.tab-btn.active {
  background: rgba(244,129,32,.12); color: var(--orange);
  border-color: var(--orange); box-shadow: 0 0 18px rgba(244,129,32,.3);
  text-shadow: 0 0 8px rgba(244,129,32,.6);
}
.product-panel { display: none; }
.product-panel.active { display: block; animation: panel-in .4s ease; }
@keyframes panel-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;
}
.product-card {
  background: var(--panel); border: 1px solid var(--panel-line);
  padding: 26px 24px; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.product-card::before { z-index: 2; }
.product-card::after { z-index: 2; }
.product-card .scanbar {
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.product-card:hover, .product-card:focus-visible {
  transform: translateY(-4px); border-color: var(--orange);
  box-shadow: 0 10px 34px rgba(244,129,32,.2);
}
.product-card:hover .p-icon, .product-card:focus-visible .p-icon {
  stroke: var(--orange); filter: drop-shadow(0 0 8px rgba(244,129,32,.7));
  animation: icon-flicker .3s steps(2) 2;
}
@keyframes icon-flicker { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.product-card h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  letter-spacing: .04em; margin-bottom: 10px;
}
.product-card p { color: var(--muted); font-size: 15.5px; line-height: 1.45; flex: 1; }
.p-link {
  margin-top: 16px; font-size: 11.5px; letter-spacing: .2em;
  color: var(--cyan); opacity: 0; transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
}
.product-card:hover .p-link, .product-card:focus-visible .p-link { opacity: 1; transform: none; }

/* ============ WHY ============ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  background: var(--panel); border: 1px solid var(--panel-line);
  border-top: 2px solid var(--magenta);
  padding: 28px 26px; position: relative;
  transition: transform .2s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(255,46,196,.14); }
.why-index {
  position: absolute; top: 18px; right: 20px;
  color: rgba(255,46,196,.5); font-size: 13px; letter-spacing: .15em;
}
.why-card .p-icon { stroke: var(--magenta); filter: drop-shadow(0 0 6px rgba(255,46,196,.5)); }
.why-card h3 { font-family: var(--font-display); font-size: 16px; letter-spacing: .03em; margin-bottom: 12px; line-height: 1.3; }
.why-card p { color: var(--muted); font-size: 16px; }

/* ============ CUSTOMERS ============ */
.logo-marquee {
  overflow: hidden; border-top: 1px solid var(--panel-line); border-bottom: 1px solid var(--panel-line);
  padding: 30px 0; margin-bottom: 56px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 72px; width: max-content;
  animation: marquee 26s linear infinite;
}
.logo-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cust-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: .08em; color: rgba(232,236,244,.55);
  white-space: nowrap; transition: color .2s, text-shadow .2s;
}
.cust-logo:hover { color: var(--cyan); text-shadow: var(--glow-cyan); }
.quote-card {
  max-width: 900px; margin: 0 auto; background: var(--panel);
  border: 1px solid var(--panel-line); padding: 44px 48px; position: relative;
}
.quote-card blockquote p {
  font-size: clamp(19px, 1.8vw, 24px); line-height: 1.5; font-weight: 600;
  color: var(--text);
}
.quote-card blockquote p::before {
  content: '“'; color: var(--orange); font-size: 1.6em; text-shadow: var(--glow-orange);
}
.quote-card figcaption { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.quote-name { font-family: var(--font-display); font-size: 16px; color: var(--orange); letter-spacing: .05em; }
.quote-role { font-size: 12px; color: var(--muted); letter-spacing: .15em; }
.quote-more { display: inline-block; margin-top: 20px; color: var(--cyan); font-size: 12px; letter-spacing: .2em; text-decoration: none; }
.quote-more:hover { text-shadow: var(--glow-cyan); }

/* ============ DEVELOPERS / TERMINAL ============ */
.dev-wrap { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr); gap: 40px; align-items: start; }
.terminal {
  background: #05070d; border: 1px solid var(--panel-line); position: relative;
  box-shadow: 0 0 40px rgba(0,229,255,.08);
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  background: #0a0e18; border-bottom: 1px solid var(--panel-line);
  padding: 10px 14px;
}
.t-dot { width: 11px; height: 11px; border-radius: 50%; }
.t-red { background: #ff5f57; } .t-yellow { background: #febc2e; } .t-green { background: #28c840; }
.terminal-title { margin-left: 10px; font-size: 12px; color: var(--muted); letter-spacing: .08em; }
.terminal-replay {
  margin-left: auto; background: none; border: 1px solid var(--panel-line);
  color: var(--cyan); font-size: 11px; letter-spacing: .12em;
  padding: 5px 12px; cursor: pointer; transition: all .2s;
}
.terminal-replay:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.terminal-body { padding: 20px 22px; font-size: 13.5px; line-height: 1.7; min-height: 380px; }
.t-line { white-space: pre-wrap; word-break: break-word; }
.t-prompt { color: var(--green); }
.t-cmd { color: var(--text); }
.t-out { color: #c3cbdd; }
.t-dim { color: var(--muted); }
.t-ok { color: var(--green); text-shadow: 0 0 8px rgba(52,255,154,.4); }
.t-kw { color: var(--magenta); }
.t-str { color: var(--amber); }
.t-gap { height: 12px; }
.t-cursor { color: var(--cyan); animation: blink 1s steps(1) infinite; }
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }
.dev-points { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.dev-points li {
  padding-left: 22px; border-left: 2px solid var(--cyan);
  color: var(--muted); font-size: 17px;
}
.dev-points strong { color: var(--text); display: block; font-family: var(--font-display); font-size: 14.5px; letter-spacing: .04em; margin-bottom: 4px; text-transform: uppercase; }
.dev-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ PRICING ============ */
.billing-toggle { display: inline-flex; gap: 0; margin-top: 24px; border: 1px solid var(--panel-line); }
.bt-btn {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .15em;
  background: transparent; color: var(--muted); border: 0; padding: 10px 22px; cursor: pointer;
  transition: all .2s;
}
.bt-btn.active { background: var(--orange); color: #0a0500; box-shadow: 0 0 16px rgba(244,129,32,.4); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-card {
  background: var(--panel); border: 1px solid var(--panel-line);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 0;
  position: relative; transition: transform .2s, border-color .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-5px); border-color: var(--cyan); box-shadow: 0 12px 34px rgba(0,229,255,.14); }
.price-card h3 { font-family: var(--font-display); font-size: 20px; letter-spacing: .06em; text-transform: uppercase; }
.price-tag { color: var(--muted); font-size: 12.5px; letter-spacing: .08em; margin: 6px 0 20px; }
.price-num {
  font-family: var(--font-display); font-weight: 900; font-size: 40px;
  color: var(--text); margin-bottom: 22px; line-height: 1;
}
.price-per { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 11.5px; color: var(--muted); letter-spacing: .06em; margin-top: 8px; }
.price-card ul { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-card li { color: var(--muted); font-size: 15.5px; padding-left: 20px; position: relative; }
.price-card li::before { content: '▸'; position: absolute; left: 0; color: var(--cyan); }
.price-card-featured { border-color: var(--orange); box-shadow: 0 0 30px rgba(244,129,32,.18); }
.price-card-featured:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(244,129,32,.3); }
.featured-badge {
  position: absolute; top: -11px; left: 26px;
  background: var(--orange); color: #0a0500; font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; padding: 4px 12px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 130px 24px; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(244,129,32,.22), transparent 65%),
    radial-gradient(ellipse 40% 50% at 50% -20%, rgba(0,229,255,.1), transparent 60%);
}
.final-cta-inner { max-width: 780px; margin: 0 auto; }
.final-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 5vw, 64px); text-transform: uppercase;
  margin-bottom: 22px; letter-spacing: .02em;
}
.final-sub { color: var(--muted); font-size: 19px; margin-bottom: 38px; }
.final-cta .hero-ctas { justify-content: center; }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid rgba(244,129,32,.25);
  background: #04050a;
  padding: 70px 24px 40px;
}
.footer-grid {
  max-width: 1400px; margin: 0 auto 56px;
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 28px;
}
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-head { color: var(--orange); font-size: 11px; letter-spacing: .22em; margin-bottom: 8px; }
.footer-col a {
  color: var(--muted); text-decoration: none; font-size: 15px;
  transition: color .15s, padding-left .15s;
}
.footer-col a:hover { color: var(--cyan); padding-left: 4px; }
.footer-legal {
  max-width: 1400px; margin: 0 auto; padding-top: 26px;
  border-top: 1px solid var(--panel-line);
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
  color: var(--muted); font-size: 14px;
}
.legal-links a { color: var(--muted); text-decoration: none; margin: 0 6px; }
.legal-links a:hover { color: var(--cyan); }
.footer-sig { margin-left: auto; font-size: 11px; letter-spacing: .12em; color: #3d4457; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-hud { justify-content: flex-start; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .dev-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .main-nav, .login-link, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .run-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  body { font-size: 16.5px; }
  .section { padding: 76px 18px; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 18px 16px; }
  .why-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .quote-card { padding: 30px 24px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-ctas .btn { flex: 1; text-align: center; }
  .hud-panel { min-width: 0; width: 100%; }
  .under-attack { display: none; }
  .footer-sig { margin-left: 0; }
  .terminal-body { font-size: 12px; min-height: 340px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  .hero-grid-floor { animation: none; }
  .grain-overlay { animation: none; }
  .header-scanline { animation: none; }
  .t-cursor { animation: none; }
}
