/* ══════════════════════════════════════════════════════════════════
   MRKT COMPASS — landing redesign 2026-06
   Concept: "the terminal in space" — the dashboard floats as a 3D
   object over a neon horizon. Glass + depth + bold display type.
   Palette mirrors the product (fx-svelte/src/app.css).
   ══════════════════════════════════════════════════════════════════ */

:root {
  --bg: #04050a;
  --bg-soft: #0a0c14;
  --panel: rgba(16, 19, 28, 0.55);
  --panel-2: rgba(24, 28, 40, 0.72);
  --border: rgba(255, 255, 255, 0.07);
  --border-2: rgba(255, 255, 255, 0.16);
  --text: #f1f5f9;
  --text-2: #aab6ca;
  --muted: #66738a;
  --accent: #ff2a5f;
  --accent-dim: rgba(255, 42, 95, 0.14);
  --green: #00ffcc;
  --green-dim: rgba(0, 255, 204, 0.12);
  --amber: #ffaa00;
  --red: #ff3366;
  --font-display: 'Unbounded', 'Inter', sans-serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Cascadia Code', 'Consolas', monospace;
  --max-w: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 16px;
  --radius-lg: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Atmosphere: layered glows, fixed */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 1100px 700px at 18% -8%, rgba(255, 42, 95, 0.10), transparent 58%),
    radial-gradient(ellipse 900px 650px at 85% 30%, rgba(0, 255, 204, 0.05), transparent 60%),
    radial-gradient(ellipse 1300px 900px at 50% 115%, rgba(255, 42, 95, 0.07), transparent 55%),
    linear-gradient(180deg, #04050a 0%, #060810 50%, #04050a 100%);
}
::selection { background: rgba(255, 42, 95, 0.32); color: var(--text); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.07); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.14); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

section { padding: 110px 0; position: relative; }

/* ═════════ Type system ═════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.grad {
  background: linear-gradient(100deg, var(--accent) 10%, #ff7aa0 50%, var(--green) 105%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.sec-head { max-width: 760px; margin-bottom: 64px; }
.sec-head p { color: var(--text-2); font-size: 17px; max-width: 620px; }

/* ═════════ Reveal on scroll ═════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ═════════ Nav ═════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  background: rgba(4, 5, 10, 0.65);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(4, 5, 10, 0.82); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-weight: 800; font-size: 14px; letter-spacing: 0.1em; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: url('./assets/compass-logo.png') center/cover no-repeat;
  box-shadow: 0 4px 18px rgba(255, 42, 95, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.nav-links { display: flex; gap: 34px; font-size: 13.5px; font-weight: 500; color: var(--text-2); }
.nav-links a { transition: color 0.2s; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--accent); transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-signin { font-size: 13.5px; font-weight: 500; color: var(--text-2); transition: color 0.2s; }
.nav-signin:hover { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #d91d4e);
  box-shadow: 0 4px 20px rgba(255, 42, 95, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(255, 42, 95, 0.5), inset 0 1px 0 rgba(255,255,255,0.2); }
.nav-cta svg { width: 13px; height: 13px; }

/* ═════════ HERO ═════════ */
.hero {
  padding: 170px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2);
  padding: 8px 18px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  margin-bottom: 34px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 auto 28px;
  max-width: 1050px;
}
.hero h1 .h1-line { display: block; }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 38px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700;
  padding: 15px 30px; border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, var(--accent) 0%, #e0214f 100%);
  box-shadow: 0 8px 34px rgba(255, 42, 95, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(255, 42, 95, 0.55), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn-primary:hover::after { left: 130%; }
.btn-primary svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600;
  padding: 14px 26px; border-radius: 999px;
  color: var(--text);
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, background 0.2s, transform 0.22s var(--ease);
}
.btn-ghost:hover { border-color: rgba(0, 255, 204, 0.5); background: rgba(0, 255, 204, 0.05); transform: translateY(-2px); }
.btn-ghost svg { width: 15px; height: 15px; }

.hero-stats {
  display: flex; justify-content: center; gap: 56px;
  margin-bottom: 30px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-mono); font-size: 21px; font-weight: 800; }
