:root {
  --ink: #0a0a0b;
  --bone: #f5f1ea;
  --gold: #f5c518;
  --glow: #ffd84d;
  --forest: #1a3d2e;
  --moss: #2d5a3d;
}

html { scroll-behavior: smooth; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  perspective: 1800px;
  perspective-origin: 50% 50%;
}

/* 3D scroll targets */
[data-3d] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s linear;
  backface-visibility: hidden;
}
section {
  transform-style: preserve-3d;
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold), var(--glow), var(--gold));
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(245,197,24,0.6);
  will-change: transform;
  transition: transform 0.08s linear;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.12), transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  body:hover #cursor-glow { opacity: 1; }
}

#nav.scrolled {
  backdrop-filter: blur(16px);
  background: rgba(10,10,11,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav-link { position: relative; transition: color 0.2s; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--bone); }
.nav-link:hover::after { width: 100%; }

.logo-spin { transition: transform 0.6s cubic-bezier(.34,1.56,.64,1); }
.logo-spin:hover { transform: rotate(360deg) scale(1.08); }

.btn-gold {
  position: relative;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.875rem;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(245,197,24,0.4), 0 8px 24px -8px rgba(245,197,24,0.4);
  transition: transform 0.2s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 0 4px rgba(245,197,24,0.15), 0 16px 32px -12px rgba(245,197,24,0.6);
}
.btn-gold.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-gold-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.6s;
}
.btn-gold:hover .btn-gold-shine { left: 100%; }

.btn-ghost {
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--bone);
  transition: all 0.3s;
  font-weight: 500;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--gold);
  color: var(--gold);
}

#hero-video { animation: slowZoom 30s ease-in-out infinite alternate; }
@keyframes slowZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.12); }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  width: 400px; height: 400px;
  top: 10%; left: -10%;
  background: radial-gradient(circle, rgba(245,197,24,0.35), transparent 70%);
  animation: float1 18s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  bottom: -15%; right: -10%;
  background: radial-gradient(circle, rgba(26,61,46,0.6), transparent 70%);
  animation: float2 22s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  top: 40%; right: 30%;
  background: radial-gradient(circle, rgba(255,216,77,0.18), transparent 70%);
  animation: float3 26s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(80px, 60px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-100px, -40px); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -80px) scale(1.2); }
}

.gold-text {
  background: linear-gradient(120deg, var(--glow) 0%, var(--gold) 40%, #b88700 80%, var(--glow) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShift 6s linear infinite;
}
@keyframes goldShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(245,197,24,0.25);
  background: rgba(245,197,24,0.06);
  backdrop-filter: blur(8px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: rgba(245,241,234,0.85);
  letter-spacing: 0.1em;
}

.animate-ping-slow {
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(245,197,24,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,197,24,0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1), transform 0.9s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

.fade-in-word {
  opacity: 0;
  transform: translateY(40px) rotate(-2deg);
  transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
}
.fade-in-word.visible { opacity: 1; transform: none; }
.fade-in-word:nth-child(2) { transition-delay: 0.15s; }
.fade-in-word:nth-child(3) { transition-delay: 0.3s; }

.stat { text-align: center; padding: 0 1rem; }
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245,241,234,0.5);
  margin-top: 0.5rem;
}

.scroll-dash {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDash 2s ease-in-out infinite;
}
@keyframes scrollDash {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 400;
}
.marquee-dot { color: var(--forest); font-size: 1.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.step-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.4s, background 0.4s;
  transform-style: preserve-3d;
}
.step-card:hover {
  border-color: rgba(245,197,24,0.5);
  background: rgba(245,197,24,0.04);
}
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  color: rgba(245,197,24,0.35);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.step-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.step-desc { color: rgba(245,241,234,0.55); font-size: 0.875rem; line-height: 1.6; }
.step-icon {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 24px; height: 24px;
  color: rgba(245,197,24,0.3);
  transition: transform 0.4s, color 0.4s;
}
.step-card:hover .step-icon {
  color: var(--gold);
  transform: rotate(12deg) scale(1.15);
}

.split-bar {
  display: flex;
  gap: 0.5rem;
  height: 100px;
  border-radius: 1rem;
  overflow: hidden;
}
.split-creator, .split-sellixa {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 0;
  transition: width 1.4s cubic-bezier(.22,1,.36,1);
  border-radius: 0.75rem;
}
.split-bar.animated .split-creator { width: 75%; }
.split-bar.animated .split-sellixa { width: 25%; }
.split-creator {
  background: linear-gradient(135deg, var(--gold), var(--glow));
  color: var(--ink);
}
.split-sellixa {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.split-num {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.split-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.75;
  margin-top: 0.25rem;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.02);
  transition: background 0.3s;
}
.perk:hover { background: rgba(245,197,24,0.06); }
.perk-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.perk-title { font-weight: 600; font-size: 0.9rem; }
.perk-sub { font-size: 0.75rem; color: rgba(245,241,234,0.5); margin-top: 0.15rem; }

