:root {
  --ink: #f5f1ea;          /* warm off-white */
  --bg: #070503;           /* warm near-black (matches footage) */
  --amber: #f0a13c;        /* engine amber */
  --cyan: #3fd9e8;         /* HUD cyan */
  --gold: #ffc869;
  --dim: rgba(245, 241, 234, 0.62);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Barlow", system-ui, sans-serif;
  overflow-x: hidden;
}

/* ---------- Fixed nav ---------- */
.hud {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--dim);
  background: linear-gradient(180deg, rgba(7,5,3,0.92) 0%, rgba(7,5,3,0.55) 65%, rgba(7,5,3,0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hud-brand {
  color: var(--ink); font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 0.45em;
  white-space: nowrap;
}
.hud-brand .brand-bolt, .foot-brand .brand-bolt { flex: 0 0 auto; }
.hud-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px;
  border: 1px solid rgba(63,217,232,0.3);
  border-radius: 999px;
  background: rgba(63,217,232,0.05);
  color: var(--cyan);
  font-size: 10px; letter-spacing: 0.2em;
}
.hud-pill i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(63,217,232,0.9);
  animation: blip 2s ease-in-out infinite;
}
.hud-links { display: flex; gap: 22px; }
.hud-links a {
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}
.hud-links a:hover { color: var(--cyan); }
@media (max-width: 880px) { .hud-pill { display: none; } }

/* ---------- Full-page matrix rain (below the hero) ---------- */
.rain-fixed {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
}

/* ---------- Cinematic scroll section ---------- */
.cinematic {
  position: relative;
  z-index: 2;               /* opaque hero rides above the fixed rain */
  height: 520vh;            /* scroll distance = playback length */
}
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg);
}
#frame-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 45%, rgba(0,0,0,0.6) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 25%, transparent 70%, rgba(0,0,0,0.7) 100%);
}

/* ---------- Overlay copy ---------- */
.overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}
/* upper third, centered without a transform — the scrub engine writes an
   inline translateY each frame, which would overwrite translate(-50%,-50%) */
.reveal-line {
  position: absolute;
  left: 0; right: 0;
  top: clamp(108px, 18vh, 240px);
  margin: 0 auto;
  width: min(92vw, 1100px);
  text-align: center;
  opacity: 0;
  pointer-events: none; /* opacity:0 still hit-tests — scrub engine re-enables per-frame when visible */
  will-change: opacity, transform;
}
/* soft radial scrim behind each overlay block — readability over bright frames, edges fade to nothing */
.reveal-line::before {
  content: "";
  position: absolute;
  inset: -90px -120px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse closest-side at 50% 50%, rgba(0,0,0,0.3), rgba(0,0,0,0.3) 55%, transparent 100%);
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.42em;
  color: var(--amber);
  margin-bottom: 18px;
}
/* hero-only: layered dark stack so the kicker holds over bright footage */
#hero .overlay .eyebrow {
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 4px 18px rgba(0,0,0,0.7), 0 8px 40px rgba(0,0,0,0.55);
}
.reveal-line h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 5.6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 4px 18px rgba(0,0,0,0.7), 0 8px 40px rgba(0,0,0,0.55);
}
/* beat between the question (lines 1-2) and the answer (line 3) */
.reveal-line h1 .h1-answer { display: block; margin-top: 0.3em; }
/* accent words (option F): colored drop shadow, text stays white. color first = paints on top of the dark legibility stack */
.reveal-line h1 .acc-amber { text-shadow: 3px 4px 6px rgba(240,161,60,0.72), 0 2px 6px rgba(0,0,0,0.9), 0 4px 18px rgba(0,0,0,0.7), 0 8px 40px rgba(0,0,0,0.55); }
.reveal-line h1 .acc-cyan  { text-shadow: 3px 4px 6px rgba(63,217,232,0.72), 0 2px 6px rgba(0,0,0,0.9), 0 4px 18px rgba(0,0,0,0.7), 0 8px 40px rgba(0,0,0,0.55); }
/* short amber hairline between the headline and the subline, fades at both ends */
.hero-rule { width: 64px; height: 2px; margin: 18px auto 0; border-radius: 2px; background: linear-gradient(90deg, transparent, rgba(240,161,60,0.9), transparent); box-shadow: 0 0 10px rgba(240,161,60,0.45); }
/* hero solution line — sits under the H1 painpoint, bolder than the old kicker */
.hero-subline {
  margin: 26px auto 0;
  max-width: 680px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: clamp(1.24rem, 2.8vw, 1.62rem);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 4px 18px rgba(0,0,0,0.7), 0 8px 40px rgba(0,0,0,0.55);
}
.hero-h2-kick {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.6vw, 1.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 4px 18px rgba(0,0,0,0.7);
}
.reveal-line h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6.5vw, 5.2rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 60px rgba(63,217,232,0.38), 0 2px 6px rgba(0,0,0,0.9), 0 4px 18px rgba(0,0,0,0.7), 0 8px 40px rgba(0,0,0,0.55);
}
.reveal-line .support {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto 30px;
  /* readability plate: this paragraph sits over the busy HUD footage, so a
     rounded dark panel + blur lifts it off the background */
  padding: 18px 28px;
  background: rgba(7,5,3,0.60);
  border: 1px solid rgba(245,241,234,0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 4px 18px rgba(0,0,0,0.7), 0 8px 40px rgba(0,0,0,0.55);
}
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 4px;
  transition: transform 0.2s, background 0.25s, color 0.25s;
}
.btn.primary {
  background: var(--amber);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(240, 161, 60, 0.35);
}
.btn.primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn.ghost {
  color: var(--cyan);
  border: 1px solid rgba(63, 217, 232, 0.5);
}
.btn.ghost:hover { border-color: var(--cyan); transform: translateY(-2px); }
/* hero CTAs — dark backing plates so both buttons read over bright footage */
#hero .cta-row .btn {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#hero .cta-row .btn.ghost::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: 9px;
  background: rgba(20,17,12,0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#hero .cta-row .btn.primary {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
#hero .cta-row .btn.ghost {
  color: #fff;
  border-color: rgba(255,200,105,0.6);
}
#hero .cta-row .btn.ghost:hover { border-color: var(--gold); }

