/* ============================================================
   Digital Career Bhaskar — Premium Redesign
   Pure black, editorial type, minimal monochrome, cinematic scroll.
   Inspired by: Apple / Linear / OpenAI / Nothing / Aesop.
   ============================================================ */

:root {
  --bg: #030202;
  --bg-soft: #0a0505;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --white: #ffffff;
  --text: #f2f2f2;
  --text-dim: #a5a1a1;
  --text-faint: #6b6464;
  --danger: #ff6b6b;
  --success: #7ee0a8;
  --accent: #ef233c;
  --accent-2: #ff4d5e;
  --accent-line: rgba(239, 35, 60, 0.35);
  --accent-glow: rgba(239, 35, 60, 0.45);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
  --mobile-cta-h: 68px;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-dim);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--mobile-cta-h);
  position: relative;
}
body::selection, body *::selection { background: var(--accent); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 1.12;
}
h1, h2 {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
h1 .gold, h2 .gold, h3 .gold, h4 .gold {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-2);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow: 0 0 28px var(--accent-glow);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: rgba(239, 35, 60, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

p { margin: 0 0 14px; }

/* ---------- Grain / noise texture overlay (self-contained SVG, no external CDN) ---------- */
.grain-overlay {
  position: fixed; inset: 0; z-index: 45; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   GLOBAL AMBIENT BACKGROUND — fixed, sits behind every section
   ============================================================ */
.site-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.site-bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
}
.site-bg-glow {
  position: absolute; border-radius: 50%; filter: blur(140px);
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.5;
}
.site-bg-glow--a { width: 900px; height: 900px; top: -320px; left: 50%; transform: translateX(-50%); }
.site-bg-glow--b { width: 560px; height: 560px; bottom: -220px; right: -140px; opacity: 0.28; }
.site-bg-stars {
  position: absolute; top: 0; left: 0; width: 2px; height: 2px; background: transparent;
  animation: siteStarsDrift 140s linear infinite;
}
.stars-1 { box-shadow: 234px 124px #fff, 654px 345px #fff, 876px 512px #fff, 1200px 800px #fff, 400px 1500px #fff, 1800px 200px #fff, 100px 1000px #fff, 900px 1900px #fff, 500px 600px #fff, 1400px 100px #fff, 300px 400px #fff, 1600px 1200px #fff, 60px 2200px #fff, 1050px 2600px #fff; }
.stars-2 { box-shadow: 123px 456px #fff, 789px 234px #fff, 456px 890px #fff, 1100px 300px #fff, 200px 1200px #fff, 1500px 500px #fff, 600px 1700px #fff, 1300px 900px #fff, 260px 2400px #fff, 1700px 2100px #fff; animation-duration: 200s; }
@keyframes siteStarsDrift { from { transform: translateY(0); } to { transform: translateY(-2400px); } }
@media (prefers-reduced-motion: reduce) { .site-bg-stars { animation: none; } }

section, header, footer, .urgency-bar, .proof-strip { position: relative; z-index: 1; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 140px 0; }
.section-tight { padding: 90px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-head { max-width: 640px; margin: 0 0 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 52px); }
.section-head p { font-size: 17px; font-weight: 300; letter-spacing: 0.01em; color: var(--text-dim); }

/* ---------- Scroll reveal (base layer; GSAP adds hero/parallax on top) ---------- */
.reveal { opacity: 0; transform: translateY(30px) rotate(var(--tilt, 0deg)); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0) rotate(var(--tilt, 0deg)); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Pure-CSS cascade stagger for grid/list children — no extra JS needed */
.why-grid .why-card:nth-child(1) { transition-delay: 0s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.08s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.16s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.24s; }
.why-grid .why-card:nth-child(5) { transition-delay: 0.32s; }
.why-grid .why-card:nth-child(6) { transition-delay: 0.4s; }
.bonus-grid .bonus-card:nth-child(1) { transition-delay: 0s; }
.bonus-grid .bonus-card:nth-child(2) { transition-delay: 0.1s; }
.bonus-grid .bonus-card:nth-child(3) { transition-delay: 0.2s; }
.testi-grid .testi-card:nth-child(1) { transition-delay: 0s; }
.testi-grid .testi-card:nth-child(2) { transition-delay: 0.1s; }
.testi-grid .testi-card:nth-child(3) { transition-delay: 0.2s; }
.timeline-item:nth-child(1) { transition-delay: 0s; }
.timeline-item:nth-child(2) { transition-delay: 0.06s; }
.timeline-item:nth-child(3) { transition-delay: 0.12s; }
.timeline-item:nth-child(4) { transition-delay: 0.18s; }
.timeline-item:nth-child(5) { transition-delay: 0.24s; }
.timeline-item:nth-child(6) { transition-delay: 0.3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: 17px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Shiny spinning-border CTA — conic gradient ring around a black-red fill */
.btn-primary {
  --gradient-angle: 0deg;
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(#0d0405, #0d0405) padding-box,
    conic-gradient(from var(--gradient-angle), transparent 0%, var(--accent) 6%, var(--accent-2) 16%, var(--accent) 32%, transparent 42%, transparent 100%) border-box;
  border: 2px solid transparent;
  animation: btnBorderSpin 3s linear infinite;
  box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px -6px var(--accent-glow); }
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }
@keyframes btnBorderSpin { to { --gradient-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) { .btn-primary { animation: none; } }

.btn-outline {
  background: rgba(255,255,255,0.02);
  color: var(--white);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--accent); color: #fff; box-shadow: 0 0 0 1px var(--accent-line); }
.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 14px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.cta-note { font-size: 13px; color: var(--text-faint); margin-top: 16px; }

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  position: relative;
  z-index: 70;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-dim);
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  padding: 10px 14px;
  letter-spacing: 0.01em;
}
.urgency-bar span { color: var(--white); font-weight: 600; }

/* ============================================================
   FLOATING NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 20px 0;
}
.navbar .container { display: flex; justify-content: center; }
.nav-pill {
  width: 100%;
  max-width: 920px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(8, 4, 4, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.7);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled .nav-pill { border-color: var(--accent-line); box-shadow: 0 16px 46px -14px var(--accent-glow); }
.nav-logo { display: flex; align-items: center; gap: 9px; font-family: 'Playfair Display', serif; font-size: 16.5px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.nav-logo-mark { width: 9px; height: 9px; background: var(--accent); border-radius: 2px; transform: rotate(45deg); box-shadow: 0 0 12px var(--accent-glow); flex: none; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 13.5px; color: var(--text-dim); position: relative; padding: 4px 0;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }
@media (min-width: 860px) { .nav-cta { display: inline-flex; } }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--white); border-radius: var(--radius-sm); padding: 9px 14px; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
}
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.22; filter: saturate(0.3) contrast(1.05);
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(3,2,2,0.6) 0%, rgba(3,2,2,0.8) 55%, var(--bg) 100%);
}
.hero-shapes { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%; filter: blur(80px);
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
}
.hero-shape.s1 { width: 520px; height: 520px; top: -160px; left: -120px; }
.hero-shape.s2 { width: 420px; height: 420px; bottom: -140px; right: -100px; background: radial-gradient(circle, rgba(239,35,60,0.28), transparent 70%); }
.hero-shape.s3 { width: 300px; height: 300px; top: 40%; left: 60%; background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%); }

.hero-clock {
  position: relative; z-index: 3; font-size: 12.5px; letter-spacing: 0.08em; color: var(--text-faint);
  font-variant-numeric: tabular-nums; margin-bottom: 28px; text-transform: uppercase;
}
.hero-content { position: relative; z-index: 3; max-width: 900px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  backdrop-filter: blur(10px); margin-bottom: 30px;
}
.hero-badge .eyebrow { margin: 0; }
.hero-badge .eyebrow::before { display: none; }
.hero-badge-dot { position: relative; width: 8px; height: 8px; flex: none; }
.hero-badge-dot .dot { position: absolute; inset: 0; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.hero-badge-dot .ping { position: absolute; inset: 0; border-radius: 50%; background: var(--accent); opacity: 0.75; animation: heroBadgePing 1.8s cubic-bezier(0,0,0.2,1) infinite; }
@keyframes heroBadgePing { 75%, 100% { transform: scale(2.4); opacity: 0; } }

.hero h1 { font-size: clamp(38px, 6.4vw, 84px); line-height: 1.06; }
.hero-sub {
  font-size: clamp(15.5px, 1.6vw, 19px); font-weight: 300; letter-spacing: 0.015em;
  color: var(--text-dim); max-width: 640px; margin: 0 auto 20px;
}
.hero-proof { font-size: 13.5px; color: var(--text-faint); margin-bottom: 44px; letter-spacing: 0.01em; }
.hero-proof strong { color: var(--white); font-weight: 600; }
.hero .cta-row { justify-content: center; margin-bottom: 10px; }

/* ---------- Hero video (autoplay, muted, unmute control) ---------- */
.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16/9;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--accent-line);
  box-shadow: 0 30px 90px -30px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.04), 0 0 80px -20px var(--accent-glow);
}
.hero-video-glow {
  position: absolute; inset: -40%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 65%);
  opacity: 0.5; filter: blur(40px);
}
.hero-video-frame iframe {
  position: relative; z-index: 1; width: 100%; height: 100%; border: 0; display: block;
}
.hero-unmute-btn {
  position: absolute; z-index: 2; bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(5,2,2,0.72); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18); color: #fff;
  border-radius: 999px; padding: 10px 16px; font-size: 12.5px; font-weight: 600;
  cursor: pointer; transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}