.hero-stat-num .accent-color { color: var(--green); }
.hero-stat-label { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* — Hero load-in choreography — */
.hero .h-anim { opacity: 0; transform: translateY(26px); animation: hero-rise 0.9s var(--ease) forwards; }
.hero .ha-1 { animation-delay: 0.05s; }
.hero .ha-2 { animation-delay: 0.18s; }
.hero .ha-3 { animation-delay: 0.32s; }
.hero .ha-4 { animation-delay: 0.46s; }
.hero .ha-5 { animation-delay: 0.6s; }
@keyframes hero-rise { to { opacity: 1; transform: translateY(0); } }

/* ═════════ THE 3D STAGE ═════════ */
.stage {
  position: relative;
  margin-top: 26px;
  padding: 30px 0 90px;
  perspective: 1500px;
}
.stage-floor {
  position: absolute; left: 50%; bottom: -2%;
  width: 190%; height: 66%;
  transform: translateX(-50%) perspective(700px) rotateX(74deg);
  transform-origin: 50% 100%;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 52% 88% at 50% 100%, #000 14%, transparent 72%);
  mask-image: radial-gradient(ellipse 52% 88% at 50% 100%, #000 14%, transparent 72%);
  pointer-events: none;
}
/* pattern on a child layer: the drift is transform-only so it never repaints */
.stage-floor::before {
  content: '';
  position: absolute; left: 0; right: 0; top: -64px; bottom: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 42, 95, 0.20) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255, 42, 95, 0.14) 0 1px, transparent 1px 64px);
  animation: grid-drift 10s linear infinite;
  will-change: transform;
}
@keyframes grid-drift { from { transform: translateY(0); } to { transform: translateY(64px); } }
.stage-halo {
  position: absolute; left: 50%; bottom: 4%;
  width: 70%; height: 46%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 55% at 50% 80%, rgba(255, 42, 95, 0.22), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.stage-3d {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transform: perspective(1500px) rotateX(14deg);
  will-change: transform;
  opacity: 0;
  animation: stage-in 1.3s 0.55s var(--ease) forwards;
}
@keyframes stage-in {
  from { opacity: 0; transform: perspective(1500px) rotateX(32deg) translateY(90px) scale(0.92); }
  to   { opacity: 1; transform: perspective(1500px) rotateX(14deg) translateY(0) scale(1); }
}

.dash-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: var(--panel-2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 90px rgba(0, 0, 0, 0.75),
    0 60px 140px rgba(255, 42, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.dash-bar {
  display: flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 16px;
  background: rgba(10, 12, 18, 0.9);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.dash-dots span:nth-child(1) { background: rgba(255, 51, 102, 0.7); }
.dash-dots span:nth-child(2) { background: rgba(255, 170, 0, 0.7); }
.dash-dots span:nth-child(3) { background: rgba(0, 255, 204, 0.7); }
.dash-url { margin: 0 auto; opacity: 0.8; }
.dash-frame img { width: 100%; }

/* reflection */
.stage-reflection {
  position: absolute; top: 100%; left: 0; right: 0; height: 130px;
  transform: scaleY(-1) translateZ(0);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to top, transparent 100%, transparent 100%);
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 80%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 80%);
  filter: blur(2px) saturate(1.3);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

/* Floating widget cards (real screenshots in glass frames) */
.float-card {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: rgba(24, 28, 40, 0.92);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 42, 95, 0.08), inset 0 1px 0 rgba(255,255,255,0.12);
  will-change: transform;
}
.float-card img { width: 100%; display: block; }
.fc-1 {
  width: 250px; left: -110px; top: 6%;
  --z: 110px;
  animation: float-a 7s ease-in-out infinite;
}
.fc-2 {
  width: 235px; right: -105px; top: 16%;
  --z: 150px;
  animation: float-b 8.5s ease-in-out infinite;
}
.fc-3 {
  width: 280px; right: -60px; bottom: -9%;
  --z: 80px;
  animation: float-a 9.5s ease-in-out infinite;
}
/* bob via transform only — animating margin forced a full re-layout every frame */
@keyframes float-a {
  0%, 100% { transform: translateZ(var(--z, 0px)) translateY(0); }
  50% { transform: translateZ(var(--z, 0px)) translateY(-14px); }
}
@keyframes float-b {
  0%, 100% { transform: translateZ(var(--z, 0px)) translateY(0); }
  50% { transform: translateZ(var(--z, 0px)) translateY(12px); }
}

/* Verdict card: pure HTML float */
.verdict-card {
  padding: 16px 18px;
  font-family: var(--font-mono);
  min-width: 215px;
}
.verdict-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.verdict-eyebrow { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.verdict-conf { font-size: 9.5px; font-weight: 700; color: var(--green); background: var(--green-dim); padding: 3px 8px; border-radius: 999px; }
.verdict-asset { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.verdict-ticker { font-size: 14px; font-weight: 800; color: var(--text); }
.verdict-call { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; color: var(--green); }
.verdict-score { font-size: 38px; font-weight: 800; color: var(--green); line-height: 1.1; text-shadow: 0 0 24px rgba(0, 255, 204, 0.5); }
.verdict-meta { font-size: 9.5px; color: var(--muted); margin-top: 6px; }
.verdict-short .verdict-call { color: var(--red); }
.verdict-short .verdict-score { color: var(--red); text-shadow: 0 0 24px rgba(255, 51, 102, 0.5); }
.verdict-short .verdict-conf { color: var(--amber); background: rgba(255, 170, 0, 0.12); }

/* Gate chips floating above stage */
.gate-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-2);
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: rgba(12, 14, 22, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  will-change: transform;
}
.gate-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); flex-shrink: 0; }
.gate-dot-red { background: var(--red); box-shadow: 0 0 8px var(--red); }
.gate-dot-amber { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.chip-1 { left: 6%; top: 12%; animation: float-a 6s ease-in-out infinite; }
.chip-2 { right: 7%; top: 5%; animation: float-b 7s ease-in-out infinite; }
.chip-3 { left: 10%; bottom: 14%; animation: float-b 8s ease-in-out infinite; }

/* ═════════ Sources marquee ═════════ */
.sources { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(8, 10, 16, 0.5); overflow: hidden; }
.sources-label { text-align: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.sources-marquee {
  display: flex; gap: 14px; width: max-content;
  animation: src-scroll 30s linear infinite;
}
.sources-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.sources-wrap:hover .sources-marquee { animation-play-state: paused; }
/* -50% lands mid-gap; subtract half the 14px gap so the loop is seamless */
@keyframes src-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
.source-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--text-2);
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
}
.source-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* ═════════ Engines: fusion pipeline ═════════ */
.fusion { position: relative; }
.fusion-inputs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fusion-card {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)), var(--panel);
  backdrop-filter: blur(16px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.fusion-card:hover {
  border-color: rgba(255, 42, 95, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5), 0 0 44px rgba(255, 42, 95, 0.08);
}
.fusion-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.fusion-name { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); }
.fusion-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 8.5px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--green);
}
.fusion-live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px var(--green); animation: pulse 2.2s ease-in-out infinite; }
.fusion-card > p { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-top: 14px; }

