/* ==========================================================================
   Mastermind AI — Landing Page
   David Medina · iLaunch U
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg:        #0a0a0a;
  --bg-2:      #0f0f12;
  --bg-3:      #141418;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --text:      #ffffff;
  --text-2:    rgba(255,255,255,0.72);
  --text-3:    rgba(255,255,255,0.5);
  --accent:    #3b82f6;
  --accent-2:  #60a5fa;
  --accent-3:  #1d4ed8;
  --gold:      #d4af37;
  --gold-2:    #f5d370;
  --gold-3:    #b8860b;
  --gold-line: rgba(212,175,55,0.3);
  --gold-glow: 0 0 40px rgba(212,175,55,0.35);
  --grad-gold:      linear-gradient(90deg, #d4af37, #f5d370, #d4af37);
  --grad-gold-btn:  linear-gradient(135deg, #f5d370 0%, #d4af37 50%, #b8860b 100%);
  --grad-blue-gold: linear-gradient(90deg, #60a5fa 0%, #93c5fd 30%, #f5d370 70%, #d4af37 100%);
  --glow:      0 0 60px rgba(59,130,246,0.45);
  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1180px;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

html { width: 100%; }
body { width: 100%; min-height: 100vh; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-gold-btn);
  color: #1a1207;
  box-shadow:
    0 10px 30px -8px rgba(212,175,55,0.55),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset;
  text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 44px -8px rgba(212,175,55,0.7),
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset;
}
.btn-gold {
  position: relative;
  background: var(--grad-gold-btn);
  color: #1a1207;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    0 12px 36px -8px rgba(212,175,55,0.6),
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset;
  text-shadow: 0 1px 0 rgba(255,255,255,0.15);
  overflow: hidden;
  isolation: isolate;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px -8px rgba(212,175,55,0.75),
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset;
}
.btn-gold:hover::before { transform: translateX(120%); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.25); }
.btn-sm  { padding: 10px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 30px; font-size: 16px; }
.btn-xl  { padding: 20px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--grad-gold-btn);
  color: #1a1207;
  font-family: var(--font-display);
  letter-spacing: 0;
  font-size: 18px;
  box-shadow: 0 0 20px rgba(212,175,55,0.5), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.brand-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmerGold 6s ease-in-out infinite;
}
@keyframes shimmerGold {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/david_cdl_speaking.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: -3;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(59,130,246,0.22), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 55%, rgba(10,10,10,1) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.7) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 28px;
}
.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 9vw, 120px);
  line-height: 0.93;
  letter-spacing: 0.005em;
  margin: 0 0 22px;
  text-transform: uppercase;
  font-weight: 400;
  max-width: 14ch;
}
.grad {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-desc {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.55;
  margin: 0 0 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--accent-2);
  letter-spacing: 0.02em;
}
.trust-label {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-divider { width: 1px; height: 38px; background: var(--line); }

/* Inline hero trust line: "Mastermind AI • Acceso por aprobación • $1,997" */
.hero-trust-line, .hero-trust-v2 {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.hero-trust-line .trust-pill, .hero-trust-v2 .trust-pill {
  color: var(--text);
  white-space: nowrap;
}
.hero-trust-line .trust-pill-gold, .hero-trust-v2 .trust-pill-gold {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.04em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-trust-line .trust-bullet, .hero-trust-v2 .trust-bullet {
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}
.hero-trust-v2 {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(212,175,55,0.12);
}

/* ============================================================
   HERO V2 — Flashy split layout
   ============================================================ */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
  isolation: isolate;
  background: #050810;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
}
.hero-overlay-v2 {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 70% at 25% 45%, rgba(59,130,246,0.22), transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(212,175,55,0.16), transparent 60%),
    linear-gradient(180deg, rgba(5,8,16,0.55) 0%, rgba(5,8,16,0.78) 60%, rgba(5,8,16,1) 100%);
}

