/* ══════════════════════════════════════════════
   THREADS AI v4 — Cinematic Scroll Design
   void black · Space Mono labels · Playfair titles
   ══════════════════════════════════════════════ */

:root {
  --void:    #000000;
  --white:   #ffffff;
  --ash:     #c6c6c6;
  --graph:   #4d4d4d;
  --steel:   #808080;
  --fog:     #999999;
  --violet:  #343755;
  --accent:  #e8e8e8;

  --mono: 'Space Mono', 'Courier New', monospace;
  --serif: 'Playfair Display', Georgia, serif;

  /* Smoother easing curves */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
  --ease-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  /* Smooth scroll for whole page */
  scroll-behavior: smooth;
}
body {
  background: var(--void);
  color: var(--white);
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
button { cursor: none; }
em { font-style: italic; color: var(--white); }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.15s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
  mix-blend-mode: difference;
  will-change: left, top;
}
.cursor.hover { width: 60px; height: 60px; border-color: rgba(255,255,255,0.8); }
.cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.05s;
}

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--void);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity 1s var(--ease-in), transform 1s var(--ease-in);
}
.loader.hidden { opacity: 0; pointer-events: none; transform: scale(1.03); }
.loader__logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.loader__logo-box {
  width: 32px; height: 32px;
  border: 1px solid var(--graph);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 16px; font-weight: 700;
  letter-spacing: 0;
}
.loader__logo-name {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--ash);
}
.loader__bar {
  width: 200px; height: 1px;
  background: var(--graph); overflow: hidden;
}
.loader__fill {
  height: 100%; background: var(--white);
  width: 0%; transition: width 0.12s linear;
}
.loader__label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--ash);
}

/* ── BUTTONS ── */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--fog);
  color: var(--white); border-radius: 4px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 10px 20px;
  transition: border-color 0.3s var(--ease-out), color 0.3s, background 0.3s, transform 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.04); transform: translateY(-1px); }
.btn-ghost--dim { border-color: var(--graph); color: var(--ash); }
.btn-ghost--dim:hover { border-color: var(--steel); color: var(--white); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--void);
  border: none; border-radius: 4px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 12px 24px;
  transition: opacity 0.25s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.btn-primary--full { width: 100%; justify-content: center; padding: 16px; margin-top: 24px; }

.btn-violet {
  background: var(--violet); color: var(--white);
  border: 1px solid var(--violet); border-radius: 4px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 16px;
  transition: opacity 0.2s;
}
.btn-violet:hover { opacity: 0.8; }
.btn-outline {
  background: transparent; border: 1px solid var(--graph);
  color: var(--ash); border-radius: 4px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 12px;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--steel); }

.hud-label {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--ash);
}

/* ── SITE HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px,4vw,60px);
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header__logo {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.logo-icon-wrap {
  display: flex; align-items: center; justify-content: center;
}
.logo-name {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
}
.pill-nav {
  display: flex; align-items: center;
  border: 1px solid var(--graph); border-radius: 500px;
  padding: 6px 14px; gap: 0;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(12px);
}
.pill-nav__a {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white); padding: 0 12px;
  transition: color 0.2s;
}
.pill-nav__a:hover { color: var(--ash); }
.pill-nav__sep { width: 1px; height: 12px; background: var(--graph); }

/* ── SCENE DOTS ── */
.scene-dots {
  position: fixed; right: clamp(16px,3vw,32px);
  top: 50%; transform: translateY(-50%);
  z-index: 200; display: flex; flex-direction: column; gap: 10px;
}
.scene-dot {
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid var(--graph); background: transparent;
  transition: background 0.4s var(--ease-out), border-color 0.4s, transform 0.4s var(--ease-out);
  padding: 0;
}
.scene-dot.active {
  background: var(--white); border-color: var(--white);
  transform: scale(1.5);
}

