/* =============================================
   ORÁCULO LANDING — Premium dark + gold
   Visual reference: masterclass-landing
   ============================================= */

/* ── Custom Properties ── */
:root {
  --void: #000000;
  --bg: #0d0d0d;
  --bg-alt: #111111;
  --surface: #030303;
  --surface-hover: #1c1c1c;
  --border: rgba(200, 168, 124, 0.08);
  --border-hover: rgba(200, 168, 124, 0.22);

  --gold: #FFD700;
  --gold-light: #FFF8CC;
  --gold-bright: #FFFFFF;
  --gold-dark: #CC9900;
  --gold-glow: rgba(255, 215, 0, 0.15);
  --gold-glow-md: rgba(255, 215, 0, 0.25);
  --gold-glow-strong: rgba(255, 215, 0, 0.40);

  --text: #f5f0eb;
  --text-dim: #a89f95;
  --text-muted: #5a5550;

  --red: #d14545;
  --red-glow: rgba(209, 69, 69, 0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w: 1080px;
  --space-section: clamp(120px, 16vw, 220px);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

::selection { background: var(--gold); color: var(--void); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ══════════════════════════════════════════
   GOLD SHIMMER TEXT
   ══════════════════════════════════════════ */
.gold-shimmer {
  background: linear-gradient(
    120deg,
    var(--gold-dark) 0%,
    var(--gold-bright) 28%,
    var(--gold) 50%,
    var(--gold-bright) 72%,
    var(--gold-dark) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: -100% 50%; }
}

/* ══════════════════════════════════════════
   FLOATING PARTICLES
   ══════════════════════════════════════════ */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particles span {
  position: absolute;
  bottom: -10px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0) scale(0.4); opacity: 0; }
  10% { opacity: 0.9; }
  50% { transform: translate(40px, -55vh) scale(0.9); opacity: 0.7; }
  90% { opacity: 0; }
  100% { transform: translate(-30px, -110vh) scale(0); opacity: 0; }
}

/* ══════════════════════════════════════════
   BACKGROUND SHAPES
   ══════════════════════════════════════════ */
.bg-shapes {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}
.shape-1, .shape-2, .shape-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  animation: floatShape 18s infinite ease-in-out alternate;
}
.shape-1 { width: 60vw; height: 60vw; background: rgba(255,200,0,0.12); top: -20%; left: -20%; }
.shape-2 { width: 50vw; height: 50vw; background: rgba(255,100,0,0.08); bottom: 0%; right: -10%; animation-delay: -7s; }
.shape-3 { width: 40vw; height: 40vw; background: rgba(255,255,255,0.03); top: 30%; left: 50%; animation-delay: -12s; }

@keyframes floatShape {
  0% { transform: translate(0,0) scale(1) rotate(0deg); }
  33% { transform: translate(12%, 18%) scale(1.2) rotate(10deg); }
  66% { transform: translate(-15%, 10%) scale(0.8) rotate(-5deg); }
  100% { transform: translate(-5%, -15%) scale(1.1) rotate(5deg); }
}

/* ══════════════════════════════════════════
   SECTION LABEL (eyebrow)
   ══════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── Section title ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 60px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ══════════════════════════════════════════
   DIVIDER with eye motif
   ══════════════════════════════════════════ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 40px;
  margin: 0 auto;
  max-width: 700px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}
.divider__eye {
  color: var(--gold);
  font-size: 18px;
  opacity: 0.35;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CTA BUTTON
   ══════════════════════════════════════════ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--void);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 28px var(--gold-glow-strong),
    0 0 70px var(--gold-glow);
  animation: ctaPulse 3s ease-in-out infinite;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 50%);
  pointer-events: none;
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 48px var(--gold-glow-strong),
    0 0 100px var(--gold-glow-md);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-cta .arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
}
.btn-cta:hover .arrow { transform: translateX(6px); }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 15px var(--gold-glow-strong), 0 0 30px var(--gold-glow); }
  50% { box-shadow: 0 6px 20px var(--gold-glow-strong), 0 0 40px var(--gold-glow-md); }
}

.btn-sub {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 14px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: rgba(255, 215, 0, 0.55);
  background: rgba(255, 215, 0, 0.06);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: calc(var(--space-section) * 0.8) 0 calc(var(--space-section) * 0.6);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(255,215,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 92px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-dim);
  max-width: 760px;
  margin: 0 auto 48px;
  font-weight: 400;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   ORACLE EYE
   ══════════════════════════════════════════ */