/* Floating particles (CSS only) */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 12px var(--gold-2), 0 0 20px rgba(212,175,55,0.5);
  opacity: 0.55;
  animation: floatParticle linear infinite;
}
.hero-particles span:nth-child(1)  { left: 8%;  top: 80%; animation-duration: 22s; animation-delay: 0s; }
.hero-particles span:nth-child(2)  { left: 18%; top: 92%; animation-duration: 27s; animation-delay: 2s;  background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }
.hero-particles span:nth-child(3)  { left: 28%; top: 75%; animation-duration: 30s; animation-delay: 4s; }
.hero-particles span:nth-child(4)  { left: 38%; top: 88%; animation-duration: 24s; animation-delay: 1s;  background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }
.hero-particles span:nth-child(5)  { left: 48%; top: 95%; animation-duration: 28s; animation-delay: 3s; }
.hero-particles span:nth-child(6)  { left: 58%; top: 78%; animation-duration: 26s; animation-delay: 5s; }
.hero-particles span:nth-child(7)  { left: 68%; top: 85%; animation-duration: 32s; animation-delay: 2.5s; background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }
.hero-particles span:nth-child(8)  { left: 78%; top: 90%; animation-duration: 25s; animation-delay: 1.5s; }
.hero-particles span:nth-child(9)  { left: 88%; top: 82%; animation-duration: 29s; animation-delay: 4.5s; }
.hero-particles span:nth-child(10) { left: 12%; top: 70%; animation-duration: 23s; animation-delay: 6s; }
.hero-particles span:nth-child(11) { left: 22%; top: 60%; animation-duration: 31s; animation-delay: 3.5s; background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }
.hero-particles span:nth-child(12) { left: 42%; top: 65%; animation-duration: 26s; animation-delay: 7s; }
.hero-particles span:nth-child(13) { left: 62%; top: 55%; animation-duration: 33s; animation-delay: 2s; }
.hero-particles span:nth-child(14) { left: 72%; top: 68%; animation-duration: 28s; animation-delay: 5.5s; background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }
.hero-particles span:nth-child(15) { left: 92%; top: 72%; animation-duration: 24s; animation-delay: 0.5s; }
@keyframes floatParticle {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-120vh) translateX(40px); opacity: 0; }
}

.hero-content-v2 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

/* ---- Hero LEFT: David photo ---- */
.hero-photo-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  min-height: 480px;
  position: sticky;
  top: 120px;
}
.hero-photo-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 55%, rgba(59,130,246,0.45) 0%, rgba(59,130,246,0.18) 30%, transparent 65%),
    radial-gradient(circle at 50% 55%, rgba(212,175,55,0.25) 0%, transparent 55%);
  filter: blur(30px);
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}
.hero-photo-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 520px;
  height: 520px;
  pointer-events: none;
}
.hero-photo-rings span {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.18);
  animation: ringPulse 6s ease-in-out infinite;
}
.hero-photo-rings span:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
.hero-photo-rings span:nth-child(2) { width: 78%;  height: 78%;  animation-delay: 1.5s; border-color: rgba(59,130,246,0.22); }
.hero-photo-rings span:nth-child(3) { width: 56%;  height: 56%;  animation-delay: 3s;   border-color: rgba(212,175,55,0.25); }
@keyframes ringPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.hero-photo {
  position: relative;
  max-width: 100%;
  width: auto;
  max-height: 620px;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6))
          drop-shadow(0 0 50px rgba(59,130,246,0.35))
          drop-shadow(0 0 30px rgba(212,175,55,0.2));
  -webkit-mask-image: radial-gradient(ellipse 85% 92% at 50% 48%, #000 60%, transparent 95%);
  mask-image: radial-gradient(ellipse 85% 92% at 50% 48%, #000 60%, transparent 95%);
  z-index: 1;
}
.hero-photo-tag {
  position: absolute;
  bottom: 32px;
  right: 8%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10,12,18,0.85);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-2);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(212,175,55,0.25);
}
.hero-photo-tag .tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse 1.6s ease-in-out infinite;
}

/* ---- Hero RIGHT: Text content ---- */
.hero-text-col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(212,175,55,0.04));
  border: 1px solid var(--gold-line);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background-clip: padding-box;
  box-shadow: 0 0 30px rgba(212,175,55,0.18), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.gold-badge {
  color: var(--gold-2);
}
.gold-badge .gb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 12px var(--gold-2);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title-v2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0.008em;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  text-wrap: balance;
}
.shimmer {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #ffffff 35%,
    #f5d370 50%,
    #ffffff 65%,
    #ffffff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerSweep 5s linear infinite;
}
@keyframes shimmerSweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero-subtitle-v2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
  text-transform: uppercase;
  font-weight: 400;
}
.hero-grad-blue-gold {
  background: var(--grad-blue-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerGold 7s ease-in-out infinite;
}

.hero-desc-v2 {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 32px;
}

.hero-cta-v2 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* ============================================================
   FLASHY UPGRADES — gold gradient section headers + glow cards
   ============================================================ */
.section-title .grad {
  background: var(--grad-blue-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerGold 7s ease-in-out infinite;
}
.eyebrow {
  background: var(--grad-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerGold 6s ease-in-out infinite;
}

/* Glow border + lift on key cards */
.pain-card,
.module,
.pillar,
.faq-item,
.value-stack,
.status-card {
  border-color: var(--gold-line) !important;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.04), 0 0 24px -8px rgba(212,175,55,0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.pain-card:hover,
.module:hover,
.pillar:hover {
  border-color: rgba(212,175,55,0.55) !important;
  box-shadow: 0 16px 40px -12px rgba(212,175,55,0.35), 0 0 0 1px rgba(212,175,55,0.2);
}

.pain-icon {
  background: linear-gradient(135deg, rgba(59,130,246,0.14), rgba(212,175,55,0.1));
  color: var(--gold-2);
  border: 1px solid rgba(212,175,55,0.25);
}
.module-num {
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(59,130,246,0.1));
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold-2);
}
.pillar-num {
  background: var(--grad-gold);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerGold 6s ease-in-out infinite;
}
.module-feature {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(59,130,246,0.04)) !important;
  border-color: var(--gold-line) !important;
}
.module-feature .module-num {
  background: var(--grad-gold-btn);
  color: #1a1207;
  border-color: transparent;
}

.price-highlight {
  border-color: var(--gold-line) !important;
  box-shadow:
    0 0 60px rgba(212,175,55,0.25),
    0 0 0 1px rgba(212,175,55,0.15);
}
.price-tag {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.faq-item[open] {
  border-color: rgba(212,175,55,0.5) !important;
  box-shadow: 0 0 30px -10px rgba(212,175,55,0.4);
}
.faq-item[open] .faq-icon {
  background: var(--grad-gold-btn);
  border-color: transparent;
  color: #1a1207;
}
.timeline::before {
  background: linear-gradient(180deg, var(--gold) 0%, var(--accent) 50%, rgba(212,175,55,0.1) 100%);
}
.time-slot::before {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
}
.time {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.photo-frame {
  border-color: rgba(212,175,55,0.4);
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.18), transparent 60%);
}
.signature-avatar { border-color: var(--gold); }
.stack-check {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(59,130,246,0.12));
  color: var(--gold-2);
}
.guarantee-card {
  border-color: var(--gold-line) !important;
}
.guarantee-card::before {
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold)) !important;
}
.guarantee-icon {
  background: rgba(212,175,55,0.12) !important;
  border-color: rgba(212,175,55,0.25) !important;
}
.guarantee-icon svg { stroke: var(--gold-2) !important; }

/* Hero v2 responsive */
@media (max-width: 980px) {
  .hero-content-v2 {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .hero-photo-col {
    min-height: 360px;
    order: 0;
  }
  .hero-photo { max-height: 460px; }
  .hero-photo-rings { width: 380px; height: 380px; }
  .gold-badge, .hero-cta-v2, .hero-trust-v2 {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-v2 { justify-content: center; }
  .hero-desc-v2 { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .hero-v2 { padding: 120px 0 70px; }
  .hero-photo { max-height: 360px; }
  .hero-photo-rings { width: 300px; height: 300px; }
  .hero-photo-tag { right: 4%; bottom: 18px; font-size: 10px; }
  .hero-trust-v2 {
    padding: 12px 16px;
    font-size: 12px;
    gap: 10px;
  }
  .hero-cta-v2 { flex-direction: column; }
  .hero-cta-v2 .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shimmer, .hero-grad-blue-gold, .brand-text, .eyebrow, .section-title .grad, .pillar-num, .time, .price-tag {
    animation: none !important;
  }
  .hero-particles span,
  .hero-photo-glow,
  .hero-photo-rings span {
    animation: none !important;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.3em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Sections ---------- */
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.section-title-left { text-align: left; }
.section-lead {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Problem ---------- */
.section-problem { background: var(--bg); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pain-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(180deg, rgba(59,130,246,0.04), var(--bg-3));
}
.pain-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(59,130,246,0.1);
  color: var(--accent-2);
  margin-bottom: 18px;
}
.pain-icon svg { width: 22px; height: 22px; }
.pain-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 600;
}
.pain-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- System / Pillars ---------- */
.section-system {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(59,130,246,0.08), transparent 50%),
    var(--bg);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.pillar {
  position: relative;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(59,130,246,0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.35);
}
.pillar:hover::before { opacity: 1; }
.pillar-wide { grid-column: span 2; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--font-body);
  font-size: 24px;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pillar > p {
  color: var(--text-2);
  margin: 0 0 22px;
  line-height: 1.6;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.pillar-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text-2);
}
.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Curriculum ---------- */
.section-curriculum { background: var(--bg); }
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.module {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
}
.module:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.4);
}
.module-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent-2);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 999px;
  background: rgba(59,130,246,0.08);
}
.module h3 {
  font-family: var(--font-body);
  font-size: 19px;
  margin: 0 0 10px;
  font-weight: 700;
}
.module p {
  margin: 0;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.module-feature {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(59,130,246,0.02));
  border-color: rgba(59,130,246,0.3);
}
.module-feature .module-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- Agenda ---------- */
.section-agenda {
  background:
    radial-gradient(ellipse at 20% 100%, rgba(59,130,246,0.08), transparent 50%),
    var(--bg);
}
.timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(59,130,246,0.1) 100%);
}
.time-slot {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  align-items: start;
  padding: 18px 0;
  position: relative;
}
.time-slot::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 26px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
}
.time {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.time-content h4 {
  font-family: var(--font-body);
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 700;
}
.time-content p {
  margin: 0;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- About ---------- */
.section-about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  isolation: isolate;
  max-width: 560px;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: -40px;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(59,130,246,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 60%, rgba(212,175,55,0.22) 0%, transparent 70%);
  filter: blur(36px);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55))
          drop-shadow(0 0 40px rgba(59,130,246,0.25))
          drop-shadow(0 0 25px rgba(212,175,55,0.18));
}
.photo-frame {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: calc(var(--radius-lg) + 14px);
  z-index: -1;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.18), transparent 60%);
  box-shadow: 0 0 50px rgba(212,175,55,0.18), inset 0 0 30px rgba(59,130,246,0.12);
}
.about-text .eyebrow { display: block; text-align: left; }
.about-text p {
  font-size: 17px;
  color: var(--text-2);
  margin: 0 0 18px;
  line-height: 1.65;
}
.about-text p strong { color: var(--text); font-weight: 600; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent-2);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.signature-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.sig-name {
  font-weight: 700;
  font-size: 16px;
}
.sig-title {
  font-size: 13px;
  color: var(--text-3);
}

/* ---------- Pricing ---------- */
.section-pricing {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.1), transparent 50%),
    var(--bg);
}
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.value-stack {
  background: linear-gradient(180deg, rgba(15,15,18,0.85), rgba(20,20,24,0.85));
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value-stack h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

/* Each value-stack item — its own dark card with gold left border */
.stack-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  margin: 0;
  background: rgba(255,255,255,0.04);
  border: none;
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.stack-item:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(2px);
}
.stack-item:last-of-type { border-bottom: none; }

.stack-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212,175,55,0.16);
  border: 1px solid rgba(212,175,55,0.45);
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.stack-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.stack-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.stack-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}
.stack-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* "Valor de referencia" footer row */
.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.total-num {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.35);
  letter-spacing: 0;
}

/* Investment card */
.price-highlight {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(212,175,55,0.1));
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 0 60px -10px rgba(212,175,55,0.3), 0 0 0 1px rgba(212,175,55,0.1) inset;
}
.price-tag {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 16px;
}
.price-amount {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-top: 1rem;
  text-shadow: 0 0 24px rgba(212,175,55,0.4);
}
.price-big,
.price-gold {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 0 30px rgba(212,175,55,0.5), 0 0 60px rgba(212,175,55,0.25);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.price-highlight .btn {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  padding: 18px 24px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-trust {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.pt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.pt-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-2);
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.section-faq { background: var(--bg); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: rgba(59,130,246,0.3); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-2); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-body {
  padding: 0 26px 24px;
}
.faq-body p {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  margin: 16px 0 0;
  color: var(--text-3);
  font-size: 14px;
  max-width: 380px;
  line-height: 1.55;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-cols h5 {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-3);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-cols a {
  display: block;
  color: var(--text-2);
  font-size: 14.5px;
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-cols a:hover { color: var(--accent-2); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-3);
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-wide { grid-column: span 1; }
  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
  .module-feature { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-photo { max-width: 460px; margin: 0 auto; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .price-highlight { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .container, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .hero { padding: 130px 0 70px; }
  .hero-trust {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
  }
  .trust-divider { display: none; }
  .trust-item { flex: 1 1 30%; }
  .trust-num { font-size: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .module-feature { grid-column: span 1; }
  .timeline { padding-left: 24px; }
  .time-slot { grid-template-columns: 80px 1fr; gap: 16px; }
  .time-slot::before { left: -24px; }
  .time { font-size: 18px; }
  .about-stats { grid-template-columns: 1fr; gap: 12px; }
  .value-stack { padding: 22px 16px; }
  .price-highlight { padding: 26px 18px; }
  .stack-item { padding: 12px 14px; gap: 10px; }
  .stack-text strong { font-size: 14px; }
  .stack-text span { font-size: 12px; }
  .stack-price { font-size: 0.9rem; }
  .stack-check { width: 22px; height: 22px; font-size: 12px; }
  .price-big, .price-gold { font-size: 3.2rem; }
  .price-currency { font-size: 1.5rem; margin-top: 0.7rem; }
  .price-highlight .btn { font-size: 1rem; padding: 16px 18px; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .hero-scroll { display: none; }
}

/* Bonus stack items + divider (Cohort 1 fundadores) */
.stack-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 4px 4px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}
.stack-divider::before,
.stack-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}
.stack-item--bonus {
  background: linear-gradient(90deg, rgba(245,200,66,0.10), rgba(212,175,55,0.03));
  border-left-color: #f5c842;
  border-left-width: 3px;
  position: relative;
}
.stack-item--bonus::before {
  content: 'BONO';
  position: absolute;
  top: -8px;
  right: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #0a0a0a;
  background: #f5c842;
  padding: 3px 8px;
  border-radius: 4px;
}
.stack-check--bonus {
  background: rgba(245,200,66,0.25);
  border-color: #f5c842;
  color: #f5c842;
}

.price-scarcity-reason {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  text-align: center;
}

/* 3-layer stacked guarantee */
.guarantee-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.guarantee-layer {
  position: relative;
  padding: 32px 26px;
  background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, rgba(0,0,0,0.45) 100%);
  border: 1px solid rgba(212,175,55,0.32);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.guarantee-layer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f5c842 50%, #d4af37 100%);
}
.guarantee-layer:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 24px 50px -20px rgba(212,175,55,0.25);
}
.guarantee-layer__num {
  font-family: var(--font-display);
  font-size: 44px;
  color: rgba(212,175,55,0.35);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.guarantee-layer__body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  color: #f5c842;
  margin: 0 0 14px;
  line-height: 1.25;
}
.guarantee-layer__body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}
.guarantee-layer--anti {
  background: linear-gradient(180deg, rgba(139,92,246,0.10) 0%, rgba(0,0,0,0.45) 100%);
  border-color: rgba(139,92,246,0.40);
}
.guarantee-layer--anti::before {
  background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 50%, #8b5cf6 100%);
}
.guarantee-layer--anti .guarantee-layer__num { color: rgba(167,139,250,0.45); }
.guarantee-layer--anti .guarantee-layer__body h3 { color: #a78bfa; }

@media (max-width: 900px) {
  .guarantee-stack { grid-template-columns: 1fr; gap: 16px; }
  .guarantee-layer { padding: 26px 22px; }
  .guarantee-layer__num { font-size: 36px; }
}

/* Who Qualifies — disqualifier framing */
.section-qualify { background: var(--bg); }
.qualify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.qualify-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.45) 100%);
  overflow: hidden;
}
.qualify-card--yes { border-color: rgba(212,175,55,0.35); }
.qualify-card--yes::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, #d4af37 0%, #f5c842 50%, #d4af37 100%);
}
.qualify-card--no { border-color: rgba(139,92,246,0.30); }
.qualify-card--no::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, #8b5cf6 0%, #a78bfa 50%, #8b5cf6 100%);
}
.qualify-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}
.qualify-card--yes .qualify-card__icon {
  background: rgba(212,175,55,0.16);
  color: #f5c842;
  border: 1px solid rgba(212,175,55,0.45);
}
.qualify-card--no .qualify-card__icon {
  background: rgba(139,92,246,0.16);
  color: #a78bfa;
  border: 1px solid rgba(139,92,246,0.45);
}
.qualify-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  color: #fff;
}
.qualify-card--yes h3 { color: #f5c842; }
.qualify-card--no h3 { color: #a78bfa; }
.qualify-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qualify-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
}
.qualify-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212,175,55,0.5);
}
.qualify-card--no .qualify-list li::before { background: rgba(167,139,250,0.5); }