/* ---------- Telemetry corners ---------- */
.telemetry {
  position: absolute;
  z-index: 12;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(63, 217, 232, 0.75);
}
.tl { top: 90px; left: 28px; }
.tr { top: 90px; right: 28px; }
.bl { bottom: 70px; left: 28px; }
.br { bottom: 70px; right: 28px; }
.bl-caret { animation: blip 1s steps(1) infinite; }

/* ---------- Progress ---------- */
.progress {
  position: absolute;
  left: 28px; right: 28px; bottom: 44px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 12;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  box-shadow: 0 0 12px var(--amber);
}
.scroll-hint {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--cyan);
  animation: bob 1.8s ease-in-out infinite, holoPulse 4.4s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ---------- scroll reveal (IO already wired in scroll-cinematic.js) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- shared HUD corner brackets ---------- */
.hud-brackets { position: absolute; inset: 8px; pointer-events: none; }
.hud-brackets i { position: absolute; width: 22px; height: 22px; border: 2px solid rgba(63,217,232,0.5); }
.hud-brackets i:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud-brackets i:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud-brackets i:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud-brackets i:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hud-brackets.gold i { border-color: rgba(240,161,60,0.5); }
/* hero variant — soft cyan corners only, sits clear of nav + progress bar */
.hero-brackets { inset: 58px 14px 58px; z-index: 11; }
.hero-brackets i { width: 26px; height: 26px; border-width: 1px; border-color: rgba(63,217,232,0.3); }

/* anchor landing: clear the fixed .hud nav on in-page jumps (native fallback;
   Lenis anchor clicks get the same offset in scroll-cinematic.js) */
section[id] { scroll-margin-top: 72px; }

/* ---------- RECEIPTS — builder block + numbers band ---------- */
.receipts {
  position: relative;
  z-index: 1;
  padding: 96px 28px 90px;
  background-color: rgba(7,5,3,0.70); /* dark base: fixed rain reads as clear texture; text zones carry their own darker pads */
  background-image: radial-gradient(80% 60% at 50% 0%, rgba(63,217,232,0.06), transparent 60%);
  border-top: 1px solid rgba(63,217,232,0.12);
}
.receipts-inner { max-width: 1240px; margin: 0 auto; }
.builder {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: stretch;
}
.builder-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 6px 0 24px;
}
.builder-p { font-size: 1.06rem; line-height: 1.7; color: rgba(245,241,234,0.82); max-width: 620px; }
.builder-p + .builder-p { margin-top: 14px; }
.builder-p.emph { color: var(--gold); font-weight: 600; }
.builder-micro {
  margin-top: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; line-height: 2;
  color: var(--cyan); /* static fallback if the animation is ever suppressed */
  border-left: 2px solid var(--cyan);
  padding-left: 12px;
  animation: holoPulse 4.4s ease-in-out infinite; /* prominence — same family as .grow-micro */
}
/* portrait plate — Joe portrait (.bp-photo) over the HUD circuit base;
   the circuit grid shows while the photo loads, brackets + readout ride on top */
.builder-plate {
  position: relative;
  min-height: 380px;
  border-radius: 10px;
  border: 1px solid rgba(63,217,232,0.18);
  background:
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(63,217,232,0.05) 17px 18px),
    repeating-linear-gradient(90deg, transparent 0 17px, rgba(63,217,232,0.05) 17px 18px),
    radial-gradient(60% 50% at 50% 42%, rgba(63,217,232,0.08), transparent 70%),
    #0a0908;
  overflow: hidden;
}
.bp-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 20%; /* landscape REVXL-sign source — face right-of-center, sign top-left stays in frame */
}
/* scrim + subtle inner shadow ABOVE the photo (inset shadow on the plate itself
   would paint behind children); readout/brackets ride above this layer */
.builder-plate::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(7,5,3,0.16), transparent 28%, transparent 56%, rgba(7,5,3,0.88) 100%);
  box-shadow: inset 0 0 64px rgba(0,0,0,0.5);
}
.builder-plate .hud-brackets { z-index: 2; }
.bp-readout {
  position: absolute; left: 26px; right: 26px; bottom: 22px;
  z-index: 2;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; letter-spacing: 0.2em; line-height: 2.1;
  color: rgba(63,217,232,0.7);
}
.bp-readout b { color: rgba(245,241,234,0.85); font-weight: 600; }