.creator-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.5s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.creator-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,197,24,0.4);
  background: rgba(245,197,24,0.03);
}
.creator-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.creator-card:hover .creator-emoji { transform: scale(1.25) rotate(-8deg); }
.creator-title { font-weight: 600; margin-bottom: 0.5rem; }
.creator-desc { color: rgba(245,241,234,0.5); font-size: 0.875rem; line-height: 1.55; }
.creator-line {
  margin-top: 1.25rem;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.6s cubic-bezier(.22,1,.36,1);
}
.creator-card:hover .creator-line { width: 100%; }

.faq-item {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item[open] {
  border-color: rgba(245,197,24,0.4);
  background: rgba(245,197,24,0.03);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p {
  color: rgba(245,241,234,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 1rem;
  animation: faqSlide 0.4s ease;
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

.input-field {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--bone);
  font-family: inherit;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.input-field::placeholder { color: rgba(245,241,234,0.35); }
.input-field:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245,197,24,0.04);
  box-shadow: 0 0 0 4px rgba(245,197,24,0.08);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: rgba(245,197,24,0.3); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: var(--gold); color: var(--ink); }

/* ===== NEW DESIGN ELEMENTS ===== */

/* Scroll-scrub hero */
.hero-scrub {
  position: relative;
  height: 700vh; /* 7 screens of scroll = slow, smooth, cinematic */
  background: var(--ink);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  perspective: 1400px;
}

/* Scene layer */
.scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: opacity, transform;
}

/* Stage floater layer */
.stage-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
[data-sprite] {
  position: absolute;
  top: 50%; left: 50%;
  opacity: 0;
  will-change: opacity, transform;
}

/* Professional SVG sprite pills */
.sprite {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(30,30,33,0.85), rgba(15,15,17,0.85));
  border: 1px solid rgba(245,197,24,0.35);
  backdrop-filter: blur(10px);
  padding: 18px;
  color: var(--gold);
  box-shadow: 0 20px 40px -12px rgba(245,197,24,0.3), 0 0 0 1px rgba(245,197,24,0.1) inset;
  display: flex; align-items: center; justify-content: center;
}
.sprite.sm { width: 52px; height: 52px; padding: 12px; }
.sprite svg { width: 100%; height: 100%; }
.sprite.coin {
  background: linear-gradient(180deg, #f5c518, #c99a00);
  border-color: rgba(255,255,255,0.2);
  color: #2a1c00;
  box-shadow: 0 20px 40px -10px rgba(245,197,24,0.5), 0 0 0 1px rgba(255,216,77,0.4) inset;
}

/* Pipeline (stage 2) */
.pipeline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 9999px;
  background: rgba(245,197,24,0.05);
  backdrop-filter: blur(10px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.55);
}
.pip-node {
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  transition: color 0.3s, background 0.3s;
}
.pip-active {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 0 16px rgba(245,197,24,0.6);
}
.pip-arrow { color: rgba(245,197,24,0.5); }

/* Review deck (stage 3) */
.review-deck {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.review-card {
  position: absolute;
  top: 50%; left: 50%;
  width: min(320px, 80vw);
  padding: 1.5rem 1.25rem 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(30,30,33,0.95), rgba(15,15,17,0.95));
  border: 1px solid rgba(245,197,24,0.25);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,197,24,0.1) inset;
  text-align: left;
}
.review-card.r2 {
  background: linear-gradient(180deg, rgba(245,197,24,0.12), rgba(245,197,24,0.03));
  border-color: rgba(245,197,24,0.45);
  z-index: 2;
  width: min(360px, 86vw);
}
.rc-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.review-card p {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--bone);
  margin-bottom: 1rem;
}
.review-card p b { font-weight: 500; }
.rc-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: rgba(245,241,234,0.55);
}
.rc-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(245,197,24,0.4);
  flex-shrink: 0;
}

/* Growth section grid (stage 4) */
.growth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .growth-grid { grid-template-columns: 0.9fr 1.1fr; gap: 2rem; }
}

/* Creator happy portrait */
.creator-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.portrait-frame {
  position: relative;
  width: min(320px, 80vw);
  aspect-ratio: 3 / 4;
}
.portrait-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem;
  border: 2px solid rgba(245,197,24,0.4);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,197,24,0.15) inset;
  filter: saturate(1.05) contrast(1.05);
}
.portrait-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.35) 0%, transparent 55%);
  filter: blur(30px);
  z-index: -1;
  animation: glowPulse 3.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}