@media (max-width: 760px) {
  .qualify-grid { grid-template-columns: 1fr; gap: 20px; }
  .qualify-card { padding: 28px 24px; }
}

/* Pain call-out + $97 workshop section */
.section-pain {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  position: relative;
}
.pain-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.pain-attention-bar {
  display: inline-block;
  padding: 10px 22px;
  background: #d4af37;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  border-radius: 6px;
  margin-bottom: 28px;
  line-height: 1.3;
}
.pain-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 28px;
  font-weight: 400;
}
.pain-strike {
  position: relative;
  color: #f5c842;
  white-space: nowrap;
}
.pain-strike::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  height: 3px;
  background: #ef4444;
  transform: rotate(-2deg);
  border-radius: 2px;
}
.pain-body {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 auto 18px;
  max-width: 760px;
}
.pain-body strong { color: #f5c842; }

/* $97 workshop card */
.workshop97-card {
  margin: 44px auto 0;
  max-width: 720px;
  padding: 40px 36px;
  background: linear-gradient(180deg, rgba(212,175,55,0.10) 0%, rgba(0,0,0,0.55) 100%);
  border: 2px solid rgba(212,175,55,0.45);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 30px 60px -30px rgba(212,175,55,0.4);
}
.workshop97-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f5c842 50%, #d4af37 100%);
}
.workshop97-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(212,175,55,0.18);
}
.workshop97-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212,175,55,0.18);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #f5c842;
  text-transform: uppercase;
}
.workshop97-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
}
.workshop97-price__currency {
  font-size: 22px;
  color: #d4af37;
}
.workshop97-price__amount {
  font-size: 56px;
  color: #f5c842;
  line-height: 1;
  letter-spacing: 0.02em;
}
.workshop97-price__note {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-left: 8px;
}
.workshop97-pitch {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 16px;
}
.workshop97-pitch strong { color: #f5c842; }
.workshop97-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.workshop97-bullets li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
}
.workshop97-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212,175,55,0.16);
  border: 1px solid rgba(212,175,55,0.45);
  color: #f5c842;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.workshop97-fine {
  margin: 18px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.6;
}
.hero-cta-helper {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-3);
  max-width: 560px;
}
.hero-cta-helper strong { color: #f5c842; font-weight: 700; }

@media (max-width: 640px) {
  .workshop97-card { padding: 30px 22px; }
  .workshop97-price__amount { font-size: 44px; }
  .workshop97-price__note { display: block; margin-left: 0; margin-top: 4px; }
}

/* Two-tier pricing comparison */
.tier-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.tier-card {
  position: relative;
  padding: 38px 32px 32px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.5) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tier-card--entry { border-color: rgba(212,175,55,0.30); }
.tier-card--entry:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 20px 40px -20px rgba(212,175,55,0.25);
}
.tier-card--premium {
  border-color: rgba(245,200,66,0.55);
  background: linear-gradient(180deg, rgba(212,175,55,0.12) 0%, rgba(0,0,0,0.55) 100%);
  box-shadow: 0 30px 60px -30px rgba(212,175,55,0.35);
}
.tier-card--premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.06) 100%);
}
.tier-card--premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -30px rgba(212,175,55,0.45);
}
.tier-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  background: linear-gradient(90deg, #d4af37 0%, #f5c842 50%, #d4af37 100%);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}
.tier-card__head {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(212,175,55,0.16);
}
.tier-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.30);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tier-badge--gold {
  background: rgba(245,200,66,0.20);
  color: #f5c842;
  border-color: rgba(245,200,66,0.50);
}
.tier-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.tier-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.tier-card__currency {
  font-size: 24px;
  color: #d4af37;
  line-height: 1;
}
.tier-card__amount {
  font-size: 64px;
  color: #f5c842;
  line-height: 1;
  letter-spacing: 0.01em;
}
.tier-card--premium .tier-card__amount {
  font-size: 72px;
  background: linear-gradient(180deg, #f5c842 0%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tier-card__strike {
  font-size: 18px;
  color: var(--text-3);
  text-decoration: line-through;
  margin-left: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}
.tier-card__tag {
  font-size: 14px;
  color: var(--text-2);
  margin: 6px 0 0;
  line-height: 1.45;
}
.tier-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.tier-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.tier-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(212,175,55,0.18);
  border: 1px solid rgba(212,175,55,0.40);
  color: #f5c842;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}
.tier-card__list strong { color: #f5c842; }
.tier-card__fine {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.tier-compare-ladder {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 18px 22px;
  background: rgba(212,175,55,0.06);
  border: 1px dashed rgba(212,175,55,0.35);
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.tier-compare-ladder strong { color: #f5c842; }
.pricing-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
  margin: 70px auto 0;
  max-width: 600px;
}

@media (max-width: 820px) {
  .tier-compare { grid-template-columns: 1fr; gap: 32px; }
  .tier-card { padding: 32px 24px 26px; }
  .tier-card--premium { order: -1; }
  .tier-card__amount { font-size: 56px; }
  .tier-card--premium .tier-card__amount { font-size: 60px; }
}

/* Pain section visual */
.pain-visual {
  margin: 40px auto 0;
  max-width: 880px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8), 0 0 60px -20px rgba(212,175,55,0.18);
  background: #000;
}
.pain-visual img {
  width: 100%;
  height: auto;
  display: block;
}
/* Hero-banner placement at the top of the pain section */
.pain-visual--top {
  margin: 0 auto 36px;
  max-width: 980px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.9), 0 0 80px -20px rgba(212,175,55,0.22);
}
.pain-visual--top + .pain-attention-bar { margin-top: 0; }

@media (max-width: 760px) {
  .pain-visual--top { margin-bottom: 28px; border-radius: 12px; }
}

/* Track Record — aggregate income proof block */
.track-record {
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 44px 40px;
  background: linear-gradient(180deg, rgba(212,175,55,0.10) 0%, rgba(0,0,0,0.55) 100%);
  border: 1px solid rgba(212,175,55,0.40);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.track-record::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f5c842 50%, #d4af37 100%);
}
.track-record__head { text-align: center; margin-bottom: 36px; }
.track-record__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212,175,55,0.16);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #f5c842;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.track-record__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 14px;
  font-weight: 400;
}
.track-record__title strong { color: #f5c842; font-weight: inherit; }
.track-record__years {
  display: inline-block;
  font-size: 0.7em;
  color: var(--text-3);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  margin-left: 8px;
  vertical-align: middle;
}
.track-record__sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 auto;
  max-width: 700px;
  font-style: italic;
}