.numbers { margin-top: 80px; }
.num-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.num-card { position: relative; padding: 36px 26px 32px; }
.num-card + .num-card { border-left: 1px solid rgba(255,255,255,0.08); }
.num-card::before {
  content: "";
  position: absolute; top: -1px; left: 26px;
  width: 26px; height: 2px;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(240,161,60,0.6);
}
.num-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.num-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.num-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.num-stat {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.3rem, 4.4vw, 3.9rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 44px rgba(240,161,60,0.28);
}
/* compound stats (e.g. "5 days -> 3 hrs") run smaller so they hold one line */
.num-stat.compact {
  font-size: clamp(1.45rem, 3.2vw, 2.6rem);
  line-height: 1.35; /* matches the visual height of the big single numerals */
  white-space: nowrap;
}
.num-label {
  display: block;
  margin-top: 13px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.14em; line-height: 1.75;
  text-transform: uppercase;
  color: var(--dim);
}
/* cost-of-waiting band closer — the question the four cards are building toward */
.num-micro {
  margin: 30px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  line-height: 1.5;
  color: var(--gold);
}

/* ---------- TESTIMONIALS — counter-scrolling proof rows ---------- */
.testi { margin-top: 64px; }
/* row = drift viewport; vertical padding gives the hover lift + glow room,
   edge mask fades cards in/out instead of hard-clipping at the column edge */
.testi-row {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testi-row:active { cursor: grabbing; }
/* reduced motion: static rows, native horizontal scroll */
.testi-row.is-static { overflow-x: auto; }
.testi-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
/* style C (Joe's pick): dark glass, gold frame, cyan energy rail on the left */
.t-card {
  position: relative;
  display: flex; flex-direction: column;
  flex: 0 0 360px; width: 360px;
  background: rgba(14,11,8,0.92);
  border: 2px solid rgba(255,200,105,0.85);
  border-left: none;
  border-radius: 10px;
  padding: 24px 26px 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.t-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; border-radius: 10px 0 0 10px;
  background: linear-gradient(180deg, var(--cyan), rgba(63,217,232,0.15));
}
.t-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6), 0 0 36px rgba(255,200,105,0.18), -14px 0 34px rgba(63,217,232,0.12);
  z-index: 2;
}
.t-date {
  position: absolute; top: 22px; right: 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px; letter-spacing: 0.14em;
  color: var(--dim);
}
.t-kick {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px; letter-spacing: 0.24em;
  color: var(--cyan);
  margin-bottom: 10px;
}
.t-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900; font-size: 44px; line-height: 0.6;
  color: var(--gold);
  margin-bottom: 12px;
}
.t-quote {
  font-size: 16px; line-height: 1.55;
  color: var(--ink);
  margin-bottom: 18px;
}
.t-ctx {
  margin: -8px 0 18px;
  font-size: 12.5px; line-height: 1.6;
  color: var(--dim);
}
.t-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-ava {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255,200,105,0.5);
  flex: 0 0 auto;
}
.t-name {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800; font-size: 17px; letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}
.t-handle {
  display: inline-block; margin-top: 3px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.06em;
  color: var(--cyan); text-decoration: none;
  transition: color 0.2s;
}
.t-handle:hover { color: var(--gold); }
.t-biz { display: block; font-size: 12px; color: var(--dim); margin-top: 2px; }

