/* =====================================================
   HEAR THE HEART — main.css  v2.0
   ===================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --deep-navy:   #0D1B2A;
  --rich-gold:   #C9973A;
  --warm-gold:   #E8B45A;
  --light-gold:  #F5D78E;
  --cream:       #FAF7F0;
  --warm-white:  #FFFFFF;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A4A6A;
  --text-light:  #8A8AAA;
  --accent-teal: #1B7A8C;
  --border:      #E8E0D0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rich-gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-gold { background: var(--rich-gold); color: white; border: 2px solid var(--rich-gold); }
.btn-gold:hover { background: #b8862f; border-color: #b8862f; }
.btn-outline { background: transparent; color: var(--deep-navy); border: 2px solid var(--deep-navy); }
.btn-outline:hover { background: var(--deep-navy); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-ghost { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ===== SITE HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep-navy);
  border-bottom: 2px solid var(--rich-gold);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo
 * the_custom_logo() outputs:
 *   <a class="custom-logo-link" href="/">
 *     <img class="custom-logo" src="..." />
 *   </a>
 * We wrap that in <div class="site-logo"> so there are no nested <a> tags.
 */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* The anchor WordPress generates */
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0; /* removes phantom gap below inline-block img */
}

/* The image itself — never squish or stretch; respect natural ratio */
.site-logo .custom-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 52px;   /* comfortable fit in the 68px nav bar */
  max-width: 260px;   /* cap width so it doesn't push nav links off screen */
  object-fit: contain;
}

/* Footer logo — slightly larger since there's more room */
.site-logo--footer .custom-logo {
  max-height: 56px;
  max-width: 280px;
}

/* Fallback text logo (shown when no image is uploaded) */
.site-logo-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--rich-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.site-logo-text {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}
.site-logo-text span {
  display: block;
  font-size: 11px;
  font-family: 'Arial', sans-serif;
  letter-spacing: 2px;
  color: var(--warm-gold);
  font-weight: 400;
  text-transform: uppercase;
}

