/* ====================================================================
   RESOLUX.CC — premium cinematic HVH platform
   styles.css
   ==================================================================== */

:root {
  --ink-950: #04060d;
  --ink-900: #070a14;
  --ink-800: #0b1020;
  --ink-700: #10172a;
  --volt: #37e7ff;
  --volt-soft: #7df3ff;
  --neon: #8b5cff;
  --neon-soft: #b899ff;
  --blood: #ff2e4f;
  --steel: #1a2236;

  --grad-cool: linear-gradient(135deg, #37e7ff 0%, #8b5cff 100%);
  --grad-fire: linear-gradient(135deg, #8b5cff 0%, #ff2e4f 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  background: #04060d;
  color: #fff;
  min-height: 100%;
}

body {
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(55,231,255,0.08), transparent 60%),
    radial-gradient(1000px 700px at 80% 110%, rgba(139,92,255,0.10), transparent 55%),
    radial-gradient(800px 600px at 50% 50%, rgba(0,0,0,0.4), transparent 70%),
    #04060d;
  cursor: none;
}

@media (max-width: 768px) { body { cursor: auto; } }

::selection { background: rgba(55,231,255,0.35); color: #fff; }

/* ░ GLOBAL FX OVERLAYS ░ */
.fx-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 70;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: noiseShift 1.2s steps(6) infinite;
}
@keyframes noiseShift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-2%, 3%); }
  40%  { transform: translate(3%, -1%); }
  60%  { transform: translate(-1%, -2%); }
  80%  { transform: translate(2%, 1%); }
  100% { transform: translate(0,0); }
}
.fx-scanlines {
  position: fixed; inset: 0; pointer-events: none; z-index: 65;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.012) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}
.fx-vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 60;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.45) 100%),
    radial-gradient(ellipse at center, transparent 70%, rgba(4,6,13,0.7) 100%);
}

/* ░ AMBIENT BACKGROUND LAYERS ░ */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(55,231,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,231,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  transform: perspective(900px) rotateX(58deg) translateY(20%) scale(2.4);
  transform-origin: center top;
  animation: gridDrift 18s linear infinite;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 0 64px; }
}
.bg-orb {
  position: fixed; pointer-events: none; z-index: -2;
  width: 60vmax; height: 60vmax; border-radius: 50%;
  filter: blur(120px); opacity: 0.4;
  will-change: transform;
}
.bg-orb--volt { background: radial-gradient(circle, rgba(55,231,255,0.6), transparent 70%); top: -20vmax; left: -20vmax; }
.bg-orb--neon { background: radial-gradient(circle, rgba(139,92,255,0.55), transparent 70%); bottom: -20vmax; right: -20vmax; opacity: 0.5; }
.bg-orb--blood { background: radial-gradient(circle, rgba(255,46,79,0.35), transparent 70%); top: 40%; left: 40%; opacity: 0.25; width: 40vmax; height: 40vmax; }

.bg-beam {
  position: fixed; pointer-events: none; z-index: -1;
  width: 220vmax; height: 30vh;
  top: 20vh; left: -60vmax;
  background: linear-gradient(90deg, transparent 0%, rgba(55,231,255,0.06) 50%, transparent 100%);
  transform: rotate(-12deg);
  filter: blur(40px);
}
.bg-beam--1 { animation: beamFloat 14s ease-in-out infinite; }
.bg-beam--2 { top: 65vh; transform: rotate(10deg); background: linear-gradient(90deg, transparent 0%, rgba(139,92,255,0.08) 50%, transparent 100%); animation: beamFloat 18s ease-in-out infinite reverse; }
@keyframes beamFloat {
  0%, 100% { transform: rotate(-12deg) translateX(0); opacity: 0.4; }
  50%      { transform: rotate(-12deg) translateX(8vmax); opacity: 0.7; }
}

/* ====================================================================
   CUSTOM CURSOR
   ==================================================================== */
.cursor-dot, .cursor-ring, .cursor-glow {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 12px #37e7ff, 0 0 4px #fff;
}
.cursor-ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(55,231,255,0.7);
  box-shadow: 0 0 24px rgba(55,231,255,0.2);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
.cursor-ring.is-hover {
  width: 62px; height: 62px;
  border-color: rgba(139,92,255,0.85);
  background: radial-gradient(circle, rgba(139,92,255,0.12), transparent 70%);
}
.cursor-glow {
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(55,231,255,0.10), transparent 65%);
  filter: blur(12px); opacity: 0.7;
  mix-blend-mode: screen;
}
@media (max-width: 768px) { .cursor-dot, .cursor-ring, .cursor-glow { display: none; } }

