/* ============================================================
   oliviasvrchek.com — Warm Elevated Design System
   Dusty rose + warm charcoal. Feminine, authoritative, futuristic.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  /* Warm cream base */
  --bg-primary: #FAF7F2;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F3EDE4;
  --bg-card: #FFFFFF;
  --bg-hero: #0C0C0C;

  /* Text — true black base */
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-tertiary: #8A8A8A;
  --text-on-dark: #F5F5F5;
  --text-secondary-on-dark: #A0A0A0;

  /* Clean dark accent — elegant, no color clash with cream */
  --accent: #1C1C22;
  --accent-light: #333340;
  --accent-deep: #0A0A0F;
  --accent-dim: rgba(28, 28, 34, 0.06);
  --accent-glow: rgba(28, 28, 34, 0.2);

  /* Pink — the real accent color, used for links, active states, highlights */
  --pop: #FF3D7F;
  --pop-light: #FF5A95;
  --pop-glow: rgba(255, 61, 127, 0.4);
  --pop-dim: rgba(255, 61, 127, 0.08);

  /* Borders */
  --border: rgba(28, 28, 34, 0.08);
  --border-accent: rgba(28, 28, 34, 0.15);
  --border-glow: rgba(255, 61, 127, 0.35);

  /* Layout */
  --nav-height: 64px;

  /* Effects */
  --gradient-accent: linear-gradient(135deg, #FF3D7F 0%, #FF5A95 100%);
  --shadow-soft: 0 2px 16px rgba(28, 28, 34, 0.06);
  --shadow-card: 0 4px 24px rgba(28, 28, 34, 0.08);
  --shadow-hover: 0 12px 40px rgba(28, 28, 34, 0.15);
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
  letter-spacing: -0.005em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pop); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pop-light); }
a:focus-visible { outline: 2px solid var(--pop); outline-offset: 2px; }

/* ---- Typography ---- */
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 104px);
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-variation-settings: "opsz" 144;
}
h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---- Utilities ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-column { max-width: 720px; }
section { padding: 80px 0; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

.tag, .label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}

/* Pop variant for "Coming Soon" / "Start Here" — pink text */
.tag-pop { color: var(--pop); }
.mono { font-family: 'Montserrat', sans-serif; font-size: 14px; }

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Badges ---- */
.badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: inline-block;
  margin: 4px;
  color: var(--text-primary);
  background: var(--bg-secondary);
  white-space: nowrap;
  transition: all 0.3s var(--transition-smooth);
}
.badge:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 16px var(--pop-glow);
  transform: translateY(-2px);
  color: var(--pop);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; position: relative; overflow: hidden; }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover {
  background: var(--accent-light);
  color: #fff;
  box-shadow: 0 6px 20px rgba(28,28,34,0.25), 0 0 24px var(--pop-glow);
  transform: translateY(-1px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--pop-dim); color: var(--pop); border-color: var(--pop); }
.btn-text { background: none; color: var(--pop); padding: 0; font-weight: 500; }
.btn-text:hover { color: var(--pop-light); }
.btn-text::after { content: ' \2192'; }

/* Scroll progress bar — thin pink line at very top of viewport */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--pop) 0%, #FF5A95 100%);
  z-index: 101;
  box-shadow: 0 0 12px var(--pop-glow);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION — Always visible
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(12, 12, 12, 0.95);
  transition: background 0.3s, border-color 0.3s;
}
.site-nav.scrolled {
  background: rgba(247, 241, 228, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text-on-dark);
  transition: color 0.3s;
  font-variation-settings: "opsz" 144;
}
.site-nav.scrolled .nav-logo { color: var(--text-primary); }
.nav-logo:hover { color: var(--pop); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary-on-dark);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--pop);
  box-shadow: 0 0 8px var(--pop-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--transition-smooth);
}
.nav-links a:hover::after { transform: scaleX(1); }
.site-nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--text-on-dark); }
.site-nav.scrolled .nav-links a:hover { color: var(--text-primary); }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-on-dark);
  position: absolute; left: 5px;
  transition: all 0.3s;
}
.site-nav.scrolled .nav-hamburger span { background: var(--text-primary); }
.nav-hamburger span:nth-child(1) { top: 8px; }
.nav-hamburger span:nth-child(2) { top: 15px; }
.nav-hamburger span:nth-child(3) { top: 22px; }
.nav-hamburger.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); right: 0; bottom: 0;
  width: 280px; background: rgba(247, 241, 228, 0.98);
  backdrop-filter: blur(16px); border-left: 1px solid var(--border);
  z-index: 99; padding: 32px 24px;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block; font-family: 'Manrope', sans-serif; font-weight: 500;
  font-size: 16px; color: var(--text-secondary); padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--pop); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 98; }