/* Primary nav menu */
.nav-links-wrap { display: flex; align-items: center; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav li a {
  color: rgba(255,255,255,0.8);
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  text-decoration: none;
}
.primary-nav li a:hover,
.primary-nav li.current-menu-item a { color: var(--warm-gold); }
.primary-nav .nav-cta a,
.primary-nav li a.nav-cta {
  background: var(--rich-gold);
  color: white !important;
  padding: 8px 18px;
  border-radius: 4px;
}
.primary-nav .nav-cta a:hover,
.primary-nav li a.nav-cta:hover { background: #b8862f; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.25s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--deep-navy) 0%, #1a3050 50%, #0f2238 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='%23C9973A' stroke-width='1' opacity='0.15'/%3E%3Ccircle cx='200' cy='200' r='140' fill='none' stroke='%23C9973A' stroke-width='1' opacity='0.1'/%3E%3Ccircle cx='200' cy='200' r='100' fill='none' stroke='%23C9973A' stroke-width='1' opacity='0.08'/%3E%3Cpath d='M160 140 L160 260 L280 200 Z' fill='%23C9973A' opacity='0.2'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--warm-gold); display: block; }

/* Word slider */
.hero-slider-wrapper { display: inline-block; overflow: hidden; }
.hero-slider-word {
  display: inline-block;
  font-style: normal;
  color: var(--warm-gold);
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.45s ease;
}
.hero-slider-word.exiting { transform: translateX(-80px); opacity: 0; }
.hero-slider-word.entering { transform: translateX(80px); opacity: 0; transition: none; }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num { font-size: 32px; font-weight: 700; color: var(--warm-gold); line-height: 1; }
.hero-stat-label {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ===== AUDIO STRIP ===== */
.audio-strip { background: var(--rich-gold); padding: 18px 24px; }
.audio-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.audio-strip-label {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.mini-player {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 30px;
  padding: 8px 18px;
  cursor: pointer;
  flex: 1;
  min-width: 240px;
}
.play-btn-sm {
  width: 32px; height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--rich-gold);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.mini-waveform { display: flex; align-items: center; gap: 2px; flex: 1; }
.mini-waveform span {
  display: block;
  width: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}
.mini-waveform span:nth-child(2) { animation-delay: 0.1s; }
.mini-waveform span:nth-child(3) { animation-delay: 0.2s; }
.mini-waveform span:nth-child(4) { animation-delay: 0.3s; }
.mini-waveform span:nth-child(5) { animation-delay: 0.4s; }
.mini-waveform span:nth-child(6) { animation-delay: 0.2s; }
.mini-waveform span:nth-child(7) { animation-delay: 0.15s; }
@keyframes wave { 0%, 100% { height: 6px; } 50% { height: 20px; } }
.mini-title { color: white; font-size: 13px; font-family: 'Arial', sans-serif; }
.platform-links { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.platform-badge {
  background: rgba(0,0,0,0.25);
  color: white;
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.platform-badge:hover { background: rgba(0,0,0,0.45); }

/* ===== ABOUT ===== */
.about-strip { padding: 80px 24px; background: white; }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg,#d4c4a8 0%,#c0b090 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
}
.about-photo-img img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--deep-navy);
  color: white;
  border: 4px solid var(--cream);
  border-radius: 4px;
  padding: 16px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}
.about-photo-badge strong { display: block; font-size: 28px; color: var(--warm-gold); line-height: 1; }
.about-photo-badge span { font-size: 11px; letter-spacing: 1px; opacity: 0.7; text-transform: uppercase; }
.about-quote {
  font-size: 22px;
  font-style: italic;
  color: var(--text-mid);
  border-left: 4px solid var(--rich-gold);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.6;
}
.about-text { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.credential-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
}

/* ===== PODCAST SECTION ===== */
.podcast-section { padding: 90px 24px; background: var(--cream); }
.podcast-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.series-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.series-tab {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 8px 18px;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.series-tab:hover { border-color: var(--rich-gold); color: var(--rich-gold); }
.series-tab.active { background: var(--deep-navy); border-color: var(--deep-navy); color: white; }
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.episode-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.episode-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.episode-card-main {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  flex: 1;
}
.episode-art {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--deep-navy), #2a4f7a);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.episode-art img { width: 100%; height: 100%; object-fit: cover; }
.art-brcc  { background: linear-gradient(135deg, var(--deep-navy), #2a4f7a); }
.art-brccw { background: linear-gradient(135deg, #1a2a4a, #3a5a8a); }
.art-mcc   { background: linear-gradient(135deg, #1a3a2a, #2a6b4a); }
.art-ss    { background: linear-gradient(135deg, #3a1a2a, #7a2a4a); }
.art-special { background: linear-gradient(135deg, #2a2a1a, #6b6b2a); }
.episode-ep-num {
  position: absolute; top: 12px; left: 12px;
  background: var(--rich-gold); color: white;
  font-family: 'Arial', sans-serif; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 3px; letter-spacing: 1px;
}
.episode-play-overlay {
  position: absolute; bottom: 12px; right: 12px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
  backdrop-filter: blur(4px);
}
.episode-body { padding: 18px 20px 20px; }
.episode-series {
  font-family: 'Arial', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--rich-gold); margin-bottom: 6px;
}
.episode-title { font-size: 15px; font-weight: 700; color: var(--deep-navy); line-height: 1.3; margin-bottom: 8px; }
.episode-meta { font-family: 'Arial', sans-serif; font-size: 12px; color: var(--text-light); display: flex; gap: 12px; }
.podcast-cta { text-align: center; margin-top: 40px; }

/* ===== TOOLS SECTION ===== */
.tools-section { padding: 90px 24px; background: var(--deep-navy); }
.tools-section .section-title { color: white; }
.tools-section .section-sub { color: rgba(255,255,255,0.6); }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.tool-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: 8px; padding: 32px;
  transition: background 0.2s, border-color 0.2s;
}
.tool-card:hover { background: rgba(255,255,255,0.09); border-color: var(--rich-gold); }
.tool-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--rich-gold), var(--warm-gold));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.tool-name { font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px; }
.tool-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.tool-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--warm-gold); font-family: 'Arial', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
}
.tool-link:hover { color: var(--light-gold); }
.tool-tag {
  display: inline-block;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.3);
  color: var(--warm-gold);
  font-family: 'Arial', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 3px; margin-bottom: 14px;
}

/* ===== DOCTORATE SECTION ===== */
.doctorate-section { padding: 90px 24px; background: white; }
.doctorate-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
}
.progress-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px;
  position: sticky; top: 88px;
}
.progress-title {
  font-size: 13px; font-family: 'Arial', sans-serif;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 20px;
}
.big-progress { text-align: center; padding: 20px 0; margin-bottom: 24px; }
.big-progress-ring { position: relative; width: 140px; height: 140px; margin: 0 auto 16px; }
.big-progress-ring svg { transform: rotate(-90deg); }
.big-progress-ring .track { fill: none; stroke: var(--border); stroke-width: 10; }
.big-progress-ring .fill {
  fill: none; stroke: var(--rich-gold); stroke-width: 10; stroke-linecap: round;
  stroke-dasharray: 408; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1s;
}
.big-progress-pct {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 28px; font-weight: 700; color: var(--deep-navy);
}
.big-progress-label { font-family: 'Arial', sans-serif; font-size: 13px; color: var(--text-mid); font-weight: 600; }
.milestone-list { list-style: none; }
.milestone-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.milestone-item:last-child { border-bottom: none; }
.milestone-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 3px;
  display: flex; align-items: center; justify-content: center; font-size: 10px; color: white;
}
.milestone-dot.done { background: #27ae60; }
.milestone-dot.active { background: var(--rich-gold); }
.milestone-dot.pending { background: var(--border); }
.milestone-text { font-size: 14px; color: var(--text-mid); line-height: 1.4; }
.milestone-text strong { display: block; color: var(--deep-navy); font-size: 14px; }
.update-card {
  background: var(--cream);
  border-left: 3px solid var(--rich-gold);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px; margin-bottom: 20px;
}
.update-date {
  font-family: 'Arial', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--rich-gold); margin-bottom: 6px;
}
.update-headline { font-size: 17px; font-weight: 700; color: var(--deep-navy); margin-bottom: 8px; }
.update-body { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 24px; background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 40px;
}
.testimonial-card {
  background: white; border-radius: 6px; padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; left: 20px;
  font-size: 60px; color: var(--light-gold);
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-text {
  font-size: 15px; font-style: italic; color: var(--text-mid);
  line-height: 1.8; padding-top: 24px; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--deep-navy), #2a5a7a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Arial', sans-serif; font-weight: 700; font-size: 14px;
}
.testimonial-name { font-family: 'Arial', sans-serif; font-size: 13px; font-weight: 700; color: var(--deep-navy); }
.testimonial-role { font-family: 'Arial', sans-serif; font-size: 11px; color: var(--text-light); margin-top: 2px; }

/* ===== MISSION SECTION ===== */
.mission-section { background: var(--deep-navy); padding: 80px 24px; text-align: center; }
.mission-inner { max-width: 720px; margin: 0 auto; }
.mission-section .section-label { color: var(--warm-gold); }
.mission-section h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700; color: white; line-height: 1.25; margin-bottom: 28px;
}
.mission-belief {
  font-size: 17px; color: rgba(255,255,255,0.8);
  line-height: 1.85; margin-bottom: 20px; text-align: left;
}
.mission-divider { width: 48px; height: 3px; background: var(--rich-gold); margin: 32px auto; border-radius: 2px; }
.mission-logo-note {
  font-size: 16px; color: rgba(255,255,255,0.7);
  line-height: 1.8; font-style: italic; text-align: left; margin-bottom: 36px;
}
.mission-cta {
  font-family: 'Arial', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-bottom: 20px;
}

/* ===== NEWSLETTER ===== */
.newsletter { padding: 70px 24px; background: linear-gradient(135deg, var(--deep-navy), #1a3050); }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter .section-title { color: white; }
.newsletter p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.newsletter-form {
  display: flex; gap: 0;
  max-width: 440px; margin: 0 auto;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.newsletter-input {
  flex: 1; padding: 16px 20px; border: none;
  font-family: 'Arial', sans-serif; font-size: 14px;
  background: rgba(255,255,255,0.95); outline: none;
}
.newsletter-btn {
  padding: 16px 24px; background: var(--rich-gold); color: white;
  border: none; font-family: 'Arial', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 1px; cursor: pointer; white-space: nowrap;
}
.newsletter-btn:hover { background: #b8862f; }

/* ===== SITE FOOTER ===== */
.site-footer {
  background: #0a1520;
  padding: 60px 24px 32px;
  border-top: 2px solid var(--rich-gold);
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .site-logo-text { font-size: 22px; margin-bottom: 16px; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.social-link:hover { background: var(--rich-gold); color: white; }
.footer-col h4 {
  font-family: 'Arial', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--warm-gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; font-family: 'Arial', sans-serif; }

/* ===== INTERIOR PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--deep-navy), #1a3050);
  padding: 64px 24px 48px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px,5vw,54px); color: white; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.page-content { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
.page-content h2 { color: var(--deep-navy); margin-bottom: 16px; font-size: 26px; }
.page-content p { margin-bottom: 20px; color: var(--text-mid); font-size: 16px; line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links-wrap {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--deep-navy);
    border-bottom: 2px solid var(--rich-gold);
    padding: 20px 24px;
  }
  .nav-links-wrap.open { display: block; }
  .primary-nav { flex-direction: column; gap: 16px; align-items: flex-start; }
  .about-inner,
  .doctorate-inner,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .about-photo-badge { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

/* ===== DUAL AUDIO PLAYER ===== */
.episode-audio-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
  flex-wrap: wrap;
}
.hth-play-btn {
  flex: 1;
  min-width: 120px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  white-space: nowrap;
  text-align: center;
}
.hth-play-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.hth-play-podcast {
  background: var(--deep-navy);
  color: white;
}
.hth-play-podcast:hover:not(:disabled) { background: #1e2e42; }
.hth-play-podcast.hth-active {
  background: var(--rich-gold);
  color: white;
}
.hth-play-sermon {
  background: var(--cream);
  color: var(--deep-navy);
  border: 1.5px solid var(--border);
}
.hth-play-sermon:hover:not(:disabled) { background: #f0ebe0; border-color: var(--rich-gold); }
.hth-play-sermon.hth-active {
  background: var(--rich-gold);
  color: white;
  border-color: var(--rich-gold);
}
.hth-inline-player {
  padding: 10px 16px 14px;
  background: #f5f0e8;
  border-top: 1px solid var(--border);
}
.hth-player-label {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rich-gold);
  margin-bottom: 6px;
}
.hth-inline-player audio {
  width: 100%;
  height: 36px;
  accent-color: var(--rich-gold);
}

/* ===== RESOURCE LIBRARY ===== */
.resources-page .page-hero { text-align: left; }
.resources-page .page-hero p { max-width: 680px; }

.assessment-shop { padding: 72px 24px 80px; background: var(--cream); }

.assessment-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 72px;
}

.assessment-product-card {
  background: white;
  border-radius: 8px;
  padding: 40px 36px 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border-top: 4px solid var(--rich-gold);
  display: flex;
  flex-direction: column;
}
.apc-icon {
  font-size: 36px;
  margin-bottom: 14px;
  line-height: 1;
}
.apc-badge {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rich-gold);
  margin-bottom: 10px;
  display: block;
}
.apc-title {
  font-size: 23px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.apc-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 22px;
}
.apc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--border);
}
.apc-features li {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  padding: 9px 0 9px 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.apc-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--rich-gold);
  font-weight: 700;
}
.apc-price {
  font-size: 34px;
  font-weight: 700;
  color: var(--deep-navy);
  font-family: 'Arial', sans-serif;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.apc-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.apc-buy-btn { width: 100%; text-align: center; }
.apc-code-link {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  color: var(--rich-gold);
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.apc-code-link:hover { color: var(--deep-navy); }

/* How it works */
.how-it-works { padding: 60px 0 0; }
.hiw-steps {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hiw-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex: 1;
  min-width: 200px;
}
.hiw-num {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--deep-navy);
  color: var(--warm-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.hiw-step strong {
  display: block;
  font-size: 15px;
  color: var(--deep-navy);
  margin-bottom: 5px;
}
.hiw-step p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ===== ASSESSMENT CODE ENTRY ===== */
.assessment-access-page .page-hero { text-align: left; }
.assessment-access-page .page-hero p { max-width: 620px; }
.assessment-access-page .page-hero a { color: var(--warm-gold); text-decoration: underline; text-underline-offset: 2px; }

.code-entry-section { padding: 72px 24px 80px; }
.code-entry-section .container { max-width: 780px; }

.code-entry-card {
  background: white;
  border-radius: 8px;
  padding: 48px 44px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  margin-bottom: 48px;
  border-top: 4px solid var(--rich-gold);
}
.code-entry-intro {
  font-size: 15px;
  color: var(--text-mid);
  margin: 8px 0 24px;
}
.code-go-wrap {
  margin: 24px 0 20px;
}
.code-submit-btn { display: inline-block; padding: 16px 32px; font-size: 16px; }
.code-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 14px;
}
.code-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--rich-gold);
  border-radius: 50%;
  animation: hthSpin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes hthSpin { to { transform: rotate(360deg); } }
.code-feedback {
  padding: 12px 16px;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.6;
}
.code-feedback.is-error {
  background: #fdf0ef;
  color: #c0392b;
  border: 1px solid #e8b0aa;
}
.code-feedback.is-success {
  background: #edfaf3;
  color: #1a7a4a;
  border: 1px solid #a8dfbf;
}
.code-help {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 20px;
  line-height: 1.7;
}
.code-help a { color: var(--rich-gold); text-decoration: underline; text-underline-offset: 2px; }

.assessment-preview {
  border-left: 3px solid var(--rich-gold);
  padding: 4px 0 4px 28px;
}
.assessment-preview h3 {
  font-size: 20px;
  color: var(--deep-navy);
  margin-bottom: 14px;
}
.assessment-preview p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.assessment-preview strong { color: var(--deep-navy); }

@media (max-width: 600px) {
  .assessment-product-card { padding: 28px 22px 24px; }
  .code-entry-card { padding: 32px 22px; }
  .code-input-wrap { flex-direction: column; }
  .code-submit-btn { width: 100%; }
}

/* ===== SERIES LANDING PAGES (BRCC / MCC) ===== */
.series-page { background: var(--cream); }

.series-hero {
  padding: 80px 24px 72px;
  color: white;
  position: relative;
  overflow: hidden;
}
.series-hero .container { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; }
.series-hero .section-label { color: var(--warm-gold); }
.series-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
}
.series-hero-fullname {
  display: block;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  font-family: 'Arial', sans-serif;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
}
.series-hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  line-height: 1.7;
  margin: 22px 0 28px;
}
.series-subscribe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.series-subscribe-label {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-right: 6px;
}
.series-subscribe .btn {
  padding: 10px 18px;
  font-size: 13px;
}

/* Series-specific hero colors reuse the existing art-xxxx gradients */
.series-hero.art-brcc  { background: linear-gradient(135deg, var(--deep-navy), #2a4f7a 90%); }
.series-hero.art-mcc   { background: linear-gradient(135deg, #1a3a2a, #2a6b4a 90%); }
.series-hero.art-brccw { background: linear-gradient(135deg, #1a2a4a, #3a5a8a 90%); }
.series-hero.art-ss    { background: linear-gradient(135deg, #3a2a5a, #5a3a7a 90%); }
.series-hero.art-special { background: linear-gradient(135deg, #5a3a1a, #8a5a2a 90%); }

.series-intro {
  padding: 56px 24px 40px;
  background: white;
  border-bottom: 1px solid var(--border);
}
.series-intro .container { max-width: 780px; }
.series-intro-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.series-intro-body a {
  color: var(--rich-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.series-episodes {
  padding: 64px 24px 88px;
  background: var(--cream);
}
.series-episodes .container { max-width: 1080px; }

.series-empty {
  grid-column: 1 / -1;
  text-align: center;
  background: white;
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 64px 32px;
}
.series-empty-icon { font-size: 56px; margin-bottom: 14px; }
.series-empty h3 {
  font-size: 22px;
  color: var(--deep-navy);
  margin-bottom: 12px;
}
.series-empty p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ===== DOCTORAL JOURNEY — INTRO & TIMELINE (v2.2) ===== */
.doctorate-section .container { max-width: 1100px; margin: 0 auto; }
.doc-intro { max-width: 820px; margin-bottom: 48px; }
.doc-intro .section-title { margin-bottom: 14px; }
.doc-intro .section-sub { margin-bottom: 16px; }
.doc-institution {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
}
.doc-degree {
  background: rgba(201,151,58,0.12);
  color: var(--rich-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}
.doc-institution-sep { color: var(--text-light); }
.doc-school { color: var(--text-mid); }

/* Horizontal timeline */
.doc-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto 72px;
  padding: 32px 0 12px;
}
.doc-timeline-track {
  position: absolute;
  top: 53px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(to right,
    #27ae60 0%, #27ae60 var(--progress, 60%),
    var(--border) var(--progress, 60%), var(--border) 100%);
  z-index: 0;
  border-radius: 2px;
}
.doc-timeline-node {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 4px;
}
.doc-node-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: white;
  background: var(--border);
  border: 3px solid white;
  box-shadow: 0 0 0 1px var(--border);
  transition: all 0.3s;
}
.doc-node-done .doc-node-dot {
  background: #27ae60;
  box-shadow: 0 0 0 1px #27ae60;
}
.doc-node-active .doc-node-dot {
  background: var(--rich-gold);
  box-shadow: 0 0 0 1px var(--rich-gold), 0 0 0 6px rgba(201,151,58,0.2);
  transform: scale(1.15);
}
.doc-node-upcoming .doc-node-dot {
  background: white;
  border: 3px solid var(--border);
  box-shadow: 0 0 0 1px var(--border);
  color: var(--text-light);
}
.doc-node-date {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rich-gold);
  margin-bottom: 4px;
}
.doc-node-upcoming .doc-node-date { color: var(--text-light); }
.doc-node-label {
  font-size: 13px;
  line-height: 1.3;
  color: var(--deep-navy);
  font-weight: 700;
  max-width: 140px;
  margin: 0 auto;
}
.doc-node-upcoming .doc-node-label { color: var(--text-mid); font-weight: 500; }
.doc-node-here {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 10px;
  background: var(--rich-gold);
  color: white;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Milestone list colors — add 'upcoming' alias matching new template */
.milestone-dot.upcoming { background: var(--border); color: var(--text-light); }

.doc-updates-title {
  font-size: 24px;
  color: var(--deep-navy);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* Mobile: collapse horizontal timeline into a vertical stack */
@media (max-width: 760px) {
  .doc-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0 24px;
  }
  .doc-timeline-track {
    top: 8px; bottom: 8px;
    left: 16px; right: auto;
    width: 3px; height: auto;
    background: linear-gradient(to bottom,
      #27ae60 0%, #27ae60 var(--progress, 60%),
      var(--border) var(--progress, 60%), var(--border) 100%);
  }
  .doc-timeline-node {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: flex-start;
    text-align: left;
    padding: 10px 0;
  }
  .doc-node-dot { margin: 0; }
  .doc-node-label { max-width: none; }
  .doc-node-here { margin-top: 4px; }
  .doc-node-date { grid-column: 2; margin-bottom: 2px; }
  .doc-node-label { grid-column: 2; }
  .doc-node-here { grid-column: 2; }
}

/* Thesis title line (v2.2.1) */
.doc-thesis {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--cream);
  border-left: 3px solid var(--rich-gold);
  border-radius: 0 4px 4px 0;
}
.doc-thesis-label {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rich-gold);
  flex-shrink: 0;
}
.doc-thesis-title {
  font-style: italic;
  font-size: 16px;
  color: var(--deep-navy);
  line-height: 1.5;
}

/* Big hero triangle is decorative only — see .hero::before above. */

/* Waveform pauses when not actively playing */
.mini-waveform span { animation-play-state: paused; }
.mini-player.is-playing .mini-waveform span { animation-play-state: running; }
.play-btn-sm.is-disabled,
.play-btn-sm:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== PLATFORM LINK — COMING SOON STATE ===== */
/* Applies to any .platform-badge, .social-link, or .platform-btn that
   got the -disabled variant (rendered by hth_platform_link()). */
.platform-badge-disabled,
.social-link-disabled,
.platform-btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  position: relative;
  pointer-events: none;
  filter: grayscale(30%);
}
.platform-soon {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  font-family: 'Arial', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: inherit;
  border-radius: 8px;
  font-style: normal;
  vertical-align: middle;
}
/* When a social-link is in disabled mode it still needs the same round-chip shape */
.social-link-disabled { display: inline-flex; align-items: center; gap: 6px; }
.social-link-disabled .platform-soon { font-size: 8px; padding: 1px 5px; }

/* ===== iPERSON LANDING PAGE (v2.4) ===== */
.iperson-landing { background: var(--cream); }
.iperson-landing .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.ipl-hero {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #1a3050 60%, #0f2238 100%);
  color: white;
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}
.ipl-hero::after {
  content: "i";
  position: absolute;
  right: -40px;
  bottom: -120px;
  font-size: 420px;
  font-weight: 700;
  color: rgba(201,151,58,0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.ipl-hero .container { position: relative; z-index: 2; }
.ipl-hero .section-label { color: var(--warm-gold); }
.ipl-hero h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 780px;
}
.ipl-hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.ipl-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Domains */
.ipl-domains { padding: 72px 24px 64px; background: white; border-bottom: 1px solid var(--border); }
.ipl-domains h2,
.ipl-choose h2,
.ipl-sample h2,
.ipl-how h2,
.ipl-final-cta h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  color: var(--deep-navy);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.ipl-section-intro {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 780px;
  margin-bottom: 40px;
}
.ipl-domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.ipl-domain {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--rich-gold);
  transition: transform 0.2s;
}
.ipl-domain:hover { transform: translateY(-2px); }
.ipl-domain-icon { font-size: 26px; line-height: 1.2; flex-shrink: 0; }
.ipl-domain h3 { font-size: 17px; color: var(--deep-navy); font-weight: 700; margin-bottom: 4px; }
.ipl-domain p   { font-size: 14px; color: var(--text-mid); line-height: 1.55; margin: 0; }

/* Choose Your Path */
.ipl-choose { padding: 72px 24px 80px; }
.ipl-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 52px;
}
.ipl-choice-card {
  background: white;
  border-radius: 10px;
  padding: 36px 32px 32px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--rich-gold);
  position: relative;
}
.ipl-choice-card.is-featured {
  border-top-color: var(--deep-navy);
  background: linear-gradient(180deg, #fff 0%, #faf7f0 100%);
}
.ipl-choice-card.is-featured::before {
  content: "MOST COMPLETE";
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--deep-navy);
  color: white;
  padding: 4px 12px;
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 14px;
}
.ipl-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,151,58,0.15);
  color: var(--rich-gold);
  border-radius: 14px;
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ipl-card-tag.ipl-tag-full {
  background: rgba(13,27,42,0.08);
  color: var(--deep-navy);
}
.ipl-choice-card h3 {
  font-size: 28px;
  color: var(--deep-navy);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ipl-card-lede {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 22px;
}
.ipl-card-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.ipl-card-features li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  position: relative;
}
.ipl-card-features li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--rich-gold);
  font-weight: 700;
}
.ipl-card-features li:last-child { border-bottom: none; }
.ipl-card-features li strong { color: var(--deep-navy); }
.ipl-card-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--rich-gold);
  margin-bottom: 14px;
}
.ipl-card-actions { display: flex; flex-direction: column; gap: 10px; }
.ipl-card-code-link {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ipl-card-code-link:hover { color: var(--rich-gold); }

/* "Coming Soon" button variant — non-clickable when no Stripe URL */
.ipl-btn-soon {
  background: #d4c8a8 !important;
  border-color: #d4c8a8 !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}

/* Compare table */
.ipl-compare-table {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
}
.ipl-compare-header, .ipl-compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
}
.ipl-compare-header {
  background: var(--deep-navy);
  color: white;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.ipl-compare-header > div { padding: 14px 20px; text-align: center; }
.ipl-compare-header > div:first-child { text-align: left; }
.ipl-compare-row > div {
  padding: 14px 20px;
  font-size: 15px;
  color: var(--text-mid);
  text-align: center;
  border-top: 1px solid var(--border);
}
.ipl-compare-row > div:first-child {
  font-weight: 700;
  color: var(--deep-navy);
  text-align: left;
  background: var(--cream);
}

/* Sample Report preview */
.ipl-sample {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--cream) 0%, #f0e8d4 100%);
}
.ipl-sample-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
.ipl-sample-copy p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}
.ipl-sample-visual { position: relative; height: 380px; }
.ipl-sample-pages { position: relative; width: 100%; height: 100%; }
.ipl-sample-page {
  position: absolute;
  width: 260px;
  height: 340px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 24px 22px;
}
.ipl-page-1 { left: 40px; top: 20px; z-index: 3; }
.ipl-page-2 { left: 90px; top: 0;    z-index: 2; transform: rotate(5deg); opacity: 0.9; }
.ipl-page-3 { left: 140px;top: 35px; z-index: 1; transform: rotate(-3deg); opacity: 0.75; }
.ipl-page-strip {
  height: 4px; width: 40px;
  background: var(--rich-gold);
  border-radius: 2px;
  margin-bottom: 14px;
}
.ipl-page-label {
  font-family: 'Arial', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 6px;
}
.ipl-page-title {
  font-size: 16px;
  color: var(--deep-navy);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}
.ipl-page-line {
  height: 7px;
  background: #e4ddc9;
  border-radius: 3px;
  margin-bottom: 8px;
}
.ipl-page-chip {
  display: inline-block;
  margin: 14px 0 10px;
  padding: 3px 9px;
  background: rgba(201,151,58,0.15);
  color: var(--rich-gold);
  border-radius: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* How It Works */
.ipl-how { padding: 72px 24px; background: white; border-top: 1px solid var(--border); }
.ipl-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.ipl-how-step {
  padding: 28px 24px;
  background: var(--cream);
  border-radius: 8px;
  border-top: 3px solid var(--rich-gold);
}
.ipl-how-num {
  width: 40px; height: 40px;
  background: var(--rich-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.ipl-how-step h3 { font-size: 19px; color: var(--deep-navy); font-weight: 700; margin-bottom: 8px; }
.ipl-how-step p  { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* Final CTA */
.ipl-final-cta {
  padding: 72px 24px;
  background: var(--deep-navy);
  color: white;
}
.ipl-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ipl-final-cta h2 { color: white; max-width: 560px; margin-bottom: 10px; }
.ipl-final-cta p  { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0; }
.ipl-final-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ipl-final-actions .btn-outline { color: white; border-color: rgba(255,255,255,0.6); }
.ipl-final-actions .btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Mobile */
@media (max-width: 760px) {
  .ipl-sample-inner { grid-template-columns: 1fr; gap: 32px; }
  .ipl-sample-visual { height: 320px; margin: 0 auto; max-width: 360px; }
  .ipl-choice-card.is-featured::before { right: auto; left: 20px; }
  .ipl-compare-header, .ipl-compare-row { grid-template-columns: 1.6fr 1fr 1fr; }
  .ipl-final-inner { flex-direction: column; align-items: flex-start; }
}