/* ── AUDIO PILL ── */
.audio-pill {
  position: fixed; top: 20px; left: 50%;
  transform: translateX(-50%); z-index: 200;
  display: flex; align-items: center; gap: 8px;
}
.audio-pill__btn {
  width: 24px; height: 24px; border: 1px solid var(--graph);
  border-radius: 50%; background: rgba(0,0,0,0.4); color: var(--ash);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.audio-pill__btn:hover { border-color: var(--white); color: var(--white); }
.audio-pill__label { font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; color: var(--ash); }
.audio-bars { display: flex; align-items: flex-end; gap: 2px; height: 12px; }
.audio-bars i {
  display: block; width: 2px; background: var(--graph);
  border-radius: 1px; transform-origin: bottom;
  animation: audioBounce 1.4s ease-in-out infinite;
  font-style: normal;
}
.audio-bars i:nth-child(1) { height: 4px;  animation-delay: 0s; }
.audio-bars i:nth-child(2) { height: 9px;  animation-delay: 0.2s; }
.audio-bars i:nth-child(3) { height: 12px; animation-delay: 0.4s; }
.audio-bars i:nth-child(4) { height: 7px;  animation-delay: 0.6s; }
.audio-bars i:nth-child(5) { height: 10px; animation-delay: 0.8s; }
.audio-bars.paused i { animation-play-state: paused; }
.audio-bars.playing i { background: var(--white); }
@keyframes audioBounce {
  0%,100% { transform: scaleY(0.3); }
  50%      { transform: scaleY(1); }
}

/* ══════════════════════════════════════
   SCROLL PIN ARCHITECTURE — SMOOTHER
══════════════════════════════════════ */
.scroll-pin {
  height: 280vh; /* slightly more travel = smoother transitions */
  position: relative;
}
.scene {
  position: sticky; top: 0; width: 100%; height: 100vh;
  overflow: hidden; display: flex;
  align-items: center; justify-content: center;
}

/* ── VIDEO LAYER ── */
.scene-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform-origin: center center;
  will-change: transform, opacity;
  transition: opacity 0.3s;
}

/* ── VIGNETTE ── */
.scene-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.65) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 18%, transparent 72%, rgba(0,0,0,0.9) 100%);
}
.scene-vignette--mika {
  background:
    linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.6) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 15%, transparent 75%, rgba(0,0,0,0.9) 100%);
}
/* Scene 3 — extra left darkening so text pops */
.scene-vignette--parse {
  background:
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.4) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 18%, transparent 72%, rgba(0,0,0,0.9) 100%);
}

/* ── SCAN LINE ── */
.scan-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 70%, transparent 100%);
  z-index: 2;
  animation: scanMove 10s linear infinite;
  pointer-events: none;
}
@keyframes scanMove {
  0%   { top: -1px; opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── SCENE TRANSITION ── */
.scene-transition {
  position: absolute; inset: 0; z-index: 10;
  pointer-events: none; background: var(--void);
  opacity: 0; will-change: opacity;
}

/* ══════════════════════════════════════
   SCENE 0 — MIKA
══════════════════════════════════════ */
.hud-topleft {
  position: absolute; top: 80px; left: clamp(20px,4vw,60px); z-index: 3;
}
.hud-data {
  position: absolute; right: clamp(20px,4vw,60px); top: 50%;
  transform: translateY(-50%); z-index: 3;
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0;
  animation: fadeInRight 1s var(--ease-out) 1.5s forwards;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateY(-50%) translateX(20px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.hud-row { display: flex; gap: 16px; align-items: baseline; }
.hud-key { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--graph); }
.hud-val { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--ash); }

.hero-copy {
  position: absolute;
  bottom: clamp(60px, 8vh, 100px);
  left: clamp(20px,4vw,60px);
  z-index: 3; max-width: 560px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.02em; margin: 10px 0 20px;
  overflow: hidden;
}
.hero-title__line {
  display: block; opacity: 0; transform: translateY(60px);
  animation: lineReveal 0.9s var(--ease-out) forwards;
}
.hero-title__line[data-stagger="0"] { animation-delay: 0.3s; }
.hero-title__line[data-stagger="1"] { animation-delay: 0.5s; }
.hero-title__line[data-stagger="2"] { animation-delay: 0.7s; }
@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.8;
  color: var(--ash); margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}
.hero-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Free badge */
.hero-free-badge {
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}
.free-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4cff8a;
  box-shadow: 0 0 8px rgba(76,255,138,0.6);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 6px rgba(76,255,138,0.4); }
  50%     { box-shadow: 0 0 14px rgba(76,255,138,0.8); }
}

.hero-stats {
  position: absolute;
  bottom: clamp(60px,8vh,100px); right: clamp(20px,4vw,60px); z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}
.stat-item { text-align: right; padding: 12px 0; }
.stat-num {
  display: block; font-family: var(--mono);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700;
  line-height: 1; letter-spacing: -0.02em;
}
.stat-lbl {
  font-family: var(--mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--ash); display: block; margin-top: 4px;
}
.stat-sep { width: 40px; height: 1px; background: var(--graph); margin-left: auto; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator__line {
  width: 1px; height: 48px; background: var(--graph);
  overflow: hidden; position: relative;
}
.scroll-indicator__fill {
  position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--white);
  animation: scrollFill 2.2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes scrollFill {
  from { top: -100%; }
  to   { top: 100%; }
}

/* ══════════════════════════════════════
   SCENE CONTENT (all non-mika)
══════════════════════════════════════ */
.scene-content {
  position: absolute; z-index: 3; max-width: 480px;
  opacity: 0; will-change: opacity, transform;
}
.scene-content--left  { left: clamp(20px,4vw,60px); top: 50%; transform: translateY(-50%); }
.scene-content--right { right: clamp(20px,4vw,60px); top: 50%; transform: translateY(-50%); }
.scene-content--center { left: 50%; top: 50%; transform: translate(-50%,-50%); text-align: center; }

/* Scene 3 parse override — push to left with backdrop */
.scene-content--parse {
  left: clamp(20px,4vw,60px);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-left: 1px solid rgba(255,255,255,0.07);
  padding: 24px 28px;
  border-radius: 4px;
}

.scene-content.in {
  animation: sceneContentIn 1s var(--ease-out) forwards;
}
@keyframes sceneContentIn {
  from { opacity: 0; transform: translateY(calc(-50% + 30px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}
.scene-content--center.in {
  animation: sceneContentInCenter 1s var(--ease-out) forwards;
}
@keyframes sceneContentInCenter {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 30px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.scene-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--ash);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.scene-tag::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--graph);
}
.scene-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem,5vw,4rem); font-weight: 400;
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px;
}
.scene-body {
  font-family: var(--serif);
  font-size: clamp(0.9rem,1.8vw,1.1rem); line-height: 1.75; color: var(--ash);
}

/* Metrics row */
.scene-metrics { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric__val { font-family: var(--mono); font-size: 16px; font-weight: 700; }
.metric__lbl { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ash); }