.reaction-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(245,197,24,0.5);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: ringBurst 3s ease-out infinite;
  pointer-events: none;
}
.reaction-ring.r2 { animation-delay: 1s; }
.reaction-ring.r3 { animation-delay: 2s; }
@keyframes ringBurst {
  0% { opacity: 0.8; transform: translate(-50%,-50%) scale(0.9); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.25); }
}

/* Floating notifications around portrait */
.notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  background: rgba(20,20,22,0.95);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  color: var(--gold);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.6);
  white-space: nowrap;
}
.notif svg { width: 14px; height: 14px; flex-shrink: 0; }
.notif > div { text-align: left; }
.n-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
  line-height: 1;
}
.n-sub {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--bone);
  font-weight: 400;
  margin-top: 0.15rem;
  line-height: 1;
}
.notif.n1 { top: 12%; left: -18%; animation: notifFloat 4s ease-in-out infinite; }
.notif.n2 { top: 44%; right: -22%; animation: notifFloat 4s ease-in-out 1.2s infinite; }
.notif.n3 { bottom: 10%; left: -14%; animation: notifFloat 4s ease-in-out 2.4s infinite; }
@keyframes notifFloat {
  0% { opacity: 0; transform: translateY(10px) scale(0.9); }
  15%, 75% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-10px) scale(0.95); }
}

.portrait-caption { text-align: center; }
.portrait-mood {
  font-size: 1.4rem;
  color: var(--bone);
  margin-top: 0.25rem;
}

/* Growth card (stage 4) */
.growth-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(30,30,33,0.9), rgba(15,15,17,0.9));
  border: 1px solid rgba(245,197,24,0.3);
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px -30px rgba(245,197,24,0.25), 0 0 0 1px rgba(245,197,24,0.1) inset;
  text-align: left;
}
.gc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.gc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,197,24,0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.gc-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.gc-amount {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--bone);
  margin-top: 0.35rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.gc-delta {
  color: #22c55e;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  margin-top: 0.3rem;
}
.gc-badge {
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.gc-chart {
  width: 100%;
  height: 120px;
  display: block;
  margin: 0.5rem 0 0.25rem;
}
.gc-foot {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: rgba(245,241,234,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Scrub HUD */
.scrub-hud {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: min(680px, 92%);
  display: flex; flex-direction: column; gap: 0.5rem;
  z-index: 20;
}
.scrub-chapters {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.3);
  margin-bottom: 0.25rem;
}
.scrub-chapters span {
  transition: color 0.4s;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.scrub-chapters span.active {
  color: var(--gold);
  background: rgba(245,197,24,0.08);
}
.scrub-timeline {
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.scrub-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--glow));
  transform-origin: 0 50%;
  transform: scaleX(0);
  box-shadow: 0 0 12px rgba(245,197,24,0.6);
  will-change: transform;
}
.scrub-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scroll-dash.horiz {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: none;
}

/* Chapter numerals (roman) */
.chapter-num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: inline-block;
  padding-right: 1rem;
  border-right: 1px solid rgba(245,197,24,0.3);
}

/* Fraunces optical refinements */
.font-display {
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.font-script {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

/* Bracket corner ticks on premium cards */
.bracket-card::before,
.bracket-card::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.6;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
}
.bracket-card::before { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.bracket-card::after  { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }
.bracket-card:hover::before,
.bracket-card:hover::after { opacity: 1; width: 26px; height: 26px; }

/* Ebook mockup */
.ebook-mockup {
  position: relative;
  width: 260px; height: 340px;
  perspective: 1200px;
  filter: drop-shadow(0 30px 40px rgba(245,197,24,0.15));
}
.ebook-cover {
  position: absolute; inset: 0;
  border-radius: 6px 14px 14px 6px;
  background: linear-gradient(135deg, #1a1a1d 0%, #0f0f10 100%);
  border: 1px solid rgba(245,197,24,0.2);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transform: rotateY(-14deg) rotateX(3deg);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.ebook-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,197,24,0.15), transparent 55%);
  pointer-events: none;
}
.bracket-card:hover .ebook-cover { transform: rotateY(-8deg) rotateX(2deg) scale(1.02); }
.ebook-spine {
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), #b88700);
  transform: rotateY(-14deg) translateZ(-2px);
  transform-origin: left center;
}
.ebook-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.ebook-title {
  font-size: 1.85rem;
  line-height: 1.05;
  color: var(--bone);
  font-weight: 300;
  margin-top: auto;
  letter-spacing: -0.01em;
}
.ebook-sub {
  font-size: 0.8rem;
  color: rgba(245,241,234,0.55);
  margin-top: 0.5rem;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
}
.ebook-author {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: rgba(245,197,24,0.8);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(245,197,24,0.15);
}