/* mini-viz: shared canvas */
.fusion-viz {
  height: 64px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  position: relative;
}
/* macro: rising bars */
.fviz-bars { gap: 6px; }
.fviz-bars span {
  flex: 1; border-radius: 3px 3px 0 0;
  height: var(--h);
  background: linear-gradient(180deg, var(--accent), rgba(255, 42, 95, 0.25));
  opacity: 0.85;
  transform-origin: bottom;
  animation: fv-grow 2.6s var(--ease) infinite alternate;
}
.fviz-bars span:nth-child(2n) { animation-delay: 0.4s; background: linear-gradient(180deg, var(--green), rgba(0, 255, 204, 0.2)); }
.fviz-bars span:nth-child(3n) { animation-delay: 0.9s; }
@keyframes fv-grow { from { transform: scaleY(0.72); } to { transform: scaleY(1); } }
/* positioning: long/short rows */
.fviz-pos { flex-direction: column; align-items: stretch; justify-content: center; gap: 7px; }
.fviz-pos-row { display: flex; align-items: center; gap: 8px; }
.fviz-pos-row i { font-style: normal; font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.1em; color: var(--muted); width: 38px; flex-shrink: 0; }
.fviz-pos-row span { display: block; height: 5px; border-radius: 999px; width: var(--w); animation: fv-pulse-w 3s ease-in-out infinite alternate; }
.fv-long { background: linear-gradient(90deg, rgba(0, 255, 204, 0.25), var(--green)); }
.fv-short { background: linear-gradient(90deg, rgba(255, 51, 102, 0.25), var(--red)); }
@keyframes fv-pulse-w { from { transform: scaleX(0.86); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }
/* options: strike ladder */
.fviz-strikes { flex-direction: column; align-items: stretch; justify-content: center; gap: 7px; }
.fviz-strike { display: flex; align-items: center; gap: 8px; }
.fviz-strike span { display: block; height: 7px; border-radius: 2px; width: var(--w); background: rgba(255, 255, 255, 0.14); }
.fviz-strike i { font-style: normal; font-family: var(--font-mono); font-size: 7.5px; color: var(--muted); }
.fviz-strike-hot span { background: linear-gradient(90deg, var(--amber), rgba(255, 170, 0, 0.3)); box-shadow: 0 0 10px rgba(255, 170, 0, 0.35); animation: fv-pulse-w 2.4s ease-in-out infinite alternate; }
.fviz-strike-hot i { color: var(--amber); }
/* rates: diverging lines */
.fviz-lines { align-items: stretch; padding: 8px 10px; }
.fviz-lines svg { width: 100%; height: 100%; }
.fv-line-a { stroke: var(--green); stroke-width: 2; stroke-linecap: round; filter: drop-shadow(0 0 4px rgba(0, 255, 204, 0.5)); }
.fv-line-b { stroke: rgba(255, 255, 255, 0.25); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 3 4; }
.fviz-gap {
  position: absolute; right: 10px; top: 8px;
  font-family: var(--font-mono); font-size: 7.5px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--green);
  background: var(--green-dim);
  padding: 2px 6px; border-radius: 999px;
}