/* Pulse */
.scene-pulse { display: flex; align-items: center; margin-top: 24px; gap: 0; }
.pulse-ring {
  position: relative; width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  animation: pulseRing 2s ease-in-out infinite;
}
.pulse-dot {
  position: absolute; width: 6px; height: 6px;
  left: 4px; top: 4px; border-radius: 50%; background: var(--white);
}
.scene-pulse { position: relative; }
.pulse-ring { display: inline-block; position: relative; margin-right: 8px; }
.pulse-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
@keyframes pulseRing {
  0%  { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Growth chart */
.growth-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-top: 24px; }
.growth-bar {
  flex: 1; height: var(--h); background: var(--graph);
  border-radius: 2px 2px 0 0; position: relative;
  transition: background 0.3s;
}
.growth-bar::after {
  content: attr(data-label); position: absolute; bottom: -18px;
  left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 8px; color: var(--graph); white-space: nowrap;
}
.growth-bar--peak { background: var(--white) !important; }
.scene-content.in .growth-bar {
  animation: growBar 0.9s var(--ease-out) forwards;
}
@keyframes growBar {
  from { height: 0; }
  to   { height: var(--h); }
}

/* Platform tags */
.platform-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.ptag {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid var(--graph); padding: 4px 10px; border-radius: 3px;
  color: var(--ash); transition: border-color 0.3s, color 0.3s;
}
.ptag:hover { border-color: var(--white); color: var(--white); }

/* Data cards (floating) */
.data-card {
  position: absolute; z-index: 3;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--graph); border-radius: 8px;
  padding: 12px 16px; display: flex; flex-direction: column; gap: 4px;
  backdrop-filter: blur(8px); opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.data-card.in { opacity: 1; }
/* Moved to right side for scene 3 */
.data-card--tl { top: 20%; left: clamp(20px,6vw,80px); transform: translateY(10px); }
.data-card--tr { top: 20%; right: clamp(20px,6vw,80px); transform: translateY(10px); }
.data-card--br { bottom: 20%; right: clamp(20px,6vw,80px); transform: translateY(-10px); }
.data-card.in.data-card--tl { transform: translateY(0); }
.data-card.in.data-card--tr { transform: translateY(0); }
.data-card.in.data-card--br { transform: translateY(0); }
.data-card__val { font-family: var(--mono); font-size: 20px; font-weight: 700; }

/* Scene CTA corner */
.scene-cta-corner {
  position: absolute; bottom: clamp(32px,5vh,60px);
  left: 50%; transform: translateX(-50%); z-index: 3;
  opacity: 0; transition: opacity 0.6s var(--ease-out);
}
.scene-cta-corner.in { opacity: 1; }

/* ══════════════════════════════════════
   FINAL SCENE
══════════════════════════════════════ */
.scene-final {
  position: relative; min-height: 100vh;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 80px clamp(20px,5vw,80px) 60px;
}
.final-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.5;
}
.final-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 700px; width: 100%;
}
.final-eyebrow {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--ash); margin-bottom: 20px;
}
.final-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem,6vw,5rem); font-weight: 400;
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 20px;
  word-break: break-word; overflow-wrap: break-word;
}
.final-sub {
  font-family: var(--serif); font-size: clamp(0.95rem,2vw,1.1rem); line-height: 1.7;
  color: var(--ash); margin-bottom: 32px;
}
.final-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
}