.track-record__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}

.track-record__big {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.track-record__big-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.track-record__big-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 10px;
}
.track-record__big-currency {
  font-size: clamp(28px, 3vw, 36px);
  color: #d4af37;
}
.track-record__big-value {
  font-size: clamp(48px, 7vw, 78px);
  color: #f5c842;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #f5c842 0%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.track-record__big-foot {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.track-record__table {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 14px;
  padding: 8px 0;
  overflow: hidden;
}
.trt-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  position: relative;
}
.trt-row + .trt-row { border-top: 1px solid rgba(212,175,55,0.10); }
.trt-row--head {
  padding-top: 18px;
  padding-bottom: 14px;
}
.trt-row--head .trt-cell {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.trt-cell--year {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #d4af37;
}
.trt-cell--amount {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.trt-row--peak {
  background: linear-gradient(90deg, rgba(245,200,66,0.10), transparent 70%);
}
.trt-row--peak .trt-cell--amount { color: #f5c842; font-weight: 600; }
.trt-cell-flag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #0a0a0a;
  background: #f5c842;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.track-record__foot {
  margin: 28px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-3);
  text-align: center;
  font-style: italic;
}

@media (max-width: 820px) {
  .track-record { padding: 32px 22px; }
  .track-record__grid { grid-template-columns: 1fr; gap: 20px; }
  .trt-row { grid-template-columns: 80px 1fr auto; padding: 12px 16px; gap: 10px; }
  .trt-cell-flag { font-size: 8px; padding: 3px 6px; }
}

/* Pipeline proof — nested inside CDL Master featured case */
.pipeline-proof {
  margin: 32px 0 0;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(245,200,66,0.07) 0%, rgba(0,0,0,0.55) 100%);
  border: 1px solid rgba(245,200,66,0.30);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.pipeline-proof::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #d4af37, #f5c842, #d4af37);
}

.pipeline-proof__head { margin-bottom: 26px; }
.pipeline-proof__eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(245,200,66,0.16);
  border: 1px solid rgba(245,200,66,0.40);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #f5c842;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pipeline-proof__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 400;
}
.pipeline-proof__title strong { color: #f5c842; font-weight: inherit; }
.pipeline-proof__sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
  max-width: 760px;
  font-style: italic;
}

.pipeline-proof__stat-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: stretch;
}

.pp-megastat {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(245,200,66,0.30);
  border-radius: 12px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pp-megastat__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 88px);
  line-height: 1;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #f5c842 0%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.pp-megastat__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.4;
}

.pipeline-proof__stages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pp-stage {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(212,175,55,0.18);
  border-left: 3px solid rgba(212,175,55,0.55);
  border-radius: 10px;
}
.pp-stage__name {
  grid-column: 1;
  grid-row: 1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-2);
}
.pp-stage__count {
  grid-column: 2;
  grid-row: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-transform: uppercase;
}
.pp-stage__value {
  grid-column: 1 / -1;
  grid-row: 2;
  font-family: var(--font-display);
  font-size: 19px;
  color: #f5c842;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.pp-stage--won {
  border-left-color: #f5c842;
  background: linear-gradient(90deg, rgba(245,200,66,0.12), rgba(0,0,0,0.45) 70%);
}
.pp-stage--won .pp-stage__name { color: #f5c842; }

.pipeline-proof__foot {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-3);
  text-align: center;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid rgba(212,175,55,0.12);
}

@media (max-width: 760px) {
  .pipeline-proof { padding: 24px 18px; }
  .pipeline-proof__stat-row { grid-template-columns: 1fr; gap: 18px; }
  .pp-megastat { padding: 18px; }
  .pipeline-proof__stages { grid-template-columns: 1fr; }
}

/* 2-layer guarantee variant (satisfaction + commitment filter) */
.guarantee-stack--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
}
@media (max-width: 900px) {
  .guarantee-stack--two { grid-template-columns: 1fr; }
}