/* ============================================================
   HERO — Split layout with photo left, text center-right
   ============================================================ */
.hero {
  padding: 60px 0 40px;
  background: #0C0C0C;
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
/* Animated radial glow — behind the photo area */
.hero::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(232, 168, 145, 0.22) 0%, rgba(235, 210, 194, 0.1) 35%, transparent 60%);
  transition: background 0.8s ease;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}
/* Glow warms toward pink when hovering the photo */
.hero:has(.hero-headshot-wrap:hover)::before {
  background: radial-gradient(circle, rgba(255, 61, 127, 0.18) 0%, rgba(232, 168, 145, 0.12) 35%, transparent 60%);
}
@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
/* Dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  transform: translateY(var(--parallax, 0));
}

/* Split layout container */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 0;
  min-height: 520px;
  margin-bottom: 40px;
}

/* Photo column — left, photo bleeds into text column */
.hero-photo-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.hero-headshot-wrap {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
  animation: heroFadeUp 1.2s var(--transition-smooth) both;
  /* Let photo extend into text column for overlap */
  margin-right: -120px;
}
/* Fade edges of photo into the black hero on all sides, heaviest on the right */
.hero-headshot-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 0%, transparent 40%, rgba(12,12,12,0.85) 85%, #0C0C0C 100%),
    radial-gradient(ellipse at 30% 50%, transparent 40%, rgba(12,12,12,0.4) 75%, rgba(12,12,12,0.9) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 12px;
}
.hero-headshot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.8s var(--transition-smooth);
  /* Slightly darken to blend with hero */
  filter: brightness(0.92);
}
.hero-headshot-wrap:hover .hero-headshot {
  transform: scale(1.02);
}

/* Text column — center-right aligned, stacks over the photo's right edge */
.hero-text-col {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-left: 24px;
}

.hero-name {
  color: var(--text-on-dark);
  margin-bottom: 12px;
  font-size: clamp(56px, 7.5vw, 112px);
  position: relative;
  z-index: 1;
  animation: heroFadeUp 1s var(--transition-smooth) both;
  animation-delay: 0.2s;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.company-strip {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--text-secondary-on-dark);
  margin-bottom: 12px;
}
.company-strip a { color: var(--text-secondary-on-dark); }
.company-strip a:hover { color: var(--accent-light); }
.title-line { font-size: 16px; color: var(--text-secondary-on-dark); margin-bottom: 0; }

/* Impact Strip */
.impact-strip {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.impact-grid { display: flex; justify-content: space-between; align-items: center; }
.impact-item { flex: 1; text-align: center; position: relative; }
.impact-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(255,255,255,0.1);
}
.impact-value {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-size: clamp(16px, 2vw, 20px); color: var(--accent-light); display: inline-block;
  position: relative;
}
.impact-label { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--text-secondary-on-dark); display: block; margin-top: 4px; }

/* Live indicator on impact-value — pulsing pink dot */
.impact-item.live .impact-value::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pop);
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
  animation: pulsePop 2.8s ease-in-out infinite;
}

/* Impact strip animation */
.impact-strip { animation: heroFadeUp 1s var(--transition-smooth) both; animation-delay: 0.4s; }

/* Hero CTA */
.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1s var(--transition-smooth) both;
  animation-delay: 0.6s;
}

/* ============================================================
   TAB BAR
   ============================================================ */