/* Free access block (replaces pricing tiers) */
.free-access-block {
  border: 1px solid var(--graph); border-radius: 8px;
  padding: 28px 32px; text-align: left; position: relative;
  background: rgba(255,255,255,0.015); margin-top: 8px;
}
.free-access-badge {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  border: 1px solid rgba(76,255,138,0.5); color: #4cff8a;
  padding: 3px 10px; border-radius: 3px; display: inline-block;
  margin-bottom: 12px;
}
.free-access-price {
  font-family: var(--mono); font-size: 3rem; font-weight: 700;
  line-height: 1; margin-bottom: 8px;
}
.free-access-desc {
  font-family: var(--serif); font-size: 14px;
  line-height: 1.6; color: var(--ash); margin-bottom: 20px;
}
.free-access-list {
  display: flex; flex-direction: column; gap: 10px;
}
.fal-item {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ash); display: flex; align-items: center; gap: 10px;
}
.fal-check {
  color: #4cff8a; font-size: 12px; flex-shrink: 0; line-height: 1;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--graph);
  padding: 28px clamp(20px,4vw,60px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.site-footer__links { display: flex; gap: 16px; align-items: center; }
.site-footer__links a { color: var(--graph); transition: color 0.2s; }
.site-footer__links a:hover { color: var(--white); }

/* ══════════════════════════════════════
   FUNNEL MODAL
══════════════════════════════════════ */
.funnel-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.funnel-overlay.open { opacity: 1; pointer-events: all; }
.funnel-modal {
  background: var(--void); border: 1px solid var(--graph); border-radius: 12px;
  padding: 44px 40px; max-width: 520px; width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.5s var(--ease-out);
  max-height: 88vh; overflow-y: auto;
}
.funnel-overlay.open .funnel-modal { transform: translateY(0) scale(1); }
.funnel-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: 1px solid var(--graph);
  color: var(--ash); width: 30px; height: 30px;
  border-radius: 50%; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.funnel-close:hover { border-color: var(--white); color: var(--white); }
.funnel-progress-track { height: 1px; background: var(--graph); margin-bottom: 8px; overflow: hidden; }
.funnel-progress-fill { height: 100%; background: var(--white); transition: width 0.5s var(--ease-out); width: 20%; }
.funnel-progress-lbl { font-family: var(--mono); font-size: 10px; color: var(--graph); text-align: right; margin-bottom: 36px; letter-spacing: 0.1em; }
.fq { display: none; }
.fq.active { display: block; animation: fqIn 0.4s var(--ease-out); }
@keyframes fqIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
.fq-icon { font-size: 26px; color: var(--graph); margin-bottom: 16px; }
.fq-text { font-family: var(--serif); font-size: clamp(1.1rem,3vw,1.4rem); font-weight: 400; line-height: 1.35; margin-bottom: 28px; }
.fq-opts { display: flex; flex-direction: column; gap: 8px; }
.fq-opt {
  background: transparent; border: 1px solid var(--graph); color: var(--ash);
  border-radius: 4px; padding: 14px 16px; text-align: left;
  font-family: var(--mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s var(--ease-out);
}
.fq-opt:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.03); transform: translateX(4px); }
.fq--result .fq-check {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--graph);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 24px; font-weight: 700; margin-bottom: 24px;
  animation: popIn 0.5s var(--ease-spring);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.fq-sub { font-family: var(--serif); font-size: 1rem; line-height: 1.7; color: var(--ash); margin-bottom: 24px; }
.fq-result-stats { display: flex; gap: 40px; margin-bottom: 0; }
.fq-result-stats > div { display: flex; flex-direction: column; gap: 4px; }
.fq-big { font-family: var(--mono); font-size: 2.2rem; font-weight: 700; display: block; }
.fq-fine { font-family: var(--mono); font-size: 9px; color: var(--graph); text-align: center; margin-top: 14px; letter-spacing: 0.12em; }

/* ── COOKIE ── */
.cookie-bar {
  position: fixed; bottom: 20px; right: 20px; z-index: 300;
  background: var(--void); border: 1px solid var(--graph); border-radius: 8px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px; max-width: 300px;
  font-family: var(--serif); font-size: 13px; line-height: 1.6;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.cookie-bar.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .pill-nav { display: none; }
  .scene-dots { right: 10px; }
  .audio-pill { display: none; }

  .hero-copy { max-width: none; right: 20px; }
  .hero-title { font-size: clamp(2.4rem,10vw,3.5rem); }
  .hero-stats { display: none; }
  .hud-data { display: none; }

  .scene-content--left,
  .scene-content--right { left: 20px; right: 20px; max-width: none; }
  .scene-content--right { right: 20px; left: 20px; }
  .scene-content--parse { left: 20px; right: 20px; max-width: none; }

  .data-card--tr { top: 8%; right: 16px; }
  .data-card--br { bottom: 12%; right: 16px; }

  .scroll-pin { height: 220vh; }

  .free-access-block { padding: 20px; }

  .funnel-modal { padding: 36px 20px; }
  .cookie-bar { left: 16px; right: 16px; max-width: none; bottom: 16px; }
  .scene-cta-corner { bottom: 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-ghost { text-align: center; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--graph); }
::selection { background: rgba(255,255,255,0.1); }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