/* converging beams */
.fusion-beams {
  display: grid; grid-template-columns: repeat(4, 1fr);
  height: 56px;
  pointer-events: none;
}
.fusion-beams span {
  justify-self: center;
  width: 1.5px; height: 100%;
  background: linear-gradient(180deg, rgba(255, 42, 95, 0.45), rgba(255, 42, 95, 0.05));
  position: relative;
  overflow: visible;
}
.fusion-beams span::after {
  content: '';
  position: absolute; left: -1.25px; top: -22%;
  width: 4px; height: 22%;
  border-radius: 999px;
  background: var(--accent);
  filter: blur(1px);
  box-shadow: 0 0 10px var(--accent);
  animation: beam-drop 2.2s linear infinite;
}
.fusion-beams span:nth-child(2)::after { animation-delay: 0.5s; }
.fusion-beams span:nth-child(3)::after { animation-delay: 1.1s; }
.fusion-beams span:nth-child(4)::after { animation-delay: 1.6s; }
/* droplet travels 122% of the track = 555% of its own 22% height; transform-only */
@keyframes beam-drop { from { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } to { transform: translateY(555%); opacity: 0; } }

/* the score bar */
.fusion-score {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: var(--panel-2);
  backdrop-filter: blur(18px);
  padding: 28px 36px 26px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.fusion-score::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 51, 102, 0.55), rgba(255,255,255,0.07) 45%, rgba(0, 255, 204, 0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.fusion-score-label {
  font-family: var(--font-display); font-size: clamp(17px, 1.9vw, 22px); font-weight: 700;
  margin-bottom: 20px;
}
.fusion-scale { position: relative; max-width: 660px; margin: 0 auto; }
.fusion-scale-track {
  height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(255, 51, 102, 0.25) 32%, rgba(255, 255, 255, 0.10) 50%, rgba(0, 255, 204, 0.25) 68%, var(--green) 100%);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}
.fusion-scale-marker {
  position: absolute; top: 50%; left: 82%;
  transform: translate(-50%, -50%);
  animation: marker-drift 5.5s ease-in-out infinite alternate;
}
.fusion-scale-marker b {
  display: inline-block;
  font-family: var(--font-mono); font-size: 13px; font-weight: 800;
  color: #031c16;
  background: var(--green);
  border-radius: 999px;
  padding: 4px 11px;
  box-shadow: 0 0 22px rgba(0, 255, 204, 0.55), 0 4px 14px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
@keyframes marker-drift { from { transform: translate(-50%, -50%); } to { transform: translate(calc(-50% - 40px), -50%); } }
.fusion-scale-ticks {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 10px; color: var(--muted);
}
.fusion-score-sub { font-size: 14px; color: var(--text-2); margin-top: 18px; }
.fusion-score-sub strong { color: var(--green); font-weight: 700; }

/* ═════════ Showcase ═════════ */
.showcase-list { display: flex; flex-direction: column; gap: 90px; }
.shot-row { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.shot-row.flip { grid-template-columns: 0.85fr 1.15fr; }
.shot-row.flip .shot-visual { order: 2; }
.shot-row.flip .shot-caption { order: 1; }

.shot-visual { position: relative; perspective: 1200px; }
.shot-tilt {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.shot-main {
  position: relative; z-index: 2;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  overflow: hidden;
  background: var(--panel-2);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255,255,255,0.1);
}
.shot-main img { width: 100%; }
/* stays inside its grid column — overhanging the gap covered the caption text */
.shot-detail {
  position: absolute; z-index: 1;
  width: 58%;
  right: 4%; bottom: -12%;
  border-radius: 12px;
  border: 1px solid var(--border-2);
  overflow: hidden;
  background: var(--panel-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  transform: translateZ(60px) rotate(2.5deg);
  transition: transform 0.45s var(--ease);
}
.shot-row.flip .shot-detail { right: auto; left: 4%; transform: translateZ(60px) rotate(-2.5deg); }
.shot-detail img { width: 100%; }
.shot-visual:hover .shot-detail { transform: translateZ(90px) rotate(2.5deg) translateY(-8px); }
.shot-row.flip .shot-visual:hover .shot-detail { transform: translateZ(90px) rotate(-2.5deg) translateY(-8px); }
.shot-glow {
  position: absolute; inset: -8% -12%;
  background: radial-gradient(ellipse 60% 60% at 50% 60%, rgba(255, 42, 95, 0.12), transparent 70%);
  z-index: 0; pointer-events: none;
  filter: blur(6px);
}

.shot-caption .shot-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green);
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0, 255, 204, 0.25);
  background: var(--green-dim);
  margin-bottom: 18px;
}
.shot-caption h4 {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.shot-caption p { font-size: 15.5px; color: var(--text-2); max-width: 460px; }

/* ═════════ Drill-down marquee (3D conveyor) ═════════ */
.more-clickables-section { margin-top: 110px; overflow: hidden; padding: 10px 0 50px; }
.more-clickables-header { text-align: center; margin-bottom: 42px; padding: 0 32px; }
.more-clickables-header h3 { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; margin-bottom: 10px; }
.more-clickables-header p { color: var(--text-2); font-size: 15px; }
.marquee-plane {
  perspective: 1300px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  transform: rotateX(9deg) rotateZ(-1.2deg);
  transform-style: preserve-3d;
  padding: 30px 0;
}
.marquee-inner { display: flex; gap: 24px; width: max-content; will-change: transform; }
.marquee-card {
  width: 330px; height: 384px; flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  overflow: hidden;
  background: var(--panel-2);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}
.marquee-card:hover {
  transform: translateY(-12px) scale(1.04);
  border-color: rgba(255, 42, 95, 0.4);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.75), 0 0 44px rgba(255, 42, 95, 0.14);
}
.marquee-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ═════════ Market Compass ═════════ */
#compass { overflow: hidden; }
.compass-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.compass-visual { position: relative; }
.compass-visual-bg {
  position: absolute; inset: -16%;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(0, 255, 204, 0.10), transparent 70%);
  filter: blur(10px); pointer-events: none;
}
.compass-composition { position: relative; }
/* flat render — the old rotateY/rotateX tilt resampled the screenshot blurry */
.compass-comp-bg {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65);
}
.compass-comp-float-wrapper {
  position: absolute; right: -6%; bottom: -10%;
  width: 36%;
  pointer-events: none;
  animation: compass-bob 6.5s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 34px rgba(0, 255, 204, 0.18));
}
@keyframes compass-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2.5deg); }
}
.tagline { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.compass-copy h2 { margin-bottom: 20px; }
.compass-copy > p { color: var(--text-2); font-size: 16px; margin-bottom: 36px; max-width: 540px; }
.gate-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.gate-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.gate-item:hover {
  border-color: rgba(0, 255, 204, 0.3);
  transform: translateX(8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}
.gate-num {
  font-family: var(--font-display); font-size: 19px; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px rgba(0, 255, 204, 0.55);
  flex-shrink: 0; line-height: 1.45;
}
.gate-content { display: flex; flex-direction: column; gap: 4px; }
.gate-content strong { font-size: 15.5px; font-weight: 700; }
.gate-content span { font-size: 13.5px; color: var(--text-2); }

/* ═════════ About ═════════ */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }
.about-bio p { color: var(--text-2); font-size: 16px; margin-bottom: 18px; }
.about-bio a { color: var(--green); border-bottom: 1px solid rgba(0, 255, 204, 0.3); transition: border-color 0.2s; }
.about-bio a:hover { border-bottom-color: var(--green); }
.about-links { display: flex; flex-direction: column; gap: 12px; }
.about-link {
  display: flex; align-items: center; gap: 16px;
  padding: 17px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.about-link:hover { transform: translateX(7px); box-shadow: 0 12px 36px rgba(0,0,0,0.4); }
.about-link-yt:hover { border-color: rgba(255, 51, 102, 0.45); }
.about-link-dc:hover { border-color: rgba(88, 101, 242, 0.55); }
.about-link-tw:hover { border-color: var(--border-2); }
.about-link-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}
.about-link-icon svg { width: 19px; height: 19px; }
.about-link-yt .about-link-icon { color: #ff3344; }
.about-link-dc .about-link-icon { color: #7289da; }
.about-link-tw .about-link-icon { color: var(--text); }
.about-link-text { display: flex; flex-direction: column; }
.about-link-text strong { font-size: 14.5px; }
.about-link-text span { font-size: 12.5px; color: var(--muted); }

/* ═════════ Pricing ═════════ */
.pricing { position: relative; }
.pricing::before {
  content: '';
  position: absolute; left: 50%; top: 30%;
  width: 800px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 42, 95, 0.09), transparent 65%);
  pointer-events: none;
}
.pricing .sec-head { text-align: center; margin-left: auto; margin-right: auto; }
.pricing .sec-head p { margin-left: auto; margin-right: auto; }
.toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 42px; position: relative; }
.save-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--green);
  padding: 6px 12px; border-radius: 999px;
  background: var(--green-dim);
  border: 1px solid rgba(0, 255, 204, 0.3);
  transition: opacity 0.3s;
}
.pricing-toggle {
  position: relative;
  display: inline-flex;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
}
.toggle-slider {
  position: absolute; top: 4px; bottom: 4px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), #d91d4e);
  box-shadow: 0 4px 18px rgba(255, 42, 95, 0.4);
  transition: left 0.3s var(--ease), width 0.3s var(--ease);
}
.toggle-btn {
  position: relative; z-index: 1;
  font-size: 13.5px; font-weight: 600;
  color: var(--text-2);
  padding: 9px 22px; border-radius: 999px;
  transition: color 0.25s;
}
.toggle-btn.active { color: #fff; }

.price-wrap { display: flex; justify-content: center; }
.price-card {
  position: relative;
  width: 100%; max-width: 460px;
  padding: 40px 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--panel-2);
  backdrop-filter: blur(20px);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.price-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 42, 95, 0.7), rgba(255,255,255,0.08) 40%, rgba(0, 255, 204, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-header h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.price-header p { font-size: 13px; color: var(--muted); margin-top: 4px; }
.price-display { margin: 26px 0 4px; }
.price-new { display: flex; align-items: baseline; gap: 4px; }
.price-new .dollar { font-size: 24px; font-weight: 700; color: var(--text-2); }
.price-new .amount { font-family: var(--font-mono); font-size: 58px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.price-new .per { font-size: 15px; color: var(--muted); }
.price-meta { margin-bottom: 26px; }
.billed { font-size: 12.5px; color: var(--muted); font-family: var(--font-mono); }
.price-cta {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%;
  font-size: 15px; font-weight: 700;
  padding: 15px; border-radius: 13px;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #d91d4e);
  box-shadow: 0 10px 32px rgba(255, 42, 95, 0.4), inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
  margin-bottom: 28px;
}
.price-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(255, 42, 95, 0.55), inset 0 1px 0 rgba(255,255,255,0.22); }
.price-cta svg { width: 15px; height: 15px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.price-features li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--text-2); }
.price-features svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ═════════ Services ═════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 30px 28px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55); }
.service-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.service-card-timing .service-bar { background: linear-gradient(90deg, var(--accent), transparent); }
.service-card-macro .service-bar { background: linear-gradient(90deg, var(--amber), transparent); }
.service-card-consult .service-bar { background: linear-gradient(90deg, var(--green), transparent); }
.service-card-timing:hover { border-color: rgba(255, 42, 95, 0.4); }
.service-card-macro:hover { border-color: rgba(255, 170, 0, 0.4); }
.service-card-consult:hover { border-color: rgba(0, 255, 204, 0.4); }
.service-brand { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 14px; }
.service-sigma { color: var(--accent); }
.service-title { font-family: var(--font-sans); font-size: 19px; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.service-badge {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--amber);
  background: rgba(255, 170, 0, 0.12);
  border: 1px solid rgba(255, 170, 0, 0.3);
  padding: 3px 8px; border-radius: 999px;
}
.service-desc { font-size: 13.5px; color: var(--text-2); margin-bottom: 20px; }
.service-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; }
.service-amount { font-family: var(--font-mono); font-size: 34px; font-weight: 800; }
.service-currency { font-size: 12px; color: var(--muted); font-family: var(--font-mono); }
.service-period { font-size: 13px; color: var(--muted); }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex: 1; }
.service-features li { display: flex; gap: 10px; font-size: 13px; color: var(--text-2); align-items: flex-start; }
.service-check { font-weight: 800; flex-shrink: 0; }
.service-check-timing { color: var(--accent); }
.service-check-macro { color: var(--amber); }
.service-check-consult { color: var(--green); }
.service-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13.5px; font-weight: 700;
  padding: 13px; border-radius: 12px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.service-cta svg { width: 14px; height: 14px; }