.tab-bar {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background: rgba(247, 241, 228, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.tab-bar-inner {
  display: flex; gap: 0; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tab-bar-inner::-webkit-scrollbar { display: none; }
.tab-btn {
  font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-tertiary); background: none; border: none;
  border-bottom: 2px solid transparent;
  padding: 16px 24px; cursor: pointer; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn[aria-selected="true"] { color: var(--pop); border-bottom-color: var(--pop); }

.tab-panel { display: none; animation: tabReveal 0.5s var(--transition-smooth) both; }
.tab-panel.active { display: block; }
@keyframes tabReveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Staggered card reveals */
.pillar-grid .pillar-card,
.offerings-grid .offering-card,
.topics-grid .topic-card {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth),
              border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}
.pillar-grid.animated .pillar-card,
.offerings-grid.animated .offering-card,
.topics-grid.animated .topic-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.pillar-grid.animated .pillar-card:nth-child(1),
.offerings-grid.animated .offering-card:nth-child(1),
.topics-grid.animated .topic-card:nth-child(1) { transition-delay: 0s; }
.pillar-grid.animated .pillar-card:nth-child(2),
.offerings-grid.animated .offering-card:nth-child(2),
.topics-grid.animated .topic-card:nth-child(2) { transition-delay: 0.08s; }
.pillar-grid.animated .pillar-card:nth-child(3),
.offerings-grid.animated .offering-card:nth-child(3),
.topics-grid.animated .topic-card:nth-child(3) { transition-delay: 0.16s; }
.pillar-grid.animated .pillar-card:nth-child(4),
.offerings-grid.animated .offering-card:nth-child(4),
.topics-grid.animated .topic-card:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   CARDS — Pillar, Topic, Offering
   ============================================================ */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }

.pillar-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition-smooth);
}
.pillar-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card { display: flex; flex-direction: column; }
.pillar-card .tag { display: block; margin-bottom: 12px; min-height: 36px; }
.pillar-card h3 { margin-bottom: 12px; min-height: 32px; }
.pillar-card p { color: var(--text-secondary); font-size: 15px; margin-bottom: 16px; }
.pillar-card ul { flex-grow: 1; }
.pillar-card .card-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: auto; }
.pillar-card > a.btn { margin-top: auto; }

/* Section headings inside tabs */
.section-heading {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 42px);
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.15;
  font-variation-settings: "opsz" 144;
}

/* ---- Offerings Grid ---- */
.offerings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }

.offering-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
}
.offering-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--transition-smooth);
}
.offering-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.offering-card:hover::before { transform: scaleX(1); }
.offering-card .tag { display: block; margin-bottom: 8px; }
.offering-card h3 { margin-bottom: 8px; }
.offering-card p { color: var(--text-secondary); font-size: 14px; margin-bottom: 12px; }
.offering-card ul { list-style: none; padding: 0; margin-bottom: 16px; }
.offering-card li { font-size: 13px; color: var(--text-secondary); padding: 2px 0; }
.offering-card li::before { content: '\2013\00a0'; color: var(--pop); }

/* Thesis Block */
.thesis-block {
  border-left: 3px solid transparent; border-image: var(--gradient-accent) 1;
  padding-left: 24px; margin-bottom: 48px;
  font-size: 18px; line-height: 1.8; color: var(--text-secondary); max-width: 720px;
}

/* ============================================================
   TAB 2: NURSE POWERED
   ============================================================ */
.podcast-header { margin-bottom: 32px; }
.podcast-header h2 { margin-bottom: 12px; }
.podcast-header .subtitle { font-size: 18px; color: var(--text-secondary); max-width: 720px; }

.listen-links { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.listen-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 500;
  padding: 10px 20px; background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text-primary); transition: border-color 0.2s, box-shadow 0.2s;
}
.listen-link:hover { border-color: var(--border-accent); box-shadow: var(--shadow-soft); color: var(--text-primary); }

.about-show { max-width: 720px; margin-bottom: 40px; color: var(--text-secondary); }

.theme-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-bottom: 48px; }
.theme-tag {
  font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 14px;
  padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text-primary); transition: border-color 0.2s;
}
.theme-tag:hover { border-color: var(--border-accent); }

.audience-line { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--text-tertiary); margin-bottom: 40px; }

.guest-pitch {
  padding: 32px; background: var(--accent-dim); border: 1px solid var(--border-accent); border-radius: 8px;
}
.guest-pitch p { margin-bottom: 16px; color: var(--text-secondary); }

/* Coming soon notice */
.coming-soon-box {
  background: var(--accent-dim); border: 1px solid var(--border-accent); border-radius: 8px;
  padding: 24px; margin-bottom: 40px;
}
.coming-soon-box .tag { display: block; margin-bottom: 8px; }
.coming-soon-box p { color: var(--text-secondary); margin: 0; }

/* ============================================================
   TAB 3: CREDENTIALS
   ============================================================ */