.oracle-eye {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oracle-eye__glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  animation: eyeGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes eyeGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.oracle-eye__ring {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.35);
  background: rgba(16, 20, 35, 0.4);
  backdrop-filter: blur(4px);
  animation: eyeShadowPulse 3.5s ease-in-out infinite;
}

@keyframes eyeShadowPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(229, 193, 88, 0.15); }
  50% { box-shadow: 0 0 60px rgba(229, 193, 88, 0.35); }
}

.oracle-eye__ring video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Eye sizes */
.oracle-eye--hero .oracle-eye__glow { width: 320px; height: 320px; }
.oracle-eye--hero .oracle-eye__ring { width: 160px; height: 160px; }

.oracle-eye--product .oracle-eye__glow { width: 400px; height: 400px; }
.oracle-eye--product .oracle-eye__ring { width: 200px; height: 200px; }

.oracle-eye--sm .oracle-eye__glow { width: 120px; height: 120px; }
.oracle-eye--sm .oracle-eye__ring { width: 56px; height: 56px; }

.oracle-eye--final .oracle-eye__glow { width: 260px; height: 260px; }
.oracle-eye--final .oracle-eye__ring { width: 120px; height: 120px; }

.hero-eye {
  margin: 0 auto 28px;
}

.final-eye {
  margin: 0 auto 26px;
}

/* ══════════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════════ */
.top-bar {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #b8860b 100%);
  color: var(--void);
  text-align: center;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 100;
}
.top-bar strong {
  color: var(--void);
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 var(--space-section);
  text-align: center;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold-glow);
  border: 1px solid rgba(200, 168, 124, 0.18);
  color: var(--gold-light);
  padding: 9px 24px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.55); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

/* Hero pillars */
.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.hero-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(15px);
  text-align: left;
  flex: 1 1 240px;
  max-width: 280px;
  transition: transform 0.4s, border-color 0.4s;
}
.hero-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.4);
}
.hero-pillar__icon {
  font-size: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
}
.hero-pillar strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.hero-pillar p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

.hero-cta-wrap {
  margin-bottom: 20px;
}

.hero-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-login {
  font-size: 14px;
  color: var(--text-muted);
}
.hero-login a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-login a:hover {
  color: var(--gold-light);
}

/* ══════════════════════════════════════════
   3. PRODUCT / VIDEO SECTION
   ══════════════════════════════════════════ */
.product-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}

.product-video-wrap {
  max-width: 700px;
  margin: 0 auto 60px;
}
.product-video-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(15,15,15,0.8), rgba(5,5,5,0.95));
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}
.product-video-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-points {
  max-width: 680px;
  margin: 0 auto 56px;
}
.product-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: start;
}
.product-point:last-child { border-bottom: none; }
.product-point__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.product-point h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  margin-bottom: 6px;
}
.product-point p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 560px;
}

/* ══════════════════════════════════════════
   4. BIO SECTION
   ══════════════════════════════════════════ */
.bio-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}
.bio-section::before {
  content: '';
  position: absolute;
  top: 40%;
  right: -180px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 55%);
  pointer-events: none;
}
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 800px;
}
.bio-photo-slot {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-hover);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.4),
    0 0 80px var(--gold-glow);
  margin: 0 auto;
}
.bio-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.bio-name {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 62px);
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 8px;
}
.bio-handle {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.bio-content p {
  color: var(--text-dim);
  margin-bottom: 18px;
  font-size: 16px;
}
.bio-content p strong { color: var(--text); font-weight: 600; }
.bio-remate {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-style: italic;
}
.bio-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bio-stat { text-align: center; }
.bio-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.bio-stat .label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   5. PROBLEM / AGITATION
   ══════════════════════════════════════════ */
.problem-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}

.problem-intro {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-dim);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.problem-intro strong { color: var(--text); }

.problem-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.problem-panel {
  background: rgba(15, 15, 15, 0.45);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(25px);
}

.problem-panel h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.problem-panel ul { display: flex; flex-direction: column; gap: 14px; }
.problem-panel li {
  font-size: 15px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.problem-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.problem-panel--pain {
  border: 1px solid rgba(209, 69, 69, 0.2);
  box-shadow: inset 0 0 40px rgba(209, 69, 69, 0.04);
}
.problem-panel--pain h3 { color: var(--text); }
.problem-panel--pain li { color: var(--text-dim); }
.problem-panel--pain li::before { background: var(--red); opacity: 0.6; }

.problem-panel--hope {
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: inset 0 0 40px rgba(255, 215, 0, 0.04);
}
.problem-panel--hope h3 { color: var(--gold); }
.problem-panel--hope li { color: var(--text-dim); }
.problem-panel--hope li::before { background: var(--gold); opacity: 0.6; }

/* ── Mid CTA block ── */
.mid-cta {
  text-align: center;
  padding: 24px 0;
}
.mid-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 23px);
  font-style: italic;
  color: var(--text-dim);
  max-width: 660px;
  margin: 0 auto 34px;
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   6. WHAT IS ORÁCULO
   ══════════════════════════════════════════ */
.what-section {
  padding: var(--space-section) 0;
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}
.what-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, var(--gold-glow) 0%, transparent 55%);
  pointer-events: none;
}
.what-desc {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-dim);
  text-align: center;
  max-width: 740px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.18);
  color: var(--gold-light);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.badge:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   7. BENEFITS
   ══════════════════════════════════════════ */
.benefits-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: rgba(15, 15, 15, 0.45);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(25px);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.benefit-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.benefit-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   8. METHOD
   ══════════════════════════════════════════ */
.method-section {
  padding: var(--space-section) 0;
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}
.method-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 50%, var(--gold-glow) 0%, transparent 50%);
  pointer-events: none;
}

.method-list {
  max-width: 700px;
  margin: 0 auto 56px;
  counter-reset: method;
}

.method-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: start;
}
.method-step:last-child { border-bottom: none; }

.method-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}

.method-step h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 8px;
}
.method-step p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 560px;
}

/* ══════════════════════════════════════════
   9. DIFFERENTIALS
   ══════════════════════════════════════════ */
.diff-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.diff-card {
  background: rgba(15, 15, 15, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  transition: height 0.5s ease;
}
.diff-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.35);
}
.diff-card:hover::before { height: 100%; }

.diff-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}
.diff-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.diff-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   10. ANALOGIES
   ══════════════════════════════════════════ */
.analogy-section {
  padding: var(--space-section) 0;
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}

.analogy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.analogy-card {
  background: rgba(15, 15, 15, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
}
.analogy-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.analogy-emoji {
  font-size: 40px;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}
.analogy-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.analogy-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   11. ARGUMENTS
   ══════════════════════════════════════════ */
.args-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}

.args-list {
  max-width: 700px;
  margin: 0 auto 48px;
}

.arg-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.arg-item:last-child { border-bottom: none; }

.arg-check {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.arg-item p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   12. OFFER
   ══════════════════════════════════════════ */
.offer-section {
  padding: var(--space-section) 0;
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}
.offer-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 55%);
  opacity: 0.4;
  pointer-events: none;
}

.offer-subtitle {
  text-align: center;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 48px;
}

.offer-card {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(12,12,12,0.98), rgba(4,4,4,0.96));
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 80px rgba(255,215,0,0.06);
  text-align: center;
}

.offer-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.offer-card__eye {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-card__pricing {
  text-align: left;
}
.offer-card__old {
  display: block;
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.offer-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.offer-card__price small {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.7;
}

.offer-card__list {
  text-align: left;
  margin-bottom: 32px;
}
.offer-card__list li {
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.offer-card__list li:last-child { border-bottom: none; }

.offer-cta {
  width: 100%;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   13. FAQ
   ══════════════════════════════════════════ */
.faq-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0);
}
.faq-item summary:hover { color: var(--gold); }

.faq-answer {
  padding: 0 0 24px;
}
.faq-answer p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
}

/* ══════════════════════════════════════════
   14. FINAL CLOSE
   ══════════════════════════════════════════ */
.final-section {
  padding: var(--space-section) 0;
  padding-bottom: clamp(100px, 14vw, 200px);
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  height: 650px;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 55%);
  opacity: 0.3;
  pointer-events: none;
}
.final-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.final-sub strong { color: var(--text); }

.pd-box {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(15, 15, 15, 0.45);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius);
  text-align: left;
  backdrop-filter: blur(25px);
}
.pd-box p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: 100%;
}
.pd-box p strong { color: var(--gold); }
.pd-box .pd-sub {
  font-style: italic;
  color: var(--text-muted);
}
.pd-box .pd-hug {
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0;
  margin-top: 20px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   STICKY CTA (MOBILE)
   ══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-hover);
  padding: 14px 20px;
  z-index: 999;
  display: none;
  text-align: center;
}
.sticky-cta .btn-cta {
  width: 100%;
  max-width: 420px;
  font-size: 14px;
  min-height: 54px;
  padding: 0 24px;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered hero animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeInUp 0.8s ease 0.05s both; }
.anim-2 { animation: fadeInUp 0.8s ease 0.2s both; }
.anim-3 { animation: fadeInUp 0.8s ease 0.35s both; }
.anim-4 { animation: fadeInUp 0.8s ease 0.5s both; }
.anim-5 { animation: fadeInUp 0.8s ease 0.65s both; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (min-width: 768px) {
  .bio-grid {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
  .bio-photo-slot {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .hero { padding: 36px 0 72px; }
  .hero-badge {
    max-width: 100%;
    padding: 8px 14px;
    font-size: 10px;
    line-height: 1.4;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 18px;
  }
  .hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .hero-sub {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 26px;
    padding: 0 4px;
  }
  .hero-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    margin-bottom: 28px;
  }
  .hero-pillar {
    width: 100%;
    max-width: none;
    flex: 0 1 auto;
    padding: 16px 16px;
    gap: 12px;
    border-radius: 14px;
  }
  .hero-pillar strong { font-size: 14px; }
  .hero-pillar p { font-size: 13px; line-height: 1.45; }
  .problem-panels { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .analogy-grid { grid-template-columns: 1fr 1fr; }
  .btn-cta { width: 100%; padding: 0 28px; }
  .bio-stats { gap: 20px; justify-content: center; }
  .bio-photo-slot { max-width: 220px; margin: 0 auto; }
  .sticky-cta.show { display: block; }
  .final-section { padding-bottom: clamp(140px, 18vw, 240px); }
  .pd-box { padding: 28px 20px; }
  .offer-card { padding: 32px 24px; }
  .offer-card__price { font-size: 40px; }
  .offer-card__header { flex-direction: column; gap: 16px; }
  .top-bar { font-size: 13px; padding: 10px 12px; }
  .section-title { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .analogy-grid { grid-template-columns: 1fr; }
  .badge-grid { gap: 8px; }
  .badge { font-size: 13px; padding: 8px 16px; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); line-height: 1.08; }
  .hero-pillars { gap: 10px; }
  .hero-pillar { padding: 14px 14px; }
  .oracle-eye--hero .oracle-eye__ring { width: 120px; height: 120px; }
  .oracle-eye--hero .oracle-eye__glow { width: 240px; height: 240px; }
  .oracle-eye--final .oracle-eye__ring { width: 96px; height: 96px; }
  .oracle-eye--final .oracle-eye__glow { width: 210px; height: 210px; }
}

/* ══════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .particles { display: none; }
  .reveal { opacity: 1; transform: none; }
}