/* Course mockup */
.course-mockup {
  background: #0f0f10;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.6);
}
.course-browser {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #141416;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(245,241,234,0.5);
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  flex: 1;
  text-align: center;
}
.course-body { padding: 1.5rem 1.5rem 1.75rem; }
.course-hero { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.course-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.course-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--bone);
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}
.course-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(245,241,234,0.4);
  margin-top: 0.5rem;
}
.lesson-list { display: flex; flex-direction: column; gap: 0.25rem; }
.lesson {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: rgba(245,241,234,0.6);
  transition: background 0.2s;
}
.lesson.done { color: rgba(245,241,234,0.4); }
.lesson.done .lesson-check { color: var(--gold); }
.lesson.active {
  background: rgba(245,197,24,0.08);
  color: var(--bone);
  border: 1px solid rgba(245,197,24,0.2);
}
.lesson-check, .lesson-play {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.lesson-dot { color: rgba(245,241,234,0.3); }
.lesson-now {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  background: var(--gold);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

/* Creator avatar on creator cards */
.creator-card { overflow: visible; }
.creator-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(245,197,24,0.4);
  margin-bottom: 1rem;
  filter: grayscale(0.3);
  transition: filter 0.4s, transform 0.4s, border-color 0.4s;
}
.creator-card:hover .creator-avatar {
  filter: grayscale(0);
  transform: scale(1.08);
  border-color: var(--gold);
}
.creator-card .creator-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.creator-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: rgba(245,241,234,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255,255,255,0.08);
}

/* Testimonial cards */
.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.4s, background 0.4s;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.35);
  background: rgba(245,197,24,0.03);
}
.testimonial-card.featured {
  background: linear-gradient(180deg, rgba(245,197,24,0.08), rgba(245,197,24,0.02));
  border-color: rgba(245,197,24,0.3);
}
.t-stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.95rem; }
.t-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(245,197,24,0.3);
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.9rem; color: var(--bone); }
.t-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: rgba(245,241,234,0.5);
  margin-top: 2px;
}

/* Metrics bar */
.metric {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--ink);
  transition: background 0.3s;
}
.metric:hover { background: rgba(245,197,24,0.04); }
.metric-num {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245,241,234,0.5);
  margin-top: 0.75rem;
}

/* ===== LOWER-PAGE CRAZY ANIMATIONS ===== */

/* Animated step card number tracing */
.step-card .step-num {
  position: relative;
  display: inline-block;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0%, rgba(245,197,24,0.35) 18%, transparent 28%);
  opacity: 0;
  transition: opacity 0.4s;
  animation: stepRotate 4s linear infinite;
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}
.step-card:hover::before { opacity: 1; }
@keyframes stepRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Split section — magnetic gold spotlight */
#split::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,197,24,0.12), transparent 60%);
  filter: blur(40px);
  animation: splitSpot 12s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes splitSpot {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -40%) scale(1.15); }
}

/* Marquee hover pause */
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Ebook floating idle */
.ebook-mockup {
  animation: ebookFloat 6s ease-in-out infinite;
}
@keyframes ebookFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

/* Course mockup - animated "NOW" badge */
.lesson-now {
  animation: nowPulse 1.6s ease-in-out infinite;
}
@keyframes nowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(245,197,24,0); }
}

/* Testimonial starlit backdrop */
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(245,197,24,0.8), transparent 50%),
    radial-gradient(1px 1px at 70% 20%, rgba(245,197,24,0.5), transparent 50%),
    radial-gradient(1px 1px at 50% 80%, rgba(245,197,24,0.7), transparent 50%),
    radial-gradient(1px 1px at 85% 60%, rgba(245,197,24,0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.testimonial-card:hover::after { opacity: 1; animation: starTwinkle 2s ease-in-out infinite; }
@keyframes starTwinkle {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.6); }
}

/* Creator avatar ring rotation */
.creator-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 180deg, transparent 40%, var(--gold), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  animation: conicSpin 5s linear infinite;
  pointer-events: none;
}
.creator-card:hover::after { opacity: 1; }
@keyframes conicSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Metrics bar — number ticker on hover */
.metric:hover .metric-num {
  animation: metricKick 0.5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes metricKick {
  0% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Split bar shine sweep */
.split-creator::after {
  content: "";
  position: absolute;
  top: 0; left: -30%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: splitSweep 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes splitSweep {
  0% { left: -30%; }
  100% { left: 110%; }
}

/* FAQ open reveal */
.faq-item[open] summary { color: var(--gold); }

/* Footer pulse */
footer img {
  animation: footerPulse 4s ease-in-out infinite;
}
@keyframes footerPulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(245,197,24,0)); }
  50% { filter: drop-shadow(0 0 12px rgba(245,197,24,0.6)); }
}

/* Global vertical gold rail flowing through page */
.vertical-rail {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(245,197,24,0.15), transparent);
  pointer-events: none;
  z-index: 0;
}
.vertical-rail::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 30%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  filter: blur(3px);
  animation: railDrip 4s ease-in-out infinite;
}
@keyframes railDrip {
  0% { top: -30%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

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