/* ═══════════════════════════════════════════════════════════════════════════
   IMPOSSIBLE MEANS GO — Premium Editorial Dark Theme
   Color System:
     Background base:    #0A0A0F (near-black obsidian)
     Surface 1:          #0E0E16 (dark section)
     Surface 2:          #111120 (darker card)
     Surface card:       #141422 (card background)
     Border:             rgba(255,255,255,0.08)
     Border gold:        rgba(196,158,69,0.35)
     Gold primary:       #C49E45
     Gold light:         #E0BA6A
     Gold dim:           rgba(196,158,69,0.6)
     Text primary:       #F0EDE6 (warm white)
     Text muted:         #9B9B9B
     Text faint:         #5A5A6A
     Green accent:       #2E6B44
     Red accent:         #6B2E2E
═══════════════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:        #0A0A0F;
  --bg-dark:        #0E0E16;
  --bg-darker:      #070709;
  --bg-card:        #141422;
  --bg-card-hover:  #1A1A2E;
  --border:         rgba(255,255,255,0.07);
  --border-gold:    rgba(196,158,69,0.3);
  --gold:           #C49E45;
  --gold-light:     #E0BA6A;
  --gold-dim:       rgba(196,158,69,0.55);
  --text:           #F0EDE6;
  --text-muted:     #9B9B9B;
  --text-faint:     #5A5A6A;
  --green:          #4ADE80;
  --green-dim:      rgba(74,222,128,0.12);
  --red:            #F87171;
  --red-dim:        rgba(248,113,113,0.10);
  --radius:         10px;
  --radius-lg:      16px;
  --transition:     0.3s ease;
  --shadow-card:    0 4px 40px rgba(0,0,0,0.6);
  --shadow-gold:    0 0 40px rgba(196,158,69,0.12);
  --max-w:          1160px;
  --nav-h:          72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-base);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── CONTAINER ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────────────────── */
.gold-italic {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}

.gold-text { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 36px;
}

.section-intro {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 56px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0A0A0F;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,158,69,0.35);
}

.btn-gold.btn-lg { font-size: 1rem; padding: 16px 36px; }
.btn-gold.btn-sm { font-size: 0.82rem; padding: 11px 20px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover {
  border-color: var(--border-gold);
  color: var(--gold-light);
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: #0A0A0F;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); background: var(--border); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── ANNOUNCEMENT BAR ──────────────────────────────────────────────── */
.announce-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: linear-gradient(90deg, #1A0E2E 0%, #0F0F20 50%, #1A1408 100%);
  border-top: 1px solid var(--border-gold);
  text-align: center;
  padding: 10px 24px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: transform 0.4s ease;
}
.announce-bar.hidden { transform: translateY(100%); }

/* ─── SECTIONS ──────────────────────────────────────────────────────── */
.section-dark {
  background: var(--bg-dark);
  padding: 120px 0;
}
.section-darker {
  background: var(--bg-darker);
  padding: 120px 0;
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 140px;
  background: var(--bg-base);
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
#networkCanvas {
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  background: rgba(196,158,69,0.06);
}
.pill-badge i { font-size: 8px; animation: pulse-dot 2s ease-in-out infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat { padding: 0 40px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ─── SOUND FAMILIAR ────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.prose p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.prose p:last-child { margin-bottom: 0; }

.pull-quote {
  position: relative;
  padding: 40px 48px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: rgba(196,158,69,0.04);
}
.pull-quote-mark {
  position: absolute;
  top: -20px;
  left: 32px;
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  opacity: 0.5;
}
.pull-quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

/* ─── OUTCOMES ──────────────────────────────────────────────────────── */
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.outcome-item:first-child { border-top: 1px solid var(--border); }
.outcome-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  flex-shrink: 0;
  width: 28px;
  margin-top: 4px;
}
.outcome-body strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.outcome-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.outcomes-footer {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

/* ─── FEBRUARY ──────────────────────────────────────────────────────── */
.february-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.february-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.february-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.february-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,158,69,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 20px;
}
.february-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.february-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.story-callout {
  padding: 40px 0;
}
.story-callout-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 36px;
}
.story-callout p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 760px;
}
.story-callout p strong { color: var(--text); }
.story-callout p:last-of-type { margin-bottom: 36px; }

/* ─── VIDEOS ────────────────────────────────────────────────────────── */
.video-featured {
  margin-bottom: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.video-featured:hover { border-color: var(--border-gold); }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-featured-caption {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.video-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,158,69,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 4px 10px;
  flex-shrink: 0;
}
.video-featured-caption p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.video-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

/* ─── FRAMEWORK ─────────────────────────────────────────────────────── */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.framework-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.framework-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.framework-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.framework-card:hover::before { opacity: 1; }

.framework-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}
.framework-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.framework-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.framework-footer {
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.framework-footer-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.framework-footer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
}

/* ─── SCHEDULE ──────────────────────────────────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.schedule-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.schedule-card--featured {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, rgba(196,158,69,0.07) 0%, var(--bg-card) 60%);
}
.schedule-card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.schedule-day-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.schedule-day-name {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.schedule-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.schedule-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.schedule-list li i {
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 5px;
}

.schedule-badge {
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(196,158,69,0.1);
  border: 1px solid rgba(196,158,69,0.2);
  border-radius: 8px;
  font-size: 11px;
  color: var(--gold-light);
  line-height: 1.5;
  font-style: italic;
}

/* ─── WHO IT'S FOR ──────────────────────────────────────────────────── */
.for-not-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 80px;
  align-items: start;
}
.for-divider { background: var(--border); }
.for-label-green { color: var(--green); border-bottom-color: rgba(74,222,128,0.3); }
.for-label-red { color: var(--red); border-bottom-color: rgba(248,113,113,0.3); }

.for-headline {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 36px;
}

.for-list, .not-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.for-list li, .not-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.for-list li i {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}
.not-list li i {
  color: var(--red);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

.for-note {
  font-size: 0.9rem;
  color: var(--text-faint);
  font-style: italic;
  border-left: 2px solid var(--border-gold);
  padding-left: 16px;
  line-height: 1.7;
}

/* ─── VALUE TABLE ───────────────────────────────────────────────────── */
.value-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.value-table {
  width: 100%;
  border-collapse: collapse;
}
.value-table thead th {
  text-align: left;
  padding: 20px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.value-table thead th:last-child { text-align: right; }
.value-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.value-table tbody tr:last-child { border-bottom: none; }
.value-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.value-table tbody td {
  padding: 18px 28px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.value-table tbody td:last-child { text-align: right; }
.value-amount {
  font-weight: 600;
  color: var(--text);
}
.value-table tfoot tr {
  border-top: 1px solid var(--border-gold);
  background: rgba(196,158,69,0.05);
}
.value-table tfoot td {
  padding: 20px 28px;
  font-size: 0.95rem;
  color: var(--text);
}
.value-table tfoot td:last-child { text-align: right; }
.value-total {
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 800;
}

.value-cta-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ─── PRICING ───────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
}

.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(196,158,69,0.09) 0%, var(--bg-card) 55%);
  box-shadow: 0 0 60px rgba(196,158,69,0.12);
}
.pricing-card--featured:hover { transform: translateY(-8px); }

.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0A0F;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-top {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.tier-price {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1;
}
.tier-dollar {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  vertical-align: super;
  margin-right: 2px;
}
.tier-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.tier-seats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}
.tier-seats i { color: var(--gold); font-size: 8px; }
.tier-seats--urgent { color: var(--red); }
.tier-seats--urgent i { color: var(--red); }

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.tier-features li i {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

.btn-tier {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
  margin-top: auto;
}
.btn-tier:hover {
  border-color: var(--border-gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-tier--gold {
  background: var(--gold);
  color: #0A0A0F;
  border-color: var(--gold);
}
.btn-tier--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0A0A0F;
}

/* ─── GUARANTEE ─────────────────────────────────────────────────────── */
.guarantee-block {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 40px;
  background: rgba(196,158,69,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}
.guarantee-icon {
  width: 52px;
  height: 52px;
  background: rgba(196,158,69,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}
.guarantee-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.guarantee-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── DETAILS ───────────────────────────────────────────────────────── */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 32px;
  background: var(--bg-card);
  transition: background var(--transition);
}
.detail-item:hover { background: var(--bg-card-hover); }
.detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.detail-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: background var(--transition), color var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q[aria-expanded="true"] { color: var(--gold-light); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 500px;
}
.faq-a p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ─── CLOSING ───────────────────────────────────────────────────────── */
.section-closing {
  padding: 140px 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.section-closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196,158,69,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.closing-pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.closing-pre::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.closing-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}

.closing-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.closing-invite {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin: 32px 0 !important;
}

.closing-ctas {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.closing-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.closing-contact span {
  font-size: 0.9rem;
  color: var(--text-faint);
}
.closing-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 2px;
}
.closing-text-link:hover { color: var(--gold-light); }

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  padding: 32px 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-faint);
}
.footer-sep { opacity: 0.4; }
.footer-meta a {
  color: var(--gold-dim);
  transition: color var(--transition);
}
.footer-meta a:hover { color: var(--gold); }

/* ─── FLOATING CTA ──────────────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 60px;
  right: 28px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .framework-grid { grid-template-columns: repeat(3, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-inner { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open + .nav-cta { display: flex; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .february-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .for-not-grid { grid-template-columns: 1fr; }
  .for-divider { height: 1px; width: 100%; margin: 0; }
  .guarantee-block { flex-direction: column; gap: 20px; }

  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; padding-top: 28px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
}

@media (max-width: 640px) {
  .section-dark, .section-darker { padding: 80px 0; }
  .section-closing { padding: 80px 0; }
  .video-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .pull-quote { padding: 28px 24px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .float-cta { bottom: 56px; right: 16px; }
  .pricing-grid { max-width: 100%; }
  .closing-inner { gap: 40px; }
}

/* ─── WRITTEN TESTIMONIALS ──────────────────────────────────────────── */
.written-featured {
  position: relative;
  margin: 0 0 40px;
  padding: 48px 52px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: rgba(196,158,69,0.05);
}
.written-mark {
  position: absolute;
  top: -18px;
  left: 30px;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.written-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.written-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 28px;
}
.written-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.written-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 36px 30px;
  transition: border-color var(--transition), transform var(--transition);
}
.written-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.written-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
}
.written-quote em { color: var(--gold-light); font-style: italic; }
.written-attr {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.written-name {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.written-role {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
@media (max-width: 760px) {
  .written-grid { grid-template-columns: 1fr; }
  .written-featured { padding: 40px 28px; }
  .written-lead { font-size: 1.6rem; }
  .written-body { font-size: 1.15rem; }
}

/* ─── HERO FIRST-PAINT (don't gate the above-the-fold headline behind JS reveal) ─── */
.hero [data-reveal] { opacity: 1; transform: none; }

/* ─── HERO INLINE PROOF ─── */
.hero-proof {
  margin-top: 22px;
  max-width: 640px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}
.hero-proof-attr {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--gold);
}

/* ─── NAMED VIDEO CAPTIONS ─── */
.video-grid-named { grid-template-columns: repeat(2, 1fr); }
.video-featured-caption p { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }
.video-card-caption { padding: 18px 20px 4px; }
.video-card-caption p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 12px;
}
.video-attr { display: block; font-size: 0.85rem; color: var(--text-muted); }
.video-attr strong { color: var(--gold); font-weight: 700; }

/* ─── TESTIMONIAL ROLL (auto-scrolling reel) ─── */
.roll {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.roll-track { display: flex; gap: 20px; width: max-content; animation: roll-scroll 64s linear infinite; }
.roll:hover .roll-track { animation-play-state: paused; }
.roll-item {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px 22px;
  margin: 0;
}
.roll-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 18px;
}
.roll-quote em { color: var(--gold-light); font-style: italic; }
.roll-attr { border-top: 1px solid var(--border); padding-top: 12px; }
.roll-name { display: block; font-weight: 700; font-size: 0.9rem; color: var(--gold); }
.roll-role { display: block; margin-top: 3px; font-size: 0.78rem; color: var(--text-muted); }
@keyframes roll-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 760px) { .roll-item { flex-basis: 280px; } }
@media (prefers-reduced-motion: reduce) { .roll-track { animation: none; } .roll { overflow-x: auto; } }
.more-voices-label { margin-top: 60px; }

/* ─── GUIDE LETTER (Belcher-style, big call-outs) ─── */
.letter { max-width: 720px; }
.letter p { font-size: 1.08rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 22px; }
.letter > p:first-child { color: var(--text); font-weight: 600; font-size: 1.18rem; }
.letter strong { color: var(--text); font-weight: 700; }
.letter em { color: var(--gold-light); font-style: italic; }
.letter p.letter-callout {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text);
  margin: 36px 0;
  letter-spacing: -0.01em;
}
.letter .lc-gold { color: var(--gold-light); }
.letter p.letter-callout.lc-gold { color: var(--gold-light); }
.letter .pull-quote { margin: 32px 0; }
.letter p.letter-sig {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 760px) { .letter p.letter-callout { font-size: 1.42rem; } }