.bio-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; margin-bottom: 60px; }
.bio-text { line-height: 1.8; color: var(--text-secondary); }
.bio-text p { margin-bottom: 1.2em; }
.bio-text p:last-child { font-weight: 600; color: var(--pop); font-style: italic; }
.bio-headshot img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-card); }
.credential-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 60px; }

/* Timeline */
.timeline { position: relative; margin-bottom: 60px; }
.timeline-entry { position: relative; padding-left: 32px; padding-bottom: 32px; border-left: 2px solid var(--border); }
.timeline-entry:last-child { padding-bottom: 0; }
.timeline-entry::before {
  content: ''; position: absolute; left: -6px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg-tertiary); border: 2px solid var(--border);
}
.timeline-entry.current { border-left-color: var(--pop); }
.timeline-entry.current::before {
  background: var(--pop);
  border-color: var(--pop);
  box-shadow: 0 0 14px rgba(255, 61, 127, 0.5);
  animation: pulsePop 2.8s ease-in-out infinite;
}
@keyframes pulsePop {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 61, 127, 0.45); opacity: 1; }
  50% { box-shadow: 0 0 18px rgba(255, 61, 127, 0.75); opacity: 0.9; }
}
.timeline-year { font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--text-tertiary); margin-bottom: 4px; }
.timeline-role-badge {
  display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 11px;
  text-transform: uppercase; padding: 2px 8px; border: 1px solid var(--border-accent);
  border-radius: 3px; color: var(--pop); background: var(--pop-dim);
  margin-bottom: 6px; letter-spacing: 0.05em;
}
.timeline-title { font-weight: 600; font-size: 18px; margin-bottom: 4px; }
.timeline-desc { font-size: 15px; color: var(--text-secondary); max-width: 600px; }

/* Education */
.education-list { margin-bottom: 40px; }
.education-entry { display: grid; grid-template-columns: 60px 90px 1fr; gap: 12px; align-items: baseline; padding: 8px 0; border-bottom: 1px solid var(--border); }
.education-entry .year { font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--text-tertiary); }
.education-entry .degree-code { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--pop); }
.education-entry .degree-desc { font-size: 15px; color: var(--text-secondary); }

/* Honors */
.honors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 24px; }
.honors-grid h3 { margin-bottom: 12px; }
.honors-grid ul { list-style: none; padding: 0; }
.honors-grid li { font-size: 15px; color: var(--text-secondary); padding: 4px 0; }
.memberships { font-size: 15px; color: var(--text-secondary); }
.memberships strong { color: var(--text-primary); }

/* ============================================================
   TAB 4: SPEAKING
   ============================================================ */
.speaking-header { margin-bottom: 32px; }
.speaking-header h2 { margin-bottom: 12px; }
.speaking-header .subtitle { font-size: 18px; color: var(--text-secondary); max-width: 720px; }

.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.topic-card {
  background: var(--bg-card); border: 1px solid var(--border); padding: 20px;
  border-radius: 12px; box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--transition-smooth);
}
.topic-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.topic-card h3 { font-size: 16px; margin-bottom: 6px; }
.topic-card p { font-size: 14px; color: var(--text-secondary); margin: 0; }

/* Engagements */
.engagements { margin-bottom: 48px; }
.engagements h2 { margin-bottom: 20px; }
.engagements-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.engagements-table th {
  font-family: 'Montserrat', sans-serif; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--pop);
  text-align: left; padding: 8px 12px; border-bottom: 2px solid var(--border);
}
.engagements-table td { padding: 12px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.engagements-table td:first-child { font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--pop); width: 60px; }

/* Booking CTA */
.booking-cta {
  padding: 40px; background: var(--accent-dim); border: 1px solid var(--border-accent);
  border-radius: 8px; position: relative; overflow: hidden;
}
.booking-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-accent); }
.booking-cta h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 24px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.booking-cta p { color: var(--text-secondary); margin-bottom: 8px; }
.booking-cta .email-link { font-family: 'Montserrat', sans-serif; font-size: 14px; display: block; margin-bottom: 8px; }
.booking-cta .note { font-size: 13px; color: var(--text-tertiary); margin-bottom: 20px; }

/* ============================================================
   FOOTER — Rich, multi-section
   ============================================================ */
.site-footer {
  background: #0C0C0C;
  color: var(--text-on-dark);
  position: relative;
}
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-accent); }

/* Footer newsletter */
.footer-newsletter {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-newsletter h2 { color: var(--text-on-dark); margin-bottom: 8px; font-size: clamp(22px, 3vw, 28px); }
.footer-newsletter .subtitle { color: var(--text-secondary-on-dark); margin-bottom: 24px; font-size: 16px; }
.footer-newsletter-form {
  display: flex; gap: 12px; max-width: 440px; margin: 0 auto 16px;
}
.footer-newsletter-form input[type="email"] {
  flex: 1; font-family: 'Manrope', sans-serif; font-size: 14px;
  padding: 12px 16px; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px;
  background: rgba(255,255,255,0.06); color: var(--text-on-dark); outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter-form input[type="email"]:focus { border-color: var(--pop); }
.footer-newsletter-form input[type="email"]::placeholder { color: var(--text-secondary-on-dark); }
.newsletter-status { width: 100%; flex-basis: 100%; margin: 0; font-size: 13px; color: var(--text-secondary-on-dark); text-align: center; min-height: 18px; }
.newsletter-status.success { color: #FF5A95; font-weight: 500; font-size: 14px; }
.footer-newsletter-tags {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.footer-newsletter-tags span { font-family: 'Montserrat', sans-serif; font-size: 11px; color: var(--text-secondary-on-dark); }

/* Footer columns */
.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-secondary-on-dark); font-size: 14px; }
.footer-col a:hover { color: var(--accent-light); }
.footer-col p { color: var(--text-secondary-on-dark); font-size: 14px; margin-bottom: 4px; }
.footer-col .email-link { font-family: 'Montserrat', sans-serif; font-size: 13px; display: block; margin-bottom: 4px; }

/* Footer bottom */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-secondary-on-dark);
}

/* ============================================================
   PRESS PAGE
   ============================================================ */
.press-page { padding-top: 40px; }
.press-page section { padding: 40px 0; }
.press-page h1 { margin-bottom: 40px; }
.press-page h2 { margin-bottom: 20px; font-size: clamp(22px, 3vw, 28px); }

.short-bio { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin-top: 24px; box-shadow: var(--shadow-soft); }
.short-bio .label { display: block; margin-bottom: 8px; }
.short-bio p { font-size: 15px; color: var(--text-secondary); }

.headshot-download { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.headshot-download img { width: 300px; border-radius: 8px; box-shadow: var(--shadow-card); }

.brand-strip { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.brand-strip span { font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--text-secondary); }

.press-contact p { color: var(--text-secondary); margin-bottom: 8px; }
.press-contact .email-link { font-family: 'Montserrat', sans-serif; font-size: 14px; display: block; margin-bottom: 4px; }

.stats-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stats-list .stat-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.stats-list .stat-label { color: var(--text-secondary); }
.stats-list .stat-value { font-family: 'Montserrat', sans-serif; color: var(--pop); }

/* ============================================================
   COACHING PAGE
   ============================================================ */
.coaching-page { padding-top: 40px; }
.coaching-page section { padding: 40px 0; }
.coaching-header { margin-bottom: 40px; }
.coaching-header h1 { margin-bottom: 16px; }
.coaching-header .subtitle { font-size: 18px; color: var(--text-secondary); max-width: 720px; }

.hire-method { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 32px; margin-bottom: 40px; max-width: 720px; box-shadow: var(--shadow-soft); }
.hire-method h3 { margin-bottom: 12px; }
.hire-method p { color: var(--text-secondary); margin-bottom: 12px; }
.hire-method ul { list-style: none; padding: 0; }
.hire-method li { font-family: 'Montserrat', sans-serif; font-size: 14px; padding: 4px 0; color: var(--text-secondary); }
.hire-method li strong { color: var(--pop); }

.sectors-list { margin-bottom: 40px; max-width: 720px; }
.sectors-list h3 { margin-bottom: 12px; }
.sectors-list ol { padding-left: 24px; color: var(--text-secondary); }
.sectors-list li { padding: 4px 0; }

.quiz-cta-box {
  background: var(--accent-dim); border: 1px solid var(--border-accent); border-radius: 8px;
  padding: 40px; margin-bottom: 48px; max-width: 720px; position: relative; overflow: hidden;
}
.quiz-cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-accent); }
.quiz-cta-box h3 { margin-bottom: 12px; }
.quiz-cta-box p { color: var(--text-secondary); margin-bottom: 16px; }
.quiz-cta-box .small-text { font-size: 13px; color: var(--text-tertiary); margin-top: 12px; }