.hero-unmute-btn:hover { border-color: var(--accent); background: rgba(20,2,4,0.85); transform: translateY(-2px); }
.hero-unmute-btn iconify-icon { font-size: 16px; }
.hero-unmute-btn .icon-unmuted { display: none; }
.hero-unmute-btn[aria-pressed="true"] .icon-muted { display: none; }
.hero-unmute-btn[aria-pressed="true"] .icon-unmuted { display: inline-flex; }
@media (max-width: 560px) { .hero-unmute-btn .hero-unmute-label { display: none; } }

.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
  color: var(--text-faint); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
}
.scroll-indicator .line { width: 1px; height: 40px; background: linear-gradient(var(--text-faint), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { opacity: 0.2; } 50% { opacity: 1; } 100% { opacity: 0.2; } }

/* ============================================================
   TRUSTED BY / PROOF STRIP
   ============================================================ */
.proof-strip { padding: 70px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(10,5,5,0.55); backdrop-filter: blur(6px); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.proof-icon { font-size: 20px; color: var(--accent); margin-bottom: 10px; filter: drop-shadow(0 0 10px var(--accent-glow)); }
.proof-num { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; font-family: 'Manrope', sans-serif; color: var(--white); letter-spacing: -0.02em; }
.proof-lbl { font-size: 12.5px; color: var(--text-faint); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 6px; }

/* ============================================================
   WHY THIS WEBINAR — cards
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.why-card {
  position: relative; background: var(--bg-soft); padding: 40px 32px; overflow: hidden;
  transition: background 0.4s ease;
}
.why-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(circle at 30% 0%, var(--accent-glow), transparent 65%);
  transition: opacity 0.4s ease;
}
.why-card:hover::before { opacity: 0.55; }
.why-card:hover { background: rgba(255,255,255,0.03); }
.why-card .why-icon {
  position: relative; width: 44px; height: 44px; border: 1px solid var(--accent-line); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  color: var(--accent-2); font-size: 19px; background: rgba(239,35,60,0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.why-card:hover .why-icon { transform: translateY(-3px) scale(1.05); box-shadow: 0 0 24px var(--accent-glow); }
.why-card h4 { position: relative; font-size: 18px; margin-bottom: 10px; }
.why-card p { position: relative; font-size: 14.5px; color: var(--text-dim); margin: 0; }

/* ============================================================
   CURRICULUM — timeline
   ============================================================ */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 23px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(var(--accent-line), var(--line), transparent);
}
.timeline-item { position: relative; display: flex; gap: 28px; padding-bottom: 46px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-num {
  flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--bg-soft);
  border: 1px solid var(--accent-line); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white); z-index: 1;
  box-shadow: 0 0 0 4px var(--bg), 0 0 18px -4px var(--accent-glow);
}
.timeline-body { padding-top: 8px; }
.timeline-body h4 { font-size: 17.5px; margin-bottom: 6px; }
.timeline-body p { font-size: 14.5px; color: var(--text-dim); margin: 0; }