.service-cta:hover { transform: translateY(-2px); }
.service-cta-timing:hover { border-color: var(--accent); background: var(--accent-dim); color: #ffb3c6; }
.service-cta-macro:hover { border-color: var(--amber); background: rgba(255, 170, 0, 0.1); color: #ffd98a; }
.service-cta-consult:hover { border-color: var(--green); background: var(--green-dim); color: #9affec; }
.services-foot { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 36px; font-family: var(--font-mono); }

/* ═════════ FAQ ═════════ */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(255, 42, 95, 0.3); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%;
  padding: 21px 26px;
  font-size: 15.5px; font-weight: 600;
  text-align: left;
  color: var(--text);
}
.faq-plus {
  width: 28px; height: 28px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  transition: transform 0.35s var(--ease), color 0.3s, border-color 0.3s, background 0.3s;
}
.faq-plus svg { width: 12px; height: 12px; }
.faq-item.open .faq-plus { transform: rotate(45deg); color: var(--accent); border-color: rgba(255, 42, 95, 0.45); background: var(--accent-dim); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  font-size: 14.5px; color: var(--text-2);
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 24px; }

/* ═════════ Final CTA ═════════ */
.final-cta {
  text-align: center;
  padding: 150px 0 160px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; left: 50%; bottom: -40%;
  width: 1200px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 45% at 50% 100%, rgba(255, 42, 95, 0.18), transparent 65%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 170%; height: 46%;
  transform: translateX(-50%) perspective(600px) rotateX(74deg);
  transform-origin: 50% 100%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 42, 95, 0.13) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255, 42, 95, 0.09) 0 1px, transparent 1px 64px);
  -webkit-mask-image: radial-gradient(ellipse 50% 90% at 50% 100%, #000 10%, transparent 70%);
  mask-image: radial-gradient(ellipse 50% 90% at 50% 100%, #000 10%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 { font-size: clamp(30px, 4.6vw, 54px); margin-bottom: 16px; position: relative; z-index: 1; }
.final-cta p { color: var(--text-2); font-size: 16px; margin-bottom: 36px; position: relative; z-index: 1; font-family: var(--font-mono); }
.final-cta .btn-primary { position: relative; z-index: 1; }

/* ═════════ Footer ═════════ */
footer { border-top: 1px solid var(--border); padding: 44px 0; background: rgba(5, 6, 10, 0.7); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-inner > div:first-child { display: flex; flex-direction: column; gap: 12px; font-size: 12.5px; color: var(--muted); }
.footer-links { display: flex; gap: 10px; align-items: center; font-size: 12.5px; }
.footer-links a { color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-dot { color: var(--muted); }
.footer-socials { display: flex; align-items: center; gap: 12px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.footer-social:hover { transform: translateY(-2px); color: var(--text); border-color: var(--border-2); }
.footer-social svg { width: 17px; height: 17px; }
.discord-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700;
  padding: 10px 20px; border-radius: 999px;
  color: #fff;
  background: #5865f2;
  box-shadow: 0 6px 22px rgba(88, 101, 242, 0.35);
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
}
.discord-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5); }
.discord-btn svg { width: 16px; height: 16px; }

/* ═════════ Responsive ═════════ */
@media (max-width: 1180px) {
  .fc-1 { left: -30px; }
  .fc-2 { right: -28px; }
  .fc-3 { right: -10px; }
}
@media (max-width: 1024px) {
  section { padding: 84px 0; }
  .fusion-inputs { grid-template-columns: 1fr 1fr; }
  .fusion-beams { display: none; }
  .fusion-score { margin-top: 22px; }
  .shot-row, .shot-row.flip { grid-template-columns: 1fr; gap: 36px; }
  .shot-row.flip .shot-visual { order: 1; }
  .shot-row.flip .shot-caption { order: 2; }
  .compass-split { grid-template-columns: 1fr; gap: 56px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .fc-1, .fc-3 { display: none; }
  .fc-2 { right: 6px; top: 8%; width: 200px; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-signin { display: none; }
  .hero { padding-top: 130px; }
  .hero-stats { gap: 30px; }
  .stage { padding-bottom: 50px; padding-left: 14px; padding-right: 14px; }
  .stage-3d { transform: perspective(1200px) rotateX(9deg); }
  @keyframes stage-in {
    from { opacity: 0; transform: perspective(1200px) rotateX(24deg) translateY(60px) scale(0.94); }
    to   { opacity: 1; transform: perspective(1200px) rotateX(9deg) translateY(0) scale(1); }
  }
  .fc-2 { display: none; }
  .gate-chip { display: none; }
  .dash-bar { height: 30px; }
  .shot-detail { width: 70%; }
  .marquee-card { width: 250px; height: 300px; }
  .fusion-inputs { grid-template-columns: 1fr; }
  .fusion-score { padding: 24px 20px 22px; }
  .compass-comp-float-wrapper { right: -3%; width: 34%; }
  .final-cta { padding: 100px 0 120px; }
}

/* ═════════ Reduced motion ═════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .h-anim { opacity: 1; transform: none; }
  .stage-3d { opacity: 1; }
}