/* ---------- WATCH — mission-control video wall ---------- */
.watch {
  position: relative;
  z-index: 1;
  padding: 80px 28px 110px;
  background-color: rgba(7,5,3,0.70); /* dark base: fixed rain reads as clear texture; text zones carry their own darker pads */
  background-image: radial-gradient(90% 70% at 50% -10%, rgba(63,217,232,0.07), transparent 55%);
  border-top: 1px solid rgba(63,217,232,0.12);
}
.watch-head { max-width: 1240px; margin: 0 auto 38px; }
.watch-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-top: 6px;
}
.watch-sub { color: var(--dim); font-size: 1.05rem; margin-top: 10px; max-width: 560px; }
.watch-rail {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  align-items: center; justify-content: space-between;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.watch-sync {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--cyan);
}
.watch-sync::before { content: "● "; color: var(--amber); animation: blip 2s ease-in-out infinite; }
@keyframes blip { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.feed-loading, .feed-err {
  text-align: center; padding: 60px 0;
  font-family: "JetBrains Mono", monospace; letter-spacing: 0.2em;
  color: var(--dim); font-size: 13px;
}
.feed-err a { color: var(--cyan); }

/* ---------- 3D content wheel (Jarvis ring) ---------- */
.wheel-stage {
  position: relative;
  max-width: 1400px;
  /* front cards project ~72px past the stage top (perspective scale on the
     400px faces), so the stage needs real clearance from the logo rail above */
  margin: 80px auto 0;
  height: 486px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.wheel-stage:active { cursor: grabbing; }
.wheel-stage::before {
  /* dark pad behind the ring so the page rain never fights the cards */
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: min(96vw, 1200px); height: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(60% 55% at 50% 50%, rgba(4,3,2,0.92), rgba(4,3,2,0.55) 60%, transparent 78%);
  pointer-events: none;
}
.wheel-scene {
  position: absolute; inset: 0;
  perspective: 1500px;
  overflow: visible;
}
/* v1 camera restored (Joe: first angle was better) — no rotateX tilt, head-on orbit */
.wheel-tilt {
  position: absolute;
  left: 50%; top: 50%;
  transform-style: preserve-3d;
}
.wheel-ring {
  position: absolute;
  transform-style: preserve-3d;
  width: 0; height: 0;
}
.wheel-card {
  position: absolute;
  width: 212px; height: 340px;
  left: -106px; top: -170px;
  transform-style: preserve-3d;
  border-radius: 10px;
  will-change: transform;
}
/* depth dimming lives INSIDE each face — filter/opacity on the 3D card
   flattens preserve-3d in Chrome and exposes mirrored front faces */
.wc-dim {
  position: absolute; inset: 0;
  z-index: 9;
  background: rgb(4, 3, 2);
  opacity: var(--dimA, 0);
  pointer-events: none;
  border-radius: inherit;
}
.wc-face {
  position: absolute; inset: 0;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* FRONT — the content */
.wc-front {
  background: #0c0a08;
  border: 1px solid rgba(255,255,255,0.14);
}
.wc-front img, .wc-preview {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.wc-preview { z-index: 1; background: #000; }
.wc-scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(7,5,3,0.55) 0%, transparent 26%, transparent 50%, rgba(7,5,3,0.94) 100%);
}
.wc-top {
  position: absolute; top: 10px; left: 10px; right: 10px; z-index: 4;
  display: flex; align-items: center; gap: 6px;
  font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.12em;
}
.wc-badge { font-weight: 600; padding: 2px 7px; border-radius: 3px; background: var(--cyan); color: #04222a; }
/* IG cards carry the real Instagram glyph (gradient SVG), not a text chip */
.wc-badge.wc-badge-ig { display: inline-flex; align-items: center; padding: 0; background: none; }
.wc-badge-ig svg {
  width: 17px; height: 17px;
  filter: drop-shadow(0 0 5px rgba(214,41,118,0.55)) drop-shadow(0 0 12px rgba(150,47,191,0.3));
}
.wheel-card.pf-instagram .wc-ago { color: rgba(240,170,70,0.78); }
.wc-kind { color: rgba(255,255,255,0.75); }
.wc-new { margin-left: auto; color: var(--amber); font-weight: 600; animation: blip 1.4s ease-in-out infinite; }
.wc-meta { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 4; }
.wc-title {
  display: block;
  font-family: "Barlow", sans-serif; font-weight: 600;
  font-size: 14px; line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}
.wc-stats {
  display: flex; gap: 10px; margin-top: 7px;
  font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
}
.wc-ago { margin-left: auto; color: rgba(63,217,232,0.75); }
.wc-play {
  position: absolute; top: 46%; left: 50%; z-index: 4;
  transform: translate(-50%, -50%) scale(0.8);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(7,5,3,0.55); border: 1px solid rgba(255,255,255,0.55);
  color: #fff; font-size: 17px; padding-left: 4px;
  opacity: 0; transition: opacity 0.25s, transform 0.25s;
  backdrop-filter: blur(2px);
}
/* HUD corner brackets — visible on the front card */
.wc-brackets { position: absolute; inset: 6px; z-index: 3; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.wc-brackets i { position: absolute; width: 22px; height: 22px; border: 2px solid var(--cyan); }
.wc-brackets i:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.wc-brackets i:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.wc-brackets i:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.wc-brackets i:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* BACK — HUD circuit plate (seen across the ring) */
.wc-back {
  transform: rotateY(180deg);
  background:
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(63,217,232,0.05) 17px 18px),
    repeating-linear-gradient(90deg, transparent 0 17px, rgba(63,217,232,0.05) 17px 18px),
    radial-gradient(60% 50% at 50% 42%, rgba(63,217,232,0.08), transparent 70%),
    #0a0908;
  border: 1px solid rgba(63,217,232,0.18);
  display: grid; place-items: center;
}
.wcb-ring {
  position: absolute; top: 42%; left: 50%;
  width: 130px; height: 130px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(63,217,232,0.35);
  border-radius: 50%;
}
.wcb-ring::before {
  content: ""; position: absolute; inset: 12px;
  border: 1px dashed rgba(63,217,232,0.25); border-radius: 50%;
}
.wcb-ring::after {
  content: ""; position: absolute; inset: 28px;
  border: 1px solid rgba(240,170,70,0.35); border-radius: 50%;
}
.wcb-core {
  position: absolute; top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  font-size: 26px; letter-spacing: 0.08em;
  color: rgba(63,217,232,0.55);
}
.wcb-label {
  position: absolute; bottom: 18px; left: 0; right: 0;
  text-align: center;
  font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: 0.22em;
  color: rgba(245,241,234,0.35); line-height: 1.8;
}
.wcb-tick { position: absolute; width: 10px; height: 10px; border: 1px solid rgba(63,217,232,0.3); }
.wcb-tick.t1 { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.wcb-tick.t2 { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.wcb-tick.t3 { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.wcb-tick.t4 { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* the FRONT card — lifted, glowing, alive */
.wheel-card.is-front { cursor: pointer; }
.wheel-card.is-front .wc-front {
  border-color: rgba(63,217,232,0.65);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.7),
    0 0 0 1px rgba(63,217,232,0.35),
    0 0 44px rgba(63,217,232,0.22);
}
.wheel-card.is-front .wc-brackets { opacity: 1; }
.wheel-card.is-front:hover .wc-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.wheel-card.is-front:hover .wc-front {
  box-shadow:
    0 30px 90px rgba(0,0,0,0.75),
    0 0 0 1px rgba(63,217,232,0.55),
    0 0 70px rgba(63,217,232,0.35);
}
.wheel-hint {
  position: static;
  margin: 0 auto 18px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.34em;
  white-space: nowrap;
  pointer-events: none;
  animation: holoPulse 4.4s ease-in-out infinite;
}
.wh-arrow { display: inline-block; animation: arrowNudge 1.6s ease-in-out infinite; }
.wh-arrow:last-child { animation-direction: reverse; }
@keyframes holoPulse {
  0%, 100% {
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(63,217,232,0.75), 0 0 26px rgba(63,217,232,0.45), 0 0 60px rgba(63,217,232,0.25);
  }
  50% {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255,200,105,0.75), 0 0 26px rgba(240,161,60,0.45), 0 0 60px rgba(240,161,60,0.25);
  }
}
@keyframes arrowNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-5px); } }

/* ---------- logo tiles ---------- */
.logo-rail { display: flex; gap: 14px; flex-wrap: wrap; }
.logo-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  width: 86px; height: 68px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
  color: var(--ink);
  text-decoration: none;
  perspective: 500px;
  transition: transform 0.28s cubic-bezier(.2,.7,.2,1), border-color 0.28s, box-shadow 0.28s, color 0.28s;
}
.logo-tile svg { width: 24px; height: 24px; transition: transform 0.28s; }
.logo-tile span {
  font-family: "JetBrains Mono", monospace;
  font-size: 8px; letter-spacing: 0.16em;
  color: var(--dim);
  transition: color 0.28s;
}
.logo-tile:hover { transform: translateY(-4px) rotateX(10deg) rotateY(-6deg); }
.logo-tile:hover svg { transform: translateZ(14px) scale(1.12); }
.lt-yt:hover, .lt-ig:hover {
  color: var(--cyan);
  border-color: rgba(63,217,232,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 24px rgba(63,217,232,0.25);
}
.lt-yt:hover span, .lt-ig:hover span { color: var(--cyan); }
.lt-skool:hover, .lt-claude:hover {
  color: var(--gold);
  border-color: rgba(255,200,105,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 24px rgba(240,161,60,0.25);
}
.lt-skool:hover span, .lt-claude:hover span { color: var(--gold); }
/* real-brand marks carry their own fills; tiles keep glass/3D treatment */
.lt-skool svg { width: 54px; height: 23px; }

/* ---------- CINEMA — longform row ---------- */
.cinema { max-width: 1240px; margin: 84px auto 0; position: relative; }
.cinema-head { display: flex; align-items: baseline; gap: 22px; margin-bottom: 20px; }
.cinema-head h3 {
  font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  text-transform: uppercase;
}
/* carousel viewport — clips the drifting track; vertical padding inside the
   clip box gives the hover lift + glow room to breathe, negative margin
   cancels it so the section rhythm doesn't change */
.cinema-carousel {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  margin: -30px 0;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.cinema-carousel:active { cursor: grabbing; }
/* reduced motion: static row, native horizontal scroll, no auto-drift */
.cinema-carousel.is-static { overflow-x: auto; }
.cine-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.cine-track .cine-card { flex: 0 0 326px; width: 326px; } /* +10%; ~3.5 full cards at 1240px */
.cine-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  background: #0b0a08;
  cursor: pointer;
  padding: 0; text-align: left; color: var(--ink);
  transition: transform 0.32s cubic-bezier(.2,.7,.2,1), border-color 0.32s, box-shadow 0.32s;
}
/* hover focus — lift + cyan stroke + soft gold backglow */
.cine-card:hover, .cine-card:focus-visible {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(63,217,232,0.85);
  box-shadow:
    0 22px 54px rgba(0,0,0,0.65),
    0 0 0 1px rgba(63,217,232,0.4),
    0 0 34px rgba(240,161,60,0.32),
    0 0 70px rgba(240,161,60,0.14);
  z-index: 2;
}
.cine-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cc-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,5,3,0.35), transparent 35%, rgba(7,5,3,0.9)); }
.cc-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: 0.14em;
  background: var(--cyan); color: #04222a; font-weight: 600;
  padding: 2px 7px; border-radius: 3px;
}
.cc-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%) scale(0.85);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(7,5,3,0.55); border: 1px solid rgba(255,255,255,0.5);
  color: #fff; font-size: 15px; padding-left: 3px;
  opacity: 0; transition: opacity 0.25s, transform 0.25s;
}
.cine-card:hover .cc-play { opacity: 1; transform: translate(-50%, -55%) scale(1); }
.cc-meta { position: absolute; left: 12px; right: 12px; bottom: 10px; }
.cc-title { display: block; font-weight: 600; font-size: 14px; line-height: 1.3; text-shadow: 0 2px 10px rgba(0,0,0,0.9); }
.cc-stats { display: block; margin-top: 5px; font-family: "JetBrains Mono", monospace; font-size: 9.5px; letter-spacing: 0.06em; color: rgba(255,255,255,0.62); }
/* placeholder slots */
.cine-ph {
  cursor: default;
  display: grid; place-content: center; gap: 10px; text-align: center;
  background:
    repeating-linear-gradient(0deg, transparent 0 15px, rgba(63,217,232,0.04) 15px 16px),
    repeating-linear-gradient(90deg, transparent 0 15px, rgba(63,217,232,0.04) 15px 16px),
    #0a0908;
  border: 1px dashed rgba(63,217,232,0.28);
}
.cine-ph:hover { transform: none; border-color: rgba(63,217,232,0.4); box-shadow: none; }
.cp-ring {
  width: 34px; height: 34px; margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(63,217,232,0.5);
  border-top-color: transparent;
  animation: cpSpin 2.6s linear infinite;
}
@keyframes cpSpin { to { transform: rotate(360deg); } }
.cp-label {
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.22em;
  color: var(--cyan);
}
.cp-cursor { animation: blip 1s steps(2) infinite; margin-left: 4px; }
.cp-sub { font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: 0.18em; color: var(--dim); }

/* ---------- SKOOL transformation rail ---------- */
.skool {
  position: relative;
  z-index: 1;
  padding: 90px 28px 100px;
  background-color: rgba(7,5,3,0.70); /* dark base: fixed rain reads as clear texture; text zones carry their own darker pads */
  background-image: radial-gradient(80% 60% at 50% 0%, rgba(240,161,60,0.07), transparent 60%);
  border-top: 1px solid rgba(240,161,60,0.14);
}
.skool-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; text-align: center; }
.rail-readout, .skool-cta, .rail {
  position: relative;
}
.rail-readout::before {
  content: "";
  position: absolute; inset: -20px -30px;
  background: radial-gradient(60% 70% at 50% 50%, rgba(4,3,2,0.82), transparent 80%);
  z-index: -1;
}
.skool-inner h2 {
  font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  text-transform: uppercase; line-height: 1; margin-top: 6px;
}
.skool-sub { color: var(--dim); font-size: 1.08rem; margin: 14px auto 0; max-width: 540px; }

.rail {
  position: relative;
  display: flex; justify-content: space-between;
  max-width: 760px; margin: 52px auto 0;
  padding: 0 8px;
}
.rail-line {
  position: absolute; left: 34px; right: 34px; top: 13px;
  height: 2px; background: rgba(255,255,255,0.12);
}
.rail-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  box-shadow: 0 0 14px rgba(240,161,60,0.5);
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
}
.rail-node {
  position: relative; z-index: 1;
  background: none; border: 0; padding: 0;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--dim);
  width: 68px;
}
.rn-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.rn-dot::after {
  content: ""; position: absolute; inset: 6px;
  border-radius: 50%; background: transparent; transition: background 0.3s;
}
.rail-node:hover .rn-dot { border-color: var(--cyan); }
.rail-node.is-done .rn-dot { border-color: rgba(63,217,232,0.6); }
.rail-node.is-done .rn-dot::after { background: rgba(63,217,232,0.45); }
.rail-node.is-active .rn-dot {
  border-color: var(--amber);
  box-shadow: 0 0 18px rgba(240,161,60,0.55);
  transform: scale(1.15);
}
.rail-node.is-active .rn-dot::after { background: var(--amber); }
.rn-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px; letter-spacing: 0.14em; line-height: 1.5;
}
.rail-node.is-active .rn-label { color: var(--gold); }

.rail-readout {
  max-width: 660px; margin: 40px auto 0; min-height: 180px;
}
.rail-readout.tick { animation: readoutIn 0.45s cubic-bezier(.2,.7,.2,1); }
@keyframes readoutIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.rr-kicker, #rrKicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.26em; color: var(--cyan);
}
#rrTitle {
  font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  text-transform: uppercase; line-height: 1.05;
  margin: 12px 0 14px;
  color: var(--gold);
}
#rrBody { font-size: 1.02rem; line-height: 1.7; color: rgba(245,241,234,0.8); }

.skool-cta { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.btn-skool {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 1.12rem;
  padding: 18px 38px;
  /* holoPulse family, ported to the glow: pulsing the text color cyan<->gold
     would break the dark-on-amber label, so the halo carries the pulse */
  animation: skoolGlow 4.4s ease-in-out infinite;
}
.btn-skool .skool-mark { width: 130px; height: auto; flex: 0 0 auto; }
@keyframes skoolGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(63,217,232,0.55), 0 0 32px rgba(63,217,232,0.35), 0 0 70px rgba(63,217,232,0.2); }
  50% { box-shadow: 0 0 12px rgba(255,200,105,0.65), 0 0 32px rgba(240,161,60,0.45), 0 0 70px rgba(240,161,60,0.25); }
}
.skool-note {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: "JetBrains Mono", monospace;
  color: var(--cyan); /* static fallback if the animation is ever suppressed */
  animation: holoPulse 4.4s ease-in-out infinite; /* color + text-shadow inherit to both lines */
}
.sn-main { font-size: 17px; font-weight: 600; letter-spacing: 0.2em; text-align: center; }
.sn-sub { font-size: 14px; letter-spacing: 0.12em; text-align: center; }

/* ---------- GROW — REVXL flagship ---------- */
.grow {
  position: relative;
  z-index: 1;
  padding: 96px 28px 110px;
  background-color: rgba(7,5,3,0.70); /* dark base: fixed rain reads as clear texture; text zones carry their own darker pads */
  background-image: radial-gradient(90% 70% at 50% -10%, rgba(240,161,60,0.09), transparent 55%);
  border-top: 1px solid rgba(240,161,60,0.18);
}
.grow-inner { max-width: 1240px; margin: 0 auto; }
.grow-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-top: 6px;
}
.grow-sub {
  margin: 12px 0 26px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.grow-lead {
  margin-top: 18px;
  font-size: 1.12rem; line-height: 1.7;
  color: rgba(245,241,234,0.85);
  max-width: 660px;
}
/* headline stat — 36 hours of live support, numbers-band treatment */
.grow-stat {
  position: relative;
  margin-top: 64px;
  padding: 46px 26px 42px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.grow-stat::before {
  content: "";
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 2px;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(240,161,60,0.6);
}
.gs-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 8px 26px;
}
.gs-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(4.6rem, 12vw, 9rem);
  line-height: 0.88;
  color: var(--gold);
  text-shadow: 0 0 70px rgba(240,161,60,0.35);
}
.gs-text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.4vw, 2.55rem);
  line-height: 1.04;
  text-transform: uppercase;
  text-align: left;
}
.gs-math {
  margin-top: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.2em; line-height: 1.9;
  color: var(--cyan);
}
/* REVXL centerpiece — "Support Is the Product" body + proof quotes + closer */
.gs-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.gs-body {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 1.06rem; line-height: 1.7;
  color: rgba(245,241,234,0.85);
}
.gs-quotes {
  display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: center;
  margin: 28px auto 0;
  max-width: 720px;
}
.gs-quote {
  flex: 1 1 280px;
  margin: 0;
  padding: 18px 20px;
  text-align: left;
  border-left: 2px solid var(--cyan);
  background: linear-gradient(165deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  border-radius: 0 8px 8px 0;
  font-size: 1rem; line-height: 1.55;
  color: var(--ink);
}
.gs-quote cite {
  display: block; margin-top: 10px;
  font-family: "JetBrains Mono", monospace;
  font-style: normal; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.gs-closer {
  margin: 26px auto 0;
  max-width: 560px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900; font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  line-height: 1.1; text-transform: uppercase;
  color: var(--gold);
}
.pillars-kicker {
  margin: 60px 0 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--cyan);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.pillar {
  position: relative;
  padding: 24px 18px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(165deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(240,161,60,0.5);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), 0 0 26px rgba(240,161,60,0.12);
}
.pillar-num { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.2em; color: var(--amber); }
.pillar h3 {
  font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  font-size: 1.4rem; line-height: 1.05;
  text-transform: uppercase;
  margin: 12px 0 10px;
}
.pillar p { font-size: 0.93rem; line-height: 1.62; color: rgba(245,241,234,0.72); }
.pillar.is-core {
  border-color: rgba(63,217,232,0.35);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(63,217,232,0.08), transparent 70%),
    linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
}
.pillar.is-core .pillar-num { color: var(--cyan); }
.pillar.is-core:hover {
  border-color: rgba(63,217,232,0.6);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), 0 0 26px rgba(63,217,232,0.16);
}
/* holoPulse prominence — DRAG TO SPIN family (cyan<->gold color + glow) */
.grow-micro {
  margin-top: 36px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.26em; line-height: 1.9;
  text-align: center;
  color: var(--cyan); /* static fallback if the animation is ever suppressed */
  animation: holoPulse 4.4s ease-in-out infinite;
}
/* REVXL AI OS — HUD monitor frame; placeholder until Joe's screen capture drops in
   (video drop-in instructions live next to .osd-ph in index.html) */
.os-demo { max-width: 880px; margin: 70px auto 0; }
.osd-top {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: baseline;
  gap: 8px 18px;
  margin-bottom: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.22em;
}
.osd-label { color: var(--cyan); }
.osd-label::before { content: "● "; color: var(--amber); animation: blip 2s ease-in-out infinite; }
.osd-status { color: var(--dim); }
.osd-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(63,217,232,0.28);
  background:
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(63,217,232,0.045) 17px 18px),
    repeating-linear-gradient(90deg, transparent 0 17px, rgba(63,217,232,0.045) 17px 18px),
    radial-gradient(70% 60% at 50% 45%, rgba(63,217,232,0.07), transparent 70%),
    #0a0908;
  display: grid; place-items: center;
}
.osd-screen .hud-brackets { z-index: 2; }
.osd-ph { display: grid; gap: 10px; justify-items: center; text-align: center; padding: 0 18px; }
.osd-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.grow-cta {
  position: relative;
  max-width: 780px;
  margin: 84px auto 0;
  padding: 56px 36px 52px;
  text-align: center;
  border: 1px solid rgba(240,161,60,0.22);
  border-radius: 12px;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(240,161,60,0.09), transparent 70%),
    linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.grow-cta h3 {
  font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 54px rgba(240,161,60,0.3);
}
.grow-cta-sub {
  margin: 16px auto 22px;
  max-width: 540px;
  font-size: 1.06rem; line-height: 1.7;
  color: rgba(245,241,234,0.8);
}
/* honest, application-gated scarcity — capacity line above the Apply button */
.grow-cap {
  margin: 0 auto 30px;
  max-width: 540px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.06em; line-height: 1.85;
  color: var(--dim);
}

/* lightbox */
.feed-lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; place-items: center;
  background: rgba(3,3,4,0.86); backdrop-filter: blur(8px);
  padding: 40px 20px;
}
.feed-lightbox.open { display: grid; }
.lb-close {
  position: absolute; top: 20px; right: 24px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 16px; cursor: pointer;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.18); }
.lb-body {
  display: flex; gap: 24px; align-items: stretch;
  max-width: 1100px; width: 100%; max-height: 86vh;
}
.lb-frame {
  position: relative; flex: 1 1 auto;
  background: #000; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(63,217,232,0.25);
  aspect-ratio: 16 / 9; align-self: center;
}
.lb-frame.portrait { aspect-ratio: 9 / 16; max-height: 86vh; flex: 0 0 auto; width: min(48vh, 420px); }
.lb-frame iframe, .lb-frame video, .lb-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; border: 0;
}
.lb-side {
  flex: 0 0 290px; align-self: center;
  display: flex; flex-direction: column; gap: 14px;
}
.lb-badge {
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.18em;
  color: var(--cyan); border-left: 2px solid var(--cyan); padding-left: 10px;
}
.lb-badge.pf-instagram { color: var(--amber); border-color: var(--amber); }
.lb-cap {
  font-size: 0.95rem; line-height: 1.6; color: rgba(245,241,234,0.82);
  max-height: 46vh; overflow-y: auto;
}
.lb-open {
  margin-top: auto; align-self: flex-start;
  font-family: "Barlow", sans-serif; font-weight: 600;
  color: #04222a; background: var(--cyan); text-decoration: none;
  padding: 11px 20px; border-radius: 4px; transition: background 0.2s;
}
.lb-open:hover { background: #6fe7f3; }

/* ---------- footer — future-page placeholders ---------- */
.site-foot {
  position: relative;
  z-index: 1;
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  align-items: center; justify-content: space-between;
  padding: 26px 28px 30px;
  background-color: rgba(7,5,3,0.76);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--dim);
}
.foot-brand {
  color: var(--ink); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.45em;
  white-space: nowrap;
}
.foot-brand .brand-bolt { width: 8px; height: 14px; }
.foot-links { display: flex; gap: 26px; }
.foot-links a { color: var(--dim); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--cyan); }
.foot-links em {
  font-style: normal;
  font-size: 8px; letter-spacing: 0.16em;
  color: var(--amber);
  border: 1px solid rgba(240,161,60,0.45);
  border-radius: 3px;
  padding: 2px 5px;
  margin-left: 7px;
  vertical-align: 2px;
}