/* ============================================================
   BONUSES
   ============================================================ */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (min-width: 640px) { .bonus-grid { gap: 32px 26px; } }
.bonus-card {
  position: relative; z-index: 1;
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px 28px; background: var(--surface);
  transition: border-color 0.35s ease, transform 0.4s var(--ease), box-shadow 0.35s ease, background 0.35s ease, z-index 0s;
}
.bonus-card:hover { border-color: var(--accent-line); transform: translateY(-8px) rotate(0deg) scale(1.03); box-shadow: 0 24px 60px -20px var(--accent-glow); z-index: 3; }
.bonus-card .bonus-icon { font-size: 26px; margin-bottom: 18px; filter: drop-shadow(0 0 10px var(--accent-glow)); }
.bonus-card h4 { font-size: 16.5px; }
.bonus-card p { font-size: 14px; color: var(--text-dim); }
.bonus-card .worth { display: block; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13.5px; color: var(--text-faint); }
.bonus-card .worth b { color: var(--accent-2); font-weight: 700; }
.bonus-free-line { text-align: center; margin-top: 40px; font-size: 16px; color: var(--white); font-weight: 500; }

/* Alternating premium colorways + a slight scattered tilt (straightens on hover) —
   applied at every width so mobile and desktop match; the angle is just smaller
   on narrow screens since single-column cards sit closer to the viewport edge. */