.offer-tier {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 40px; margin-bottom: 24px; box-shadow: var(--shadow-soft);
}
.offer-tier:hover { box-shadow: var(--shadow-hover); }
.offer-tier h3 { margin-bottom: 8px; }
.offer-tier .pitch { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; font-style: italic; }
.offer-tier .includes-label { font-family: 'Montserrat', sans-serif; font-size: 12px; text-transform: uppercase; color: var(--pop); letter-spacing: 0.08em; margin-bottom: 8px; }
.offer-tier ul { list-style: none; padding: 0; margin-bottom: 16px; }
.offer-tier li { padding: 4px 0; color: var(--text-secondary); font-size: 15px; }
.offer-tier li::before { content: '\2013\00a0'; color: var(--pop); }
.offer-tier .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.social-proof { margin-top: 48px; }
.social-proof h3 { margin-bottom: 16px; }
.testimonial-placeholder { background: var(--bg-card); border: 1px dashed var(--border); border-radius: 8px; padding: 24px; color: var(--text-tertiary); text-align: center; font-size: 14px; }

/* ============================================================
   QUIZ PAGE
   ============================================================ */
.quiz-page { padding-top: 40px; min-height: 100vh; }
.quiz-container { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.quiz-header { text-align: center; margin-bottom: 40px; }
.quiz-header .quiz-proof {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}
.quiz-header h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 12px; }
.quiz-header .subtitle { color: var(--text-secondary); }

.progress-bar { width: 100%; height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 40px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-accent); border-radius: 2px; transition: width 0.3s ease; }

.quiz-question { margin-bottom: 24px; }
.quiz-question .q-number { font-family: 'Montserrat', sans-serif; font-size: 12px; color: var(--pop); margin-bottom: 8px; }
.quiz-question h2 { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 20px; text-transform: none; letter-spacing: normal; margin-bottom: 20px; }

.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  display: block; width: 100%; text-align: left;
  font-family: 'Manrope', sans-serif; font-size: 15px; padding: 16px 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; transition: border-color 0.2s, background 0.2s; color: var(--text-primary);
}
.quiz-option:hover { border-color: var(--border-accent); background: var(--accent-dim); }
.quiz-option.selected { border-color: var(--pop); background: var(--pop-dim); box-shadow: 0 0 0 3px var(--accent-glow); }

.quiz-results { text-align: center; }
.score-display { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 500; color: var(--pop); margin-bottom: 8px; }
.tier-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 28px; text-transform: uppercase; letter-spacing: 0.04em; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.score-bar { width: 100%; height: 8px; background: var(--border); border-radius: 4px; margin-bottom: 24px; overflow: hidden; }
.score-bar-fill { height: 100%; background: var(--gradient-accent); border-radius: 4px; transition: width 0.5s ease; }
.results-text { font-size: 16px; color: var(--text-secondary); max-width: 500px; margin: 0 auto 32px; }
.results-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Quiz — new result states */
.score-max { font-size: 24px; font-weight: 400; color: var(--text-tertiary); }
.tier-subtitle { font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--text-tertiary); margin-top: -12px; margin-bottom: 16px; }
.reframe-line { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; font-style: italic; color: var(--accent); max-width: 480px; margin: 0 auto 32px; line-height: 1.5; }
.email-capture { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; max-width: 480px; margin: 0 auto; }
.email-prompt { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 16px; color: var(--text-primary); }
.email-form { display: flex; gap: 10px; }
.email-input { flex: 1; padding: 14px 16px; border: 1px solid var(--border-accent); border-radius: 8px; font-family: 'Manrope', sans-serif; font-size: 15px; background: var(--bg-primary); color: var(--text-primary); outline: none; transition: border-color 0.2s; }
.email-input:focus { border-color: var(--pop); box-shadow: 0 0 0 3px var(--pop-dim); }
.email-input::placeholder { color: var(--text-tertiary); }
.email-submit { white-space: nowrap; padding: 14px 24px; }
.email-promise { font-size: 13px; color: var(--text-tertiary); margin-top: 12px; }
.thankyou-message { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; max-width: 520px; margin: 0 auto 32px; }
.thankyou-message h3 { font-family: 'Fraunces', serif; margin-bottom: 12px; }
.thankyou-message p { color: var(--text-secondary); }
.upsell-box { background: var(--bg-tertiary); border: 1px solid var(--border-accent); border-radius: 12px; padding: 32px 24px; max-width: 520px; margin: 0 auto 32px; }
.upsell-box h3 { font-family: 'Fraunces', serif; margin-bottom: 12px; }
.upsell-box p { color: var(--text-secondary); margin-bottom: 16px; }
.upsell-note { font-size: 13px; color: var(--text-tertiary); margin-top: 12px; }