/* ---------- Mobile polish ---------- */
@media (max-width: 600px) {
  .hud { padding: 14px 16px; font-size: 10px; letter-spacing: 0.14em; flex-wrap: wrap; row-gap: 6px; }
  .hud-brand { font-size: 12px; }
  .hud-brand .brand-bolt { width: 8px; height: 14px; }
  .hud-links { gap: 11px; }
  .hud-links a { letter-spacing: 0.1em; }
  .telemetry { font-size: 9px; letter-spacing: 0.15em; }
  .tl, .tr { top: 64px; }
  .progress { left: 16px; right: 16px; }
  .watch { padding: 56px 16px 80px; }
  .wheel-stage { height: 364px; }
  .wheel-card { width: 129px; height: 209px; left: -64.5px; top: -104.5px; }
  .wc-title { font-size: 12px; }
  .wheel-hint { font-size: 11px; letter-spacing: 0.22em; }
  .logo-rail { gap: 9px; }
  .logo-tile { width: 72px; height: 60px; }
  .cinema { margin-top: 56px; }
  .cine-track { gap: 12px; }
  .cine-track .cine-card { flex: 0 0 224px; width: 224px; }
  .cc-title { font-size: 12px; }
  .skool { padding: 64px 16px 72px; }
  .rail { max-width: 100%; }
  .rn-label { font-size: 8px; letter-spacing: 0.08em; }
  .rail-readout { min-height: 230px; }
  .btn-skool { font-size: 1.02rem; padding: 16px 26px; }
  .sn-main { font-size: 10.5px; letter-spacing: 0.12em; }
  .sn-sub { font-size: 10px; }
  /* MOBILE LIGHTBOX — dedicated layout. The overlay is a NON-scrolling fixed flex
     column: header (close) / body (video + scrollable caption) / footer (CTA).
     Why not a scrolling overlay: iOS positions a position:fixed CHILD relative to
     the nearest scrolling ancestor's content, not the viewport — so a fixed close
     or CTA inside a scrolling overlay slides off-screen. Here nothing is
     fixed-in-scroll: close is absolute on the static overlay, the CTA is a normal
     flex footer, and ONLY .lb-cap scrolls (min-height:0 lets it actually shrink). */
  .feed-lightbox { padding: 0; }
  .feed-lightbox.open { display: flex; flex-direction: column; overflow: hidden; }
  .lb-close { position: absolute; top: 12px; right: 12px; z-index: 3; }
  .lb-body {
    flex: 1 1 auto; min-height: 0; width: 100%; max-height: none;
    flex-direction: column; gap: 0; padding: 54px 12px 14px;
  }
  .lb-frame.portrait { width: 100%; max-width: 300px; max-height: 42vh; flex: 0 0 auto; margin: 0 auto; }
  .lb-side { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; gap: 10px; padding-top: 12px; }
  /* Fixed-height caption: clamp to 3 lines + ellipsis so the modal is the SAME
     height every time and a long caption can never push the CTA off-screen. Full
     caption lives on Instagram via the CTA below. Font -2pt vs desktop (0.95rem). */
  .lb-cap {
    font-size: 0.8rem; line-height: 1.5; max-height: none; overflow: hidden;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  }
  .lb-open { flex: 0 0 auto; align-self: stretch; text-align: center; margin-top: auto; }
  .receipts { padding: 60px 16px 64px; }
  .builder { grid-template-columns: 1fr; gap: 30px; }
  .builder-plate { min-height: 230px; }
  .numbers { margin-top: 56px; }
  .num-band { grid-template-columns: 1fr 1fr; }
  .num-card { padding: 24px 16px 22px; }
  .num-card:nth-child(3) { border-left: 0; }
  .num-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .testi { margin-top: 48px; }
  .testi-row { padding: 18px 0; }
  .t-card { flex: 0 0 300px; width: 300px; padding: 20px 20px 18px; }
  .t-quote { font-size: 14.5px; }
  .grow { padding: 64px 16px 84px; }
  .grow-stat { margin-top: 48px; padding: 34px 10px 30px; }
  .gs-row { gap: 6px 16px; }
  .gs-text { font-size: 1.32rem; }
  .gs-math { font-size: 9.5px; letter-spacing: 0.13em; }
  .pillars-kicker { margin-top: 44px; }
  .grow-micro { font-size: 10.5px; letter-spacing: 0.15em; }
  .os-demo { margin-top: 52px; }
  .osd-top { font-size: 9px; letter-spacing: 0.15em; }
  .grow-cta { margin-top: 56px; padding: 42px 20px 40px; }
}