/* ====================================================================
   LOADER
   ==================================================================== */
.loader {
  position: fixed; inset: 0; z-index: 9998;
  background:
    radial-gradient(ellipse at center, #07101e 0%, #04060d 70%),
    #04060d;
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
}
.loader__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(55,231,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,231,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.loader__center {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 28px;
  text-align: center;
}
.loader__brand { letter-spacing: 0.6em; }
.loader__mark { width: 200px; height: 200px; position: relative; filter: drop-shadow(0 0 20px rgba(55,231,255,0.4)); }
.loader__progress { width: 320px; }
.loader__track {
  height: 2px; background: rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.loader__track span {
  position: absolute; inset: 0; transform-origin: left;
  background: linear-gradient(90deg, #37e7ff 0%, #8b5cff 100%);
  box-shadow: 0 0 12px #37e7ff;
  transform: scaleX(0);
}
.loader__meta { margin-top: 10px; display: flex; justify-content: space-between; }

/* ====================================================================
   NAV
   ==================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(4,6,13,0.85), rgba(4,6,13,0.55) 70%, transparent);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: background .4s ease;
}
.nav__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,231,255,0.3), rgba(139,92,255,0.3), transparent);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.brand__mark { filter: drop-shadow(0 0 6px rgba(55,231,255,0.6)); }
.brand__name { font-size: 14px; }

.nav-link {
  padding: 8px 14px; color: rgba(255,255,255,0.7); text-decoration: none; position: relative;
  transition: color .2s ease;
}
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: #37e7ff; transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 8px #37e7ff;
}
.nav-link:hover::after { transform: scaleX(1); }

.status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #37e7ff;
  box-shadow: 0 0 10px #37e7ff;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ░ BUTTONS ░ */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 4px; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 600; text-decoration: none; color: #fff;
  transition: transform .25s ease, color .25s ease, background .25s ease;
  will-change: transform;
  cursor: none;
}
.btn--lg { padding: 14px 24px; font-size: 13px; }
.btn--xl { padding: 18px 32px; font-size: 14px; }

.btn--primary {
  background: linear-gradient(180deg, #37e7ff 0%, #1ab9d6 100%);
  color: #04060d;
  box-shadow: 0 8px 24px rgba(55,231,255,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s ease;
}
.btn--primary:hover::before { transform: translateX(120%); }
.btn--primary:hover { transform: translateY(-1px); }

.btn--ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(55,231,255,0.5); background: rgba(55,231,255,0.06); }

.btn__glitch { position: relative; }
.btn__glitch::before, .btn__glitch::after {
  content: attr(data-text); position: absolute; left: 0; top: 0;
  width: 100%; opacity: 0; pointer-events: none;
}
.btn:hover .btn__glitch::before { color: var(--volt); transform: translate(1.5px, 0); opacity: 0.85; mix-blend-mode: screen; animation: glitch 0.4s steps(2); }
.btn:hover .btn__glitch::after { color: var(--blood); transform: translate(-1.5px, 0); opacity: 0.6; mix-blend-mode: screen; animation: glitch 0.4s steps(2) reverse; }
@keyframes glitch { 0%,100% { transform: translate(0,0); } 50% { transform: translate(2px, -1px); } }

.play-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(55,231,255,0.12); border: 1px solid rgba(55,231,255,0.4);
}
.play-icon span {
  width: 0; height: 0;
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
  border-left: 6px solid #37e7ff;
  margin-left: 2px;
}

/* ░ TICKER ░ */
.ticker {
  position: relative; z-index: 5;
  margin-top: 64px;
  border-top: 1px solid rgba(55,231,255,0.08);
  border-bottom: 1px solid rgba(55,231,255,0.08);
  background: rgba(4,6,13,0.6);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.ticker__track {
  display: flex; gap: 64px; padding: 10px 0; white-space: nowrap;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.5);
  animation: ticker 40s linear infinite;
}
.ticker__track span { display: inline-block; flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative; min-height: 100vh;
  overflow: hidden;
}
.hero__layer {
  position: absolute; inset: 0; pointer-events: none;
  will-change: transform;
}
.hero__layer--grid {
  background-image:
    linear-gradient(rgba(55,231,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,231,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 0%, transparent 70%);
  opacity: 0.6;
}
.hero__layer--rings {
  width: 900px; height: 900px; top: 50%; right: -200px; left: auto;
  transform: translateY(-50%);
  opacity: 0.5;
  filter: drop-shadow(0 0 30px rgba(55,231,255,0.2));
}
.hero__beam {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(55,231,255,0.15), transparent 70%),
    radial-gradient(600px 400px at 80% 70%, rgba(139,92,255,0.12), transparent 70%);
}

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border-radius: 4px;
  background: rgba(55,231,255,0.06); border: 1px solid rgba(55,231,255,0.18);
  margin-bottom: 22px;
}
.kicker__dot {
  width: 6px; height: 6px; border-radius: 50%; background: #37e7ff;
  box-shadow: 0 0 8px #37e7ff;
  animation: blink 1.4s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(48px, 9vw, 132px);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-shadow: 0 0 40px rgba(55,231,255,0.15);
}
.hero__title-accent {
  background: linear-gradient(180deg, #37e7ff 0%, #8b5cff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
  filter: drop-shadow(0 0 24px rgba(139,92,255,0.5));
}

.hero__sub {
  max-width: 540px; font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero__creds {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 620px;
}
.cred__num { font-size: clamp(20px, 2.2vw, 28px); color: #fff; letter-spacing: -0.02em; }
.cred__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ░ HOLOGRAPHIC DASHBOARD ░ */
.holo {
  position: relative;
  border-radius: 12px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(11,16,32,0.92), rgba(7,10,20,0.85));
  border: 1px solid rgba(55,231,255,0.18);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(55,231,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform-style: preserve-3d;
  overflow: hidden;
  isolation: isolate;
}
.holo::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(to bottom, transparent 0 3px, rgba(55,231,255,0.025) 3px 4px);
  pointer-events: none; z-index: 0;
}
.holo__glow {
  position: absolute; inset: -1px; border-radius: 13px; padding: 1px;
  background: linear-gradient(135deg, rgba(55,231,255,0.4), transparent 50%, rgba(139,92,255,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}
.holo__corner {
  position: absolute; width: 18px; height: 18px;
  border-color: rgba(55,231,255,0.7); pointer-events: none;
}
.holo__corner--tl { top: 8px; left: 8px; border-top: 1px solid; border-left: 1px solid; }
.holo__corner--tr { top: 8px; right: 8px; border-top: 1px solid; border-right: 1px solid; }
.holo__corner--bl { bottom: 8px; left: 8px; border-bottom: 1px solid; border-left: 1px solid; }
.holo__corner--br { bottom: 8px; right: 8px; border-bottom: 1px solid; border-right: 1px solid; }

.holo__head {
  position: relative; display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(55,231,255,0.1);
}
.holo__dot { width: 8px; height: 8px; border-radius: 50%; background: #37e7ff; box-shadow: 0 0 10px #37e7ff; animation: blink 1.4s ease-in-out infinite; }
.holo__chip {
  font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.2em;
  padding: 3px 7px; border-radius: 3px;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.holo__chip--on { background: rgba(55,231,255,0.15); color: #37e7ff; border-color: rgba(55,231,255,0.4); box-shadow: 0 0 12px rgba(55,231,255,0.25); }

.holo__radar {
  position: relative; margin: 16px 0;
  background: radial-gradient(ellipse at center, rgba(55,231,255,0.05) 0%, transparent 70%);
  border-radius: 8px;
  padding: 8px;
}
.holo__radar-label {
  position: absolute; bottom: 14px; right: 14px;
}
.blip { animation: blipPulse 1.5s ease-in-out infinite; }
.blip:nth-child(2) { animation-delay: 0.3s; }
.blip:nth-child(3) { animation-delay: 0.6s; }
.blip:nth-child(4) { animation-delay: 0.9s; }
.blip:nth-child(5) { animation-delay: 1.2s; }
@keyframes blipPulse { 0%, 100% { opacity: 1; r: 3; } 50% { opacity: 0.4; r: 4; } }

.holo__telem {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  position: relative;
}
.telem {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px; padding: 10px 12px;
}
.telem__label { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.3em; color: rgba(255,255,255,0.45); }
.telem__value { font-size: 22px; color: #fff; margin: 4px 0 8px; }
.telem__bar {
  height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; position: relative; overflow: hidden;
}
.telem__bar span {
  position: absolute; top: 0; left: 0; height: 100%; width: var(--w, 50%);
  background: linear-gradient(90deg, #37e7ff, #8b5cff);
  box-shadow: 0 0 8px rgba(55,231,255,0.6);
  border-radius: 2px;
}
.telem__bar--red span { background: linear-gradient(90deg, #ff2e4f, #ff7187); box-shadow: 0 0 8px rgba(255,46,79,0.5); }

.holo__wave { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); position: relative; }

.holo__log {
  margin-top: 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.log-row { padding: 1px 0; color: rgba(255,255,255,0.7); }
.log-time { color: rgba(255,255,255,0.35); }

.holo-side {
  position: absolute; top: 30px; right: -18px;
  background: linear-gradient(180deg, rgba(11,16,32,0.95), rgba(7,10,20,0.9));
  border: 1px solid rgba(139,92,255,0.3);
  border-radius: 8px;
  padding: 12px 14px;
  width: 130px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(139,92,255,0.15);
  z-index: 2;
  backdrop-filter: blur(8px);
}
@media (max-width: 1024px) { .holo-side { display: none; } }

.holo-side__bars { display: flex; gap: 4px; align-items: flex-end; height: 50px; margin-top: 10px; }
.holo-side__bars span {
  flex: 1; height: var(--h, 50%);
  background: linear-gradient(180deg, #8b5cff, transparent);
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(139,92,255,0.5);
  animation: bar-pulse 1.6s ease-in-out infinite;
}
.holo-side__bars span:nth-child(2) { animation-delay: 0.15s; }
.holo-side__bars span:nth-child(3) { animation-delay: 0.3s; }
.holo-side__bars span:nth-child(4) { animation-delay: 0.45s; }
.holo-side__bars span:nth-child(5) { animation-delay: 0.6s; }
.holo-side__bars span:nth-child(6) { animation-delay: 0.75s; }
@keyframes bar-pulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.6; transform: scaleY(0.7); } }

.hero__cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 5;
}
.hero__cue-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, rgba(55,231,255,0.6), transparent);
  position: relative; overflow: hidden;
}
.hero__cue-line::after {
  content: ""; position: absolute; top: -20px; left: 0; width: 1px; height: 20px;
  background: #37e7ff; box-shadow: 0 0 12px #37e7ff;
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue { 0% { top: -20px; opacity: 0; } 30% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* ====================================================================
   MARQUEE
   ==================================================================== */
.marquee {
  position: relative;
  padding: 36px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee__track {
  display: flex; gap: 80px; white-space: nowrap;
  font-size: clamp(36px, 6vw, 84px); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.07);
  animation: marquee 30s linear infinite;
}
.marquee__track span { flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ====================================================================
   GENERIC SECTION
   ==================================================================== */
.section { position: relative; padding: 120px 0; }
.section--features { padding-top: 160px; }
.section__head { max-width: 700px; margin-bottom: 24px; }
.section__head--split { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-end; max-width: none; }
.section__head--center { text-align: center; margin: 0 auto 24px; max-width: 900px; }
.section__head--center .kicker { display: inline-flex; }

.section__title { font-size: clamp(36px, 5.5vw, 72px); line-height: 0.95; letter-spacing: -0.02em; }
.section__lede { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.6; margin-top: 16px; max-width: 580px; }

/* ====================================================================
   FEATURE CARDS
   ==================================================================== */
.card {
  position: relative;
  border-radius: 12px;
  padding: 1px;
  transform-style: preserve-3d;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  will-change: transform;
}
.card__inner {
  position: relative; z-index: 2;
  background:
    linear-gradient(180deg, rgba(11,16,32,0.95), rgba(7,10,20,0.95));
  border-radius: 11px;
  padding: 28px;
  min-height: 280px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.card__inner::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(255,255,255,0.014) 3px 4px);
  pointer-events: none;
}
.card__glow {
  position: absolute; inset: -1px; border-radius: 12px;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 50%), rgba(55,231,255,0.3), transparent 70%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.card__glow--neon { background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 50%), rgba(139,92,255,0.32), transparent 70%); }
.card__glow--red { background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 50%), rgba(255,46,79,0.32), transparent 70%); }
.card:hover .card__glow { opacity: 1; }

.card__border {
  position: absolute; inset: 0; border-radius: 12px; pointer-events: none;
  background: linear-gradient(135deg, rgba(55,231,255,0.35), transparent 40%, rgba(139,92,255,0.35));
  padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.55;
  transition: opacity .4s;
}
.card:hover .card__border { opacity: 1; }
.card--accent .card__border { background: linear-gradient(135deg, rgba(255,46,79,0.45), transparent 40%, rgba(139,92,255,0.35)); }

.card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; position: relative; }
.card__icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(55,231,255,0.08); border: 1px solid rgba(55,231,255,0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.card--accent .card__icon { background: rgba(255,46,79,0.08); border-color: rgba(255,46,79,0.3); }
.card__id { font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.35); }
.card__title { font-size: 22px; margin-bottom: 10px; position: relative; }
.card__text { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; flex-grow: 1; position: relative; }
.card__meta { margin-top: 18px; display: flex; flex-direction: column; gap: 4px; color: rgba(255,255,255,0.6); letter-spacing: 0.18em; position: relative; }
.card__meta .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%; margin-right: 8px;
  background: #37e7ff; box-shadow: 0 0 8px #37e7ff;
}
.card__meta .dot--red { background: #ff2e4f; box-shadow: 0 0 8px #ff2e4f; }
.card__meta .dot--purple { background: #8b5cff; box-shadow: 0 0 8px #8b5cff; }

/* ====================================================================
   STATS / HUD
   ==================================================================== */
.stat {
  position: relative;
  background: linear-gradient(180deg, rgba(11,16,32,0.85), rgba(7,10,20,0.85));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 22px;
  overflow: hidden;
}
.stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,231,255,0.6), transparent);
}
.stat__label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.stat__num { font-size: clamp(28px, 3.4vw, 44px); margin: 6px 0; letter-spacing: -0.02em; }
.stat__delta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #37e7ff; letter-spacing: 0.15em; }

.stat__bars { display: flex; gap: 4px; align-items: flex-end; height: 36px; margin-top: 12px; }
.stat__bars span {
  flex: 1; height: var(--h, 50%);
  background: linear-gradient(180deg, #37e7ff, rgba(55,231,255,0.1));
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(55,231,255,0.4);
}
.stat__svg { width: 100%; height: 40px; margin-top: 12px; }

/* HUD ▾ */
.hud {
  position: relative;
  margin-top: 28px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(11,16,32,0.92), rgba(7,10,20,0.94));
  border: 1px solid rgba(55,231,255,0.18);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.hud::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(55,231,255,0.018) 3px 4px);
  pointer-events: none;
}
.hud__corner { position: absolute; width: 24px; height: 24px; border-color: rgba(55,231,255,0.6); pointer-events: none; }
.hud__corner--tl { top: 12px; left: 12px; border-top: 1px solid; border-left: 1px solid; }
.hud__corner--tr { top: 12px; right: 12px; border-top: 1px solid; border-right: 1px solid; }
.hud__corner--bl { bottom: 12px; left: 12px; border-bottom: 1px solid; border-left: 1px solid; }
.hud__corner--br { bottom: 12px; right: 12px; border-bottom: 1px solid; border-right: 1px solid; }

.hud__head { display: flex; justify-content: space-between; align-items: flex-start; padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; }
.hud__pulse { display: flex; align-items: center; gap: 4px; }
.hud__pulse span:not(.text-volt) {
  width: 4px; height: 12px; border-radius: 1px;
  background: #37e7ff; box-shadow: 0 0 8px #37e7ff;
  animation: bar-pulse 1.2s ease-in-out infinite;
}
.hud__pulse span:nth-child(2) { animation-delay: 0.2s; }
.hud__pulse span:nth-child(3) { animation-delay: 0.4s; }

.hud__grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 0;
  position: relative;
}
@media (max-width: 900px) { .hud__grid { grid-template-columns: 1fr; } }

.hud__chart { padding: 28px; border-right: 1px solid rgba(255,255,255,0.05); position: relative; min-height: 300px; }
.hud__chart svg { width: 100%; height: 240px; }
.hud__chart-meta { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 14px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; }
.hud__chart-meta .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #37e7ff; box-shadow: 0 0 6px #37e7ff; margin-right: 8px; }
.hud__chart-meta .dot--purple { background: #8b5cff; box-shadow: 0 0 6px #8b5cff; }
.hud__chart-meta .dot--red { background: #ff2e4f; box-shadow: 0 0 6px #ff2e4f; }

.hud__metrics { padding: 28px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.metric { display: grid; grid-template-columns: 90px 1fr 70px; align-items: center; gap: 12px; font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.metric__label { color: rgba(255,255,255,0.5); letter-spacing: 0.25em; font-size: 9px; }
.metric__bar { height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; position: relative; overflow: hidden; }
.metric__bar span { position: absolute; top: 0; left: 0; height: 100%; width: var(--w, 50%); background: linear-gradient(90deg, #37e7ff, #7df3ff); box-shadow: 0 0 8px #37e7ff; border-radius: 2px; }
.metric__bar--purple span { background: linear-gradient(90deg, #8b5cff, #b899ff); box-shadow: 0 0 8px #8b5cff; }
.metric__bar--red span { background: linear-gradient(90deg, #ff2e4f, #ff7187); box-shadow: 0 0 8px #ff2e4f; }
.metric__val { text-align: right; color: #fff; }

.hud__foot { display: flex; gap: 24px; padding: 14px 28px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 10px; letter-spacing: 0.25em; color: rgba(255,255,255,0.4); position: relative; }

/* ====================================================================
   SHOWCASE
   ==================================================================== */
.section--showcase { padding: 140px 0; overflow: hidden; }
.showcase {
  position: relative;
  margin-top: 60px;
  min-height: 700px;
  perspective: 1400px;
}
.showcase__back {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 50% 50%, rgba(139,92,255,0.18), transparent 70%),
    radial-gradient(600px 300px at 30% 80%, rgba(55,231,255,0.12), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.panel {
  position: absolute;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(11,16,32,0.96), rgba(7,10,20,0.96));
  border: 1px solid rgba(55,231,255,0.18);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 40px rgba(55,231,255,0.08);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  isolation: isolate;
}
.panel::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(255,255,255,0.018) 3px 4px);
  pointer-events: none;
}
.panel__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(55,231,255,0.1);
  position: relative;
}
.panel__title { font-size: 10px; letter-spacing: 0.2em; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.panel__btns { display: flex; gap: 5px; }
.panel__btns i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); display: inline-block; }
.panel__btns i:nth-child(1) { background: rgba(255,46,79,0.7); }
.panel__btns i:nth-child(2) { background: rgba(255,184,77,0.7); }
.panel__btns i:nth-child(3) { background: rgba(55,231,255,0.7); }
.panel__body { padding: 16px; position: relative; }

.panel--menu { top: 20px; left: 2%; width: clamp(280px, 30%, 360px); z-index: 4; }
.panel--term { top: 80px; right: 4%; width: clamp(320px, 36%, 440px); z-index: 3; }
.panel--heat { bottom: 40px; left: 18%; width: clamp(280px, 30%, 360px); z-index: 2; }
.panel--wave { top: 380px; left: 38%; width: clamp(280px, 28%, 340px); z-index: 3; }
.panel--tac { bottom: 80px; right: 6%; width: clamp(280px, 28%, 340px); z-index: 4; }

@media (max-width: 1024px) {
  .showcase { min-height: 0; perspective: none; }
  .panel { position: relative; top: 0; left: 0; right: 0; bottom: 0; width: 100%; margin-bottom: 20px; }
}

.menu-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.menu-item {
  display: grid; grid-template-columns: 12px 1fr auto; gap: 10px; align-items: center;
  padding: 7px 10px; border-radius: 4px;
  font-size: 13px; font-family: 'Space Grotesk', sans-serif;
  color: rgba(255,255,255,0.7);
  transition: all .25s ease;
  cursor: pointer;
}
.menu-arrow { color: rgba(255,255,255,0.25); }
.menu-item:hover { background: rgba(55,231,255,0.06); color: #fff; }
.menu-item:hover .menu-arrow { color: #37e7ff; }
.menu-item.is-active { background: linear-gradient(90deg, rgba(55,231,255,0.18), rgba(55,231,255,0)); color: #fff; }
.menu-item.is-active .menu-arrow { color: #37e7ff; }
.menu-val { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; }

.menu-slider { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); }
.menu-slider__head { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.menu-slider__track { height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.menu-slider__track span { display: block; height: 100%; background: linear-gradient(90deg, #37e7ff, #8b5cff); box-shadow: 0 0 6px #37e7ff; }
.menu-slider__track--red span { background: linear-gradient(90deg, #ff2e4f, #ff7187); box-shadow: 0 0 6px #ff2e4f; }
.menu-foot { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); letter-spacing: 0.3em; }

.term-caret { display: inline-block; width: 7px; height: 12px; background: #37e7ff; vertical-align: middle; margin-left: 4px; animation: caret 1s steps(2) infinite; box-shadow: 0 0 8px #37e7ff; }
@keyframes caret { 50% { opacity: 0; } }

.heatmap {
  position: relative;
  aspect-ratio: 1.3 / 1;
  background:
    linear-gradient(135deg, rgba(55,231,255,0.04), rgba(139,92,255,0.04)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 16px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.heat-points span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c), transparent 70%);
  transform: translate(-50%, -50%) scale(var(--s, 1));
  filter: blur(2px);
  animation: heatPulse 2.4s ease-in-out infinite;
  mix-blend-mode: screen;
}
.heat-points span:nth-child(2) { animation-delay: 0.4s; }
.heat-points span:nth-child(3) { animation-delay: 0.8s; }
.heat-points span:nth-child(4) { animation-delay: 1.2s; }
.heat-points span:nth-child(5) { animation-delay: 1.6s; }
@keyframes heatPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

.tac-row { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; }
.tac-row:last-child { border-bottom: none; }
.tac-avatar { width: 32px; height: 32px; border-radius: 6px; background: linear-gradient(135deg, #37e7ff, #8b5cff); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Orbitron', sans-serif; font-size: 12px; }
.tac-bar { height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; margin-top: 6px; }
.tac-bar span { display: block; height: 100%; width: var(--w, 50%); background: linear-gradient(90deg, #37e7ff, #8b5cff); box-shadow: 0 0 6px #37e7ff; }
.tac-bar--red span { background: linear-gradient(90deg, #ff2e4f, #ff7187); box-shadow: 0 0 6px #ff2e4f; }

.showcase__caption { position: absolute; bottom: -36px; left: 0; right: 0; text-align: center; }

/* ====================================================================
   HORIZONTAL SCROLL (PROCESS)
   ==================================================================== */
.section--process { padding-bottom: 80px; overflow: hidden; }
.hscroll { padding: 0 0 0 6vw; }
.hscroll__track { display: flex; gap: 28px; }
.step {
  position: relative;
  flex: 0 0 clamp(320px, 36vw, 460px);
  padding: 36px;
  background: linear-gradient(180deg, rgba(11,16,32,0.85), rgba(7,10,20,0.85));
  border: 1px solid rgba(55,231,255,0.15);
  border-radius: 12px;
  min-height: 320px;
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(55,231,255,0.15), transparent 70%);
  pointer-events: none;
}
.step__num { font-size: 84px; line-height: 1; color: rgba(255,255,255,0.06); letter-spacing: -0.05em; }
.step__title { font-size: 28px; margin-top: 12px; letter-spacing: 0.02em; }
.step__text { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.65; margin-top: 12px; }
.step__bar { position: absolute; bottom: 24px; left: 36px; right: 36px; height: 2px; background: rgba(255,255,255,0.06); border-radius: 1px; overflow: hidden; }
.step__bar span { display: block; height: 100%; background: linear-gradient(90deg, #37e7ff, #8b5cff); box-shadow: 0 0 8px #37e7ff; transform-origin: left; transform: scaleX(0); transition: transform 1s; }

/* ====================================================================
   COMMUNITY
   ==================================================================== */
.comm-card {
  position: relative;
  background: linear-gradient(180deg, rgba(11,16,32,0.92), rgba(7,10,20,0.92));
  border: 1px solid rgba(55,231,255,0.15);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  overflow: hidden;
}
.comm-card::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(255,255,255,0.014) 3px 4px);
  pointer-events: none;
}
.comm-card__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; position: relative; }
.comm-pulse { display: flex; gap: 4px; }
.comm-pulse span { width: 5px; height: 5px; border-radius: 50%; background: #37e7ff; box-shadow: 0 0 8px #37e7ff; animation: blink 1.4s ease-in-out infinite; }
.comm-pulse span:nth-child(2) { animation-delay: 0.3s; }
.comm-pulse span:nth-child(3) { animation-delay: 0.6s; }

.member-list { display: flex; flex-direction: column; gap: 6px; position: relative; }
.member { display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; padding: 10px; border-radius: 8px; transition: background .25s ease; }
.member:hover { background: rgba(55,231,255,0.04); }

.avatar { position: relative; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Orbitron', sans-serif; font-size: 14px; color: #04060d; }
.avatar--sm { width: 32px; height: 32px; font-size: 12px; }
.avatar--volt { background: linear-gradient(135deg, #37e7ff, #7df3ff); }
.avatar--neon { background: linear-gradient(135deg, #8b5cff, #b899ff); color: #fff; }
.avatar--blood { background: linear-gradient(135deg, #ff2e4f, #ff7187); color: #fff; }
.avatar__ring {
  position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid rgba(55,231,255,0.5);
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0; } }

.member__name { font-size: 14px; }
.member__name .rank { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.2em; padding: 2px 6px; border-radius: 3px; background: rgba(55,231,255,0.12); color: #37e7ff; margin-left: 6px; text-transform: uppercase; }
.member__name .rank--red { background: rgba(255,46,79,0.15); color: #ff7187; }
.member__meta { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; margin-top: 2px; }
.online { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: #37e7ff; }
.online--idle { color: rgba(255,255,255,0.4); }

.comm-card__foot { display: flex; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); align-items: center; position: relative; }
.comm-card__foot a { text-decoration: none; }

.chat { display: flex; flex-direction: column; gap: 14px; position: relative; max-height: 380px; overflow: hidden; }
.chat-msg { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: flex-start; }
.chat-meta { font-size: 12px; margin-bottom: 4px; }
.chat-meta strong { color: #fff; font-weight: 600; }
.chat-bubble { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.78); padding: 8px 14px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; display: inline-block; max-width: 100%; }

.chat-input {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 12px 14px;
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 13px;
  position: relative;
}
.chat-input__placeholder { color: rgba(255,255,255,0.35); font-style: italic; }
.chat-input__caret { width: 8px; height: 14px; background: #37e7ff; margin-left: auto; box-shadow: 0 0 8px #37e7ff; animation: caret 1s steps(2) infinite; }

/* ====================================================================
   CTA
   ==================================================================== */
.cta {
  position: relative;
  padding: 200px 0;
  overflow: hidden;
  text-align: center;
}
.cta__back {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 50% 40%, rgba(55,231,255,0.22), transparent 60%),
    radial-gradient(900px 600px at 50% 70%, rgba(139,92,255,0.25), transparent 60%);
  filter: blur(20px);
}
.cta__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(55,231,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,231,255,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 60%);
  transform: perspective(900px) rotateX(58deg) translateY(20%) scale(2.2);
  transform-origin: center top;
}
.cta__beam {
  position: absolute; width: 200%; height: 24vh;
  left: -50%;
  background: linear-gradient(90deg, transparent, rgba(55,231,255,0.22), transparent);
  filter: blur(40px);
}
.cta__beam--1 { top: 30%; transform: rotate(-8deg); animation: beamFloat 12s ease-in-out infinite; }
.cta__beam--2 { top: 55%; transform: rotate(6deg); background: linear-gradient(90deg, transparent, rgba(139,92,255,0.25), transparent); animation: beamFloat 14s ease-in-out infinite reverse; }
.cta__orb { position: absolute; width: 24vmax; height: 24vmax; border-radius: 50%; filter: blur(60px); }
.cta__orb--1 { top: 20%; left: 10%; background: radial-gradient(circle, rgba(55,231,255,0.5), transparent 70%); animation: orbDrift 9s ease-in-out infinite; }
.cta__orb--2 { bottom: 10%; right: 10%; background: radial-gradient(circle, rgba(139,92,255,0.5), transparent 70%); animation: orbDrift 11s ease-in-out infinite reverse; }
@keyframes orbDrift { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }

.cta__title {
  font-size: clamp(60px, 12vw, 200px); line-height: 0.86;
  letter-spacing: -0.03em;
  margin: 36px 0 24px;
  text-shadow: 0 0 60px rgba(55,231,255,0.2);
}
.cta__title-accent {
  background: linear-gradient(135deg, #37e7ff 0%, #8b5cff 50%, #ff2e4f 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 24px rgba(139,92,255,0.5));
}
.cta__sub { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 36px; font-size: 16px; line-height: 1.6; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 60px; }
.cta__meta { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.foot { position: relative; padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(4,6,13,0.6); backdrop-filter: blur(12px); }
.foot__top { display: grid; grid-template-columns: 1fr 2fr; gap: 36px; align-items: flex-start; margin-bottom: 36px; }
@media (max-width: 768px) { .foot__top { grid-template-columns: 1fr; } }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot__col-title { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.5); margin-bottom: 14px; text-transform: uppercase; }
.foot__cols a { display: block; padding: 4px 0; font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color .2s; }
.foot__cols a:hover { color: #37e7ff; }
.foot__bot { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }

/* ====================================================================
   REVEAL UTILITIES (initial state — GSAP animates these in)
   ==================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-split-hero] { opacity: 0; }
[data-split-words] { opacity: 0; }
[data-split-cta] { opacity: 0; }
.card { opacity: 0; transform: translateY(40px); }
.stat { opacity: 0; transform: translateY(30px); }
.hud { opacity: 0; transform: translateY(40px); }
.panel { opacity: 0; }
.step { opacity: 0; transform: translateY(40px); }
.comm-card { opacity: 0; transform: translateY(30px); }
.cta__title { opacity: 1; } /* split handles its own reveal */
.cta__sub, .cta__btns, .cta__meta { opacity: 0; transform: translateY(20px); }
.holo { opacity: 0; transform: translateY(30px); }
.holo-side { opacity: 0; transform: translate(-30px, 30px); }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 768px) {
  .hero { padding-bottom: 40px; }
  .section { padding: 80px 0; }
  .holo { padding: 16px; }
  .holo__telem { grid-template-columns: 1fr 1fr; }
  .hud__head { flex-direction: column; gap: 12px; padding: 18px; }
  .hud__chart, .hud__metrics { padding: 18px; }
  .hud__chart { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-link { display: none; }
  .ticker__track { font-size: 9px; gap: 36px; }
}

/* ====================================================================
   PRINT / REDUCED MOTION
   ==================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal], .card, .stat, .hud, .panel, .step, .comm-card, .holo, .holo-side,
  [data-split-hero], [data-split-words], [data-split-cta], .cta__sub, .cta__btns, .cta__meta {
    opacity: 1 !important; transform: none !important;
  }
}