.bonus-grid .bonus-card:nth-child(3n+1) { background: linear-gradient(160deg, rgba(239,35,60,0.18), rgba(239,35,60,0.02) 65%); border-color: var(--accent-line); }
.bonus-grid .bonus-card:nth-child(3n+2) { background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015) 65%); border-color: var(--line); }
.bonus-grid .bonus-card:nth-child(3n+3) { background: linear-gradient(160deg, rgba(127,20,36,0.4), rgba(127,20,36,0.08) 65%); border-color: rgba(127,20,36,0.65); }
.bonus-grid .bonus-card:nth-child(odd) { --tilt: -2deg; }
.bonus-grid .bonus-card:nth-child(even) { --tilt: 1.7deg; }
@media (min-width: 640px) {
  .bonus-grid .bonus-card:nth-child(odd) { --tilt: -3.5deg; }
  .bonus-grid .bonus-card:nth-child(even) { --tilt: 3deg; }
}

/* ============================================================
   SPEAKER
   ============================================================ */
.speaker-wrap { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 60px; align-items: center; }
.speaker-photo-wrap { text-align: center; }
.speaker-photo {
  position: relative;
  width: 100%; max-width: 320px; aspect-ratio: 4/5; border-radius: var(--radius-lg); margin: 0 auto;
  background: var(--surface); border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; font-weight: 600; color: var(--white); overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 30px 70px -30px var(--accent-glow), 0 0 90px -30px var(--accent-glow);
}
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; }
.speaker-info .role { color: var(--accent-2); font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.speaker-info h3 { font-size: clamp(28px, 3.6vw, 42px); }
.speaker-info p { font-size: 16px; color: var(--text-dim); }
.speaker-stats { display: flex; gap: 40px; margin: 28px 0 32px; flex-wrap: wrap; }
.speaker-stats .s-stat b { display: block; font-family: 'Manrope', sans-serif; font-size: 26px; color: var(--white); font-weight: 800; letter-spacing: -0.01em; }
.speaker-stats .s-stat span { font-size: 12.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.03em; }

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (min-width: 640px) { .testi-grid { gap: 32px 26px; } }
.testi-card {
  position: relative; z-index: 1;
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px 26px; background: var(--surface);
  transition: border-color 0.35s ease, transform 0.4s var(--ease), box-shadow 0.35s ease, background 0.35s ease, z-index 0s;
}
.testi-card:hover { border-color: var(--accent-line); transform: translateY(-8px) rotate(0deg) scale(1.03); box-shadow: 0 26px 64px -20px var(--accent-glow); z-index: 3; }

/* Alternating premium colorways + a slight scattered tilt (straightens on hover) —
   applied at every width so mobile and desktop match; the angle is just smaller
   on narrow screens since single-column cards sit closer to the viewport edge. */
.testi-grid .testi-card:nth-child(3n+1) { background: linear-gradient(160deg, rgba(127,20,36,0.4), rgba(127,20,36,0.08) 65%); border-color: rgba(127,20,36,0.65); }
.testi-grid .testi-card:nth-child(3n+2) { background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015) 65%); border-color: var(--line); }
.testi-grid .testi-card:nth-child(3n+3) { background: linear-gradient(160deg, rgba(239,35,60,0.18), rgba(239,35,60,0.02) 65%); border-color: var(--accent-line); }
.testi-grid .testi-card:nth-child(odd) { --tilt: 2deg; }
.testi-grid .testi-card:nth-child(even) { --tilt: -1.7deg; }
@media (min-width: 640px) {
  .testi-grid .testi-card:nth-child(odd) { --tilt: 3.5deg; }
  .testi-grid .testi-card:nth-child(even) { --tilt: -3deg; }
}
.testi-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; overflow: hidden;
  background: var(--surface-strong); border: 1px solid var(--accent-line);
  color: var(--white); font-weight: 600; font-size: 14.5px;
  display: flex; align-items: center; justify-content: center;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 14.5px; font-weight: 600; color: var(--white); }