/* Quiz — post-submit results page (tier message + Playbook CTA + next steps) */
.tier-result {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
}
.tier-headline {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}
.tier-body { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.tier-body p { margin-bottom: 16px; }
.tier-body p:last-child { margin-bottom: 24px; }
.tier-result .reframe-line { margin-top: 24px; text-align: center; }

/* Score Playbook upsell card — uses accent-dim + gradient top stripe like other CTA boxes */
.playbook-cta {
  position: relative;
  overflow: hidden;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 40px 32px;
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}
.playbook-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
}
.playbook-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pop);
  margin-bottom: 12px;
}
.playbook-cta h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.playbook-cta p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.playbook-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}
.playbook-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.playbook-price {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.02em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.playbook-price-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}
.playbook-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 16px 28px;
  font-size: 15px;
}
.playbook-fineprint {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
}

/* Quieter "what happens next" handoff to Circle email automations */
.next-steps {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.next-steps-divider {
  width: 60px;
  height: 1px;
  background: var(--border-accent);
  margin: 0 auto 24px;
}
.next-steps-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}
.next-steps-line {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}
.next-steps-line strong { color: var(--text-primary); }
.next-steps-line--detail {
  font-size: 14px;
  color: var(--text-tertiary);
  max-width: 480px;
  margin: 0 auto 24px;
}
.next-steps-sig {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.next-steps-sig-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.next-steps-sig-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
.next-steps-sig-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}
.next-steps-sig-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

@media (max-width: 480px) {
  .email-form { flex-direction: column; }
  .email-submit { width: 100%; }
  .reframe-line { font-size: 18px; }
  .playbook-cta { padding: 28px 22px; }
  .playbook-price { font-size: 34px; }
  .tier-headline { font-size: 22px; }
}

/* ============================================================
   QUIZ — POST-SUBMIT 3-SCREEN STATE MACHINE
   See quiz.js render functions: renderScreen1ScoreReveal,
   renderScreen2EmailCapture, renderScreen3Confirmation.
   Mobile-first; reuses existing CSS variables (no new colors/fonts).
   ============================================================ */

/* Shared screen wrapper — fade/slide in on render. Each screen replaces
   the previous one in #quizContent, so the animation runs once per render. */
.screen {
  animation: screenIn 0.45s var(--transition-smooth) both;
}
@keyframes screenIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .screen { animation: none; }
}

/* ---- Screen 1: Score Reveal ------------------------------- */

.screen-1 { padding-top: 16px; }

.score-reveal {
  margin-bottom: 24px;
}
.score-display--reveal {
  font-size: clamp(72px, 14vw, 120px);
  line-height: 1;
  font-variant-numeric: tabular-nums; /* digits don't jiggle while counting */
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.score-display--reveal .score-num {
  /* Pop color on the number itself — the moment of reward */
  color: var(--pop);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.score-display--reveal .score-max {
  font-size: 0.36em;
  color: var(--text-tertiary);
  font-weight: 400;
}
.score-bar-fill--reveal {
  /* JS animates width during the count-up; CSS just smooths the very end. */
  transition: width 80ms linear;
}

.screen1-meaning {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 8px auto 32px;
  line-height: 1.45;
}

.screen-cta-row {
  display: flex;
  justify-content: center;
}
.screen-cta-btn {
  padding: 16px 36px;
  font-size: 15px;
  min-height: 48px; /* mobile tap target */
}

/* ---- Screen 2: Email Capture ------------------------------ */

.screen-2 { padding-top: 8px; }

.score-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 0 auto 24px;
  font-family: 'Montserrat', sans-serif;
}
.score-chip-num {
  font-size: 16px;
  font-weight: 600;
  color: var(--pop);
  letter-spacing: -0.01em;
}
.score-chip-tier {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.screen2-headline {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 480px;
  margin: 0 auto 14px;
  text-align: center;
}
.screen2-detail {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.55;
  text-align: center;
}

/* Stacked form variant — single field, single button, mobile-first. */
.email-form--stacked {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}
.email-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}
.email-form--stacked .email-input {
  width: 100%;
  padding: 16px;
  font-size: 16px; /* >=16px prevents iOS zoom-on-focus */
  min-height: 48px;
}
.email-form--stacked .email-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  min-height: 48px;
}
.email-privacy {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  margin: 6px 0 0;
}