.testi-role { font-size: 12px; color: var(--text-faint); }
.testi-stars { color: var(--accent-2); font-size: 12.5px; margin-bottom: 10px; letter-spacing: 0.05em; }
.testi-card p { font-size: 14.5px; color: var(--text-dim); margin: 0; }
.testi-result {
  margin-top: 16px; font-size: 12.5px; font-weight: 600; color: var(--accent-2);
  border: 1px solid var(--accent-line); background: rgba(239,35,60,0.08);
  padding: 7px 12px; border-radius: 999px; display: inline-block;
}

.video-testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 260px)); justify-content: center; gap: 20px; margin-top: 48px; }
.video-testi-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 9/12; background: #000; border: 1px solid var(--accent-line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease, border-color 0.3s ease;
}
.video-testi-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -20px var(--accent-glow); border-color: var(--accent); }
.video-testi-card::after {
  content: ''; position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; height: 55%;
  background: linear-gradient(180deg, rgba(5,2,2,0) 0%, rgba(5,2,2,0.8) 100%);
  pointer-events: none;
}
.video-testi-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-testi-unmute {
  position: absolute; z-index: 2; bottom: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,2,2,0.6); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25); color: #fff; cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.video-testi-unmute:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }
.video-testi-unmute iconify-icon { font-size: 15px; }
.video-testi-unmute .icon-unmuted { display: none; }
.video-testi-unmute[aria-pressed="true"] .icon-muted { display: none; }
.video-testi-unmute[aria-pressed="true"] .icon-unmuted { display: inline-flex; }
.video-testi-card .vname { position: absolute; z-index: 2; bottom: 14px; left: 14px; font-size: 12.5px; color: #fff; font-weight: 600; }

/* ============================================================
   WEBINAR DETAILS + REGISTER
   ============================================================ */
.register-wrap { display: grid; grid-template-columns: 0.85fr 1fr; gap: 60px; align-items: start; }
.details-list { display: flex; flex-direction: column; }
.detail-row { display: flex; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.detail-row span:first-child { color: var(--text-faint); }
.detail-row span:last-child { color: var(--white); font-weight: 500; text-align: right; }

#reserve-form { scroll-margin-top: 110px; }
.reg-card {
  position: relative;
  border: 1px solid var(--accent-line); border-radius: var(--radius-lg); padding: 36px 32px;
  background: linear-gradient(180deg, rgba(239,35,60,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 40px 90px -40px var(--accent-glow), 0 0 0 1px rgba(255,255,255,0.03);
}
.reg-card h3 { font-size: 21px; }
.reg-card .reg-sub { color: var(--text-dim); font-size: 13.5px; margin-bottom: 26px; }
.reg-seats {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-dim);
  border: 1px solid var(--accent-line); background: rgba(239,35,60,0.06); border-radius: 999px; padding: 7px 14px; margin-bottom: 22px;
}
.reg-seats .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; color: var(--text-faint); margin-bottom: 8px; }
.field input {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--line); color: var(--white);
  padding: 14px 15px; border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; min-height: 46px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-line); }
.field small.error { color: var(--danger); font-size: 12px; display: none; margin-top: 6px; }
.form-error-banner {
  background: rgba(255,107,107,0.08); border: 1px solid rgba(255,107,107,0.35);
  color: #ffb3b3; font-size: 13px; padding: 12px 14px; border-radius: var(--radius-sm);
  margin-bottom: 16px; line-height: 1.6;
}
.field.has-error input { border-color: var(--danger); }
.field.has-error small.error { display: block; }

.trust-row { display: flex; justify-content: space-between; gap: 8px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; text-align: center; }
.trust-item svg { width: 18px; height: 18px; color: var(--text-dim); }
.trust-item span { font-size: 10px; color: var(--text-faint); }