/* ---- Screen 3: Confirmation + Tripwire -------------------- */

.screen-3 { padding-top: 8px; }

.confirm-hero {
  text-align: center;
  margin-bottom: 24px;
}
.confirm-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 64px;
  text-align: center;
  box-shadow: 0 0 0 6px var(--pop-dim), 0 8px 24px var(--pop-glow);
  animation: confirmPop 0.55s var(--transition-smooth) both;
}
@keyframes confirmPop {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .confirm-check { animation: none; }
}
.confirm-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  outline: none; /* programmatic focus, no double ring */
}
.confirm-title:focus-visible {
  outline: 2px solid var(--pop);
  outline-offset: 4px;
  border-radius: 4px;
}
.confirm-line {
  font-size: 16px;
  color: var(--text-secondary);
}
.confirm-line strong {
  color: var(--text-primary);
  font-weight: 600;
  word-break: break-all; /* long emails on narrow screens */
}

.confirm-detail {
  max-width: 520px;
  margin: 0 auto 32px;
  text-align: center;
}
.confirm-detail-line {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}
.confirm-detail-line--soft {
  font-size: 14px;
  color: var(--text-tertiary);
}
.confirm-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pop);
  background: var(--pop-dim);
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
}

/* The visible divider that separates "what's coming free" from
   the tripwire. This is load-bearing — the spec requires it. */
.tripwire-divider {
  border: none;
  height: 1px;
  background: var(--border);
  max-width: 480px;
  margin: 8px auto 28px;
}

/* Tripwire variant of the playbook card — keeps the existing card styling
   but adds the bullets and the dismiss link. */
.playbook-cta--tripwire {
  margin-bottom: 24px;
}
.tripwire-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 20px;
}
.tripwire-bullets li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 6px 0 6px 22px;
  position: relative;
}
.tripwire-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--pop);
  font-weight: 600;
  font-size: 13px;
}

/* "I'll wait for the emails" — quiet text-button. Removes the card on click. */
.tripwire-dismiss {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin-top: 14px;
  padding: 8px 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.tripwire-dismiss:hover { color: var(--text-secondary); }
.tripwire-dismiss:focus-visible {
  outline: 2px solid var(--pop);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 480px) {
  .score-display--reveal { font-size: 80px; }
  .screen2-headline { font-size: 22px; }
  .confirm-check { width: 56px; height: 56px; line-height: 56px; font-size: 28px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillar-grid, .offerings-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-headshot { order: -1; }
  .bio-headshot img { max-height: 400px; width: 100%; object-fit: cover; }
  .honors-grid { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 56px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .mobile-menu { display: block; }
  .hero { padding: 48px 0 40px; min-height: 0; }
  .hero-split { grid-template-columns: 1fr; gap: 24px; min-height: 0; text-align: center; }
  .hero-photo-col { justify-content: center; }
  .hero-headshot-wrap { margin-right: 0; max-width: 260px; }
  .hero-headshot-wrap::after { background: radial-gradient(ellipse at center, transparent 55%, rgba(12,12,12,0.6) 85%, #0C0C0C 100%); }
  .hero-text-col { padding-left: 0; }
  .hero-name { font-size: clamp(44px, 10vw, 64px); }
  .impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .impact-item::after { display: none; }
  .impact-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .tab-btn { padding: 14px 16px; font-size: 13px; }
  .topics-grid { grid-template-columns: 1fr; }
  .engagements-table { font-size: 13px; }
  .engagements-table th, .engagements-table td { padding: 8px 6px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-newsletter-form { flex-direction: column; }
  .education-entry { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .results-ctas { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .company-strip { font-size: 11px; }
  section { padding: 48px 0; }
  .booking-cta, .guest-pitch, .quiz-cta-box { padding: 24px; }
  .offer-tier { padding: 24px; }
  .btn-row { flex-direction: column; }
}