.reg-success { display: none; text-align: center; padding: 6px 0; }
.reg-success.show { display: block; }
.reg-success .check-circle {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.reg-success .check-circle svg { width: 26px; height: 26px; fill: #050505; }
.reg-success h4 { font-size: 18px; }
.reg-success p { font-size: 13.5px; color: var(--text-dim); }
.reg-success .wa-steps { text-align: left; margin-top: 18px; }
.reg-success .wa-steps li { display: flex; gap: 10px; font-size: 13px; color: var(--text-dim); margin-bottom: 12px; }
.reg-success .wa-steps b { color: var(--white); }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-timer { display: flex; gap: 12px; justify-content: center; margin: 8px 0 0; }
.countdown-timer .unit { border: 1px solid var(--accent-line); border-radius: var(--radius-sm); padding: 14px 18px; text-align: center; min-width: 74px; background: rgba(239,35,60,0.05); }
.countdown-timer .unit .num { font-family: 'Manrope', sans-serif; font-size: 26px; font-weight: 800; color: var(--white); font-variant-numeric: tabular-nums; text-shadow: 0 0 18px var(--accent-glow); }
.countdown-timer .unit .lbl { font-size: 10px; text-transform: uppercase; color: var(--text-faint); letter-spacing: 0.06em; margin-top: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: var(--white);
  font-weight: 500; font-size: 16.5px; padding: 26px 0; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; min-height: 44px;
}
.faq-q .icon { flex: none; width: 22px; height: 22px; color: var(--accent-2); transition: transform 0.4s var(--ease), color 0.3s ease; font-weight: 300; }
.faq-q:hover .icon { color: var(--accent); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 0 26px; font-size: 14.5px; color: var(--text-dim); max-width: 640px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; text-align: center; padding: 170px 0; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 700px; height: 700px;
  transform: translate(-50%, -50%); border-radius: 50%; filter: blur(140px); z-index: -1;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%); opacity: 0.55; pointer-events: none;
}
.final-cta h2 { font-size: clamp(34px, 6vw, 76px); max-width: 900px; margin: 0 auto 26px; }
.final-cta .value-line { font-size: 15px; color: var(--text-faint); margin-bottom: 40px; }
.final-cta .value-line b { color: var(--accent-2); font-weight: 700; }
.final-cta .cta-row { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--line-soft); padding: 60px 0 0; overflow: hidden; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.footer-brand h4 { font-size: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-faint); max-width: 320px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px 28px; font-size: 13px; color: var(--text-dim); }
.footer-links a:hover { color: var(--accent-2); }
.footer-disclaimer { font-size: 11px; color: var(--text-faint); border-top: 1px solid var(--line-soft); padding-top: 22px; line-height: 1.8; }
.footer-bottom { text-align: center; font-size: 11.5px; color: var(--text-faint); margin-top: 18px; padding-bottom: 34px; }
.footer-watermark {
  display: flex; justify-content: center; align-items: center;
  padding: 10px 0 0; pointer-events: none; user-select: none; opacity: 0.5;
}
.footer-watermark span {
  font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(38px, 11vw, 160px); line-height: 1; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(239,35,60,0.14), transparent 60%);
  -webkit-background-clip: text; background-clip: text;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  background: rgba(5,5,5,0.9); backdrop-filter: blur(16px); border-top: 1px solid var(--line-soft);
  padding: 12px 18px; display: none;
}
.mobile-sticky-cta a { display: block; }

/* ============================================================
   EXIT-INTENT POPUP
   ============================================================ */
.exit-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(6px); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.exit-popup-overlay.show { display: flex; }
.exit-popup {
  background: var(--bg-soft); border: 1px solid var(--accent-line); border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px -30px var(--accent-glow);
  max-width: 440px; width: 100%; padding: 40px 34px; text-align: center; position: relative;
}
.exit-popup .close-x { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--text-dim); font-size: 20px; cursor: pointer; width: 32px; height: 32px; }
.exit-popup h3 { font-size: 21px; }
.exit-popup p { font-size: 14px; color: var(--text-dim); }

/* ---------- Custom cursor (desktop pointer only) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.35); transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease; }
.cursor-ring.hovering { width: 54px; height: 54px; border-color: var(--accent); }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .speaker-wrap { grid-template-columns: 1fr; text-align: center; }
  .speaker-stats { justify-content: center; }
  .register-wrap { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero-video-frame { max-width: 100%; }
}
@media (max-width: 720px) {
  section { padding: 90px 0; }
  .nav-pill { padding: 8px 8px 8px 16px; }
  .nav-links {
    display: none; position: fixed; inset: 0; top: 0; z-index: 65;
    background: rgba(5,2,2,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; }
  .nav-toggle { display: inline-block; position: relative; z-index: 66; }
  .hero-badge { margin-bottom: 22px; }
  .hero-video-frame { border-radius: var(--radius-md); margin-bottom: 30px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .mobile-sticky-cta { display: block; }
  .countdown-timer { flex-wrap: wrap; }
  .countdown-timer .unit { min-width: 64px; padding: 10px 12px; }
  body { padding-bottom: calc(var(--mobile-cta-h) + 8px); }
  .final-cta { padding: 110px 0; }
}
