/* ============================================================
   SHAWNA SUCKOW — GLOBAL STYLESHEET
   Complete rebuild matching Figma prototype
   Brand: Hot Pink #FF1493 | Yellow #FFD700 | Navy #0d0d1a | Black #0a0a0a
   Fonts: HolidayFree | Insignia | Bebas Neue | Inter
   ============================================================ */

/* ── CUSTOM FONTS ───────────────────────────────────────────── */
@font-face {
  font-family: 'HolidayFree';
  src: url('../fonts/HolidayFree.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Insignia';
  src: url('../fonts/Insignia.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Google Fonts: Bebas Neue + Inter loaded via <link> in HTML */

/* ── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --pink:   #FF1493;
  --yellow: #FFD700;
  --black:  #0a0a0a;
  --navy:   #0d0d1a;
  --white:  #ffffff;
  --purple: #6B2D8B;
  --blue:   #1565C0;
  --gray:   #888888;

  --font-holiday: 'HolidayFree', cursive;
  --font-bebas:   'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --bio-gradient:        linear-gradient(135deg, #6B2D8B 0%, #1565C0 50%, #1E90FF 100%);
  --newsletter-gradient: linear-gradient(135deg, #1565C0 0%, #7B1FA2 60%, #9C27B0 100%);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── SHARED BUTTON STYLES ───────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-bebas);
  font-size: 16px;
  letter-spacing: 0.1em;
  border-radius: 50px;
  padding: 14px 36px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { opacity: 0.85; transform: translateY(-2px); }

.btn--pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-black {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--white-lg {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
  padding: 18px 48px;
  font-size: 18px;
}
.btn--white-solid {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  padding: 18px 44px;
  font-size: 17px;
  font-weight: 700;
}
.btn--yellow-nav {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  font-size: 14px;
}
.btn--outline-yellow {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

/* Pipe separator */
.nav-pipe {
  color: rgba(255,255,255,0.4);
  padding: 0 4px;
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════
   1. YELLOW TOP BAR
═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--black);
  height: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  padding: 10px 24px;
  text-align: center;
}
.topbar__left { display: flex; align-items: center; gap: 20px; }
.topbar__right { display: flex; align-items: center; }
.topbar__item { display: flex; align-items: center; gap: 6px; }
.topbar__item a { color: var(--white); text-decoration: none; }
.topbar__item a:hover { color: var(--pink); }
.topbar__sep { color: rgba(255,255,255,0.3); margin: 0 4px; }
.topbar__item a:hover { text-decoration: underline; }
.topbar__icon { font-size: 14px; }

/* ═══════════════════════════════════════════════════════════
   2. STICKY NAV
═══════════════════════════════════════════════════════════ */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-full {
  font-family: var(--font-bebas);
  font-size: 32px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(to right, #FF1493 0%, #ff69b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.site-nav__links a:not(.btn) {
  color: var(--black);
  transition: color 0.15s;
}
.site-nav__links a:not(.btn):hover { color: var(--pink); }

/* Mobile hamburger — hidden on desktop */
.nav-toggle-input { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  order: 3;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ═══════════════════════════════════════════════════════════
   3. HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 85vh;
  background: url('../images/shawna-suckow-keynote-speaker-stage-hero.png') center right / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,26,0.55);
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding-left: 60px;
  padding-top: 40px;
  padding-bottom: 120px;
}
.hero__eyebrow-inline {
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 12px;
}
.hero__eyebrow-inline .hero__eyebrow-name {
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-right: 12px;
  background: linear-gradient(to right, #FF1493 0%, #e8177f 50%, #c4146c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero__eyebrow-inline .hero__eyebrow-sub {
  color: var(--white);
  font-weight: 400;
}
/* Signature overlay */
.hero__signature {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 400px;
  z-index: 2;
  opacity: 0.35;
  filter: brightness(10);
  pointer-events: none;
}
/* Pink diagonal band at bottom of hero */
.hero__pink-band {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--pink);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-bebas);
  font-size: 64px;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero__line {
  display: block;
}
.hero__line--white  { color: var(--white); }
.hero__line--pink   { color: var(--pink); }
.hero__hl-yellow {
  background: var(--yellow);
  color: var(--black);
  padding: 4px 8px;
  display: inline;
  line-height: 1.5;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  margin-bottom: 32px;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   4. FRANK DOYLE TESTIMONIAL
═══════════════════════════════════════════════════════════ */
.testimonial-hero {
  position: relative;
  min-height: 400px;
  background: url('../images/shawna-suckow-nexus-conference-keynote-speaking.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 60px;
}
.testimonial-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,26,0.85), rgba(10,10,26,0.4));
}
.testimonial-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-hero__intro {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
}
.testimonial-hero__quote {
  font-family: var(--font-bebas);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 20px;
}
.testimonial-hero__attr {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 12px;
}
.testimonial-hero__logo {
  font-family: var(--font-bebas);
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
}
.testimonial-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
  padding: 16px;
  transition: color 0.2s;
}
.testimonial-hero__arrow:hover { color: var(--white); }
.testimonial-hero__arrow--left  { left: 16px; }
.testimonial-hero__arrow--right { right: 16px; }

/* ═══════════════════════════════════════════════════════════
   5. AS FEATURED ON
═══════════════════════════════════════════════════════════ */
.featured-on {
  background: url('../images/shawna-suckow-featured-on-media-background.png') center center / cover no-repeat;
  background-color: var(--pink);
  padding: 100px 80px;
}
.featured-on__inner { text-align: center; }
.featured-on__label {
  font-family: var(--font-bebas);
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: 0.3em;
  margin-bottom: 30px;
}
.featured-on__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.featured-on__logo-item {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.featured-on__watermark {
  font-family: var(--font-holiday);
  font-size: 48px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   6 & 9. MARQUEE BARS
═══════════════════════════════════════════════════════════ */
.marquee-bar {
  background: var(--white);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  overflow: hidden;
}
.marquee-bar__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  will-change: transform;
}
.marquee-bar__track span {
  font-family: var(--font-bebas);
  font-size: 22px;
  color: var(--pink);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-right: 60px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   7. CLIENT LOGOS
═══════════════════════════════════════════════════════════ */
.client-logos {
  background: url('../images/shawna-suckow-client-brands-conference-background.png') center center / cover no-repeat;
  background-color: var(--pink);
  padding: 60px 80px;
}
.client-logos__header {
  margin-bottom: 40px;
}
.client-logos__title-white {
  font-family: var(--font-bebas);
  font-size: 48px;
  color: var(--white);
  line-height: 1.1;
}
.client-logos__title-yellow {
  font-family: var(--font-bebas);
  font-size: 48px;
  color: var(--yellow);
  line-height: 1.1;
}
.client-logos__title-sub {
  font-family: var(--font-bebas);
  font-size: 32px;
  color: var(--white);
  line-height: 1.1;
  margin-top: 4px;
}
.client-logos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.client-logo-item {
  background: rgba(255,255,255,0.15);
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}
.client-logo-item img { max-width: 120px; max-height: 60px; object-fit: contain; filter: brightness(0) invert(1); }
.featured-on__logo-img { max-height: 72px; max-width: 200px; object-fit: contain; filter: brightness(0) invert(1); }

/* ═══════════════════════════════════════════════════════════
   8. SPEAKER REEL
═══════════════════════════════════════════════════════════ */
.reel {
  position: relative;
  min-height: 400px;
  background: url('../images/shawna-suckow-nexus-conference-keynote-speaking.png') center center / cover no-repeat;
  padding: 100px 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.reel__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.reel__name {
  font-family: var(--font-holiday);
  font-size: 80px;
  color: var(--yellow);
  line-height: 1;
}
.reel__tagline {
  font-family: var(--font-bebas);
  font-size: 48px;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   10. MEETING PLANNERS CHALLENGE
═══════════════════════════════════════════════════════════ */
.challenge {
  position: relative;
  background: url('../images/shawna-suckow-interactive-keynote-audience-bg.png') center center / cover no-repeat;
  padding: 100px 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  overflow: hidden;
}
.challenge__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(80,5,50,0.82) 0%, rgba(140,20,80,0.75) 100%);
}
.challenge__content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.challenge__frustrated {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.challenge__frustration-big {
  font-family: var(--font-bebas);
  font-size: clamp(32px, 5vw, 64px);
  color: var(--yellow);
  line-height: 1.05;
  margin-bottom: 28px;
  white-space: normal;
  overflow-wrap: break-word;
}
.challenge__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
}
.challenge__body strong {
  font-weight: 700;
  color: var(--white);
}
.challenge__scribble {
  width: 360px;
  margin: 0 auto 32px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.challenge__transition {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
}
.challenge__transform-headline {
  font-family: var(--font-bebas);
  font-size: clamp(32px, 5vw, 64px);
  color: var(--yellow);
  line-height: 1.05;
  white-space: normal;
  overflow-wrap: break-word;
}

/* (transform-cta merged into challenge section) */

/* ═══════════════════════════════════════════════════════════
   12. THE BUYER INSIDER
═══════════════════════════════════════════════════════════ */
.buyer-insider {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a3d 50%, #6B2D8B 100%);
  padding: 100px 60px;
  min-height: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.buyer-insider__dashes {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
}
.buyer-insider__intro {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
}
.buyer-insider__pov {
  font-family: var(--font-bebas);
  font-style: italic;
  font-size: 36px;
  color: var(--pink);
  letter-spacing: 0.05em;
}
.buyer-insider__box-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
}
.buyer-insider__experience {
  font-family: var(--font-bebas);
  font-size: clamp(60px, 10vw, 120px);
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
}
.buyer-insider__box {
  background: var(--yellow);
  padding: 24px 48px;
  display: inline-block;
  margin: 30px auto;
  position: relative;
  z-index: 1;
}
.buyer-insider__box-text {
  font-family: var(--font-bebas);
  font-size: 64px;
  color: var(--black);
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   13. BUYER INSIDER BIO BLURB
═══════════════════════════════════════════════════════════ */
.buyer-blurb {
  background: var(--white);
  padding: 60px 80px;
}
.buyer-blurb__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.buyer-blurb__text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--black);
  line-height: 1.7;
}
.buyer-blurb__highlight {
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   14. SIGNATURE KEYNOTE DETAIL (full-bleed hero style)
═══════════════════════════════════════════════════════════ */
.keynote-detail {
  position: relative;
  background: url('../images/shawna-suckow-nexus-conference-keynote-speaking.png') center center / cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
}
.keynote-detail__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,26,0.75) 0%, rgba(10,10,26,0.85) 100%);
}
.keynote-detail__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.keynote-detail__title {
  font-family: var(--font-bebas);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--yellow);
  line-height: 1.05;
  margin-bottom: 12px;
}
.keynote-detail__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 28px;
}
.keynote-detail__quote-box {
  background: var(--yellow);
  padding: 14px 28px;
  display: inline-block;
  margin: 0 0 28px;
  /* marker highlight style */
  box-shadow: 4px 4px 0 rgba(0,0,0,0.15);
}
.keynote-detail__quote-box em strong {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--black);
}
.keynote-detail__body {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 700px;
}
.keynote-detail__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* -- KEYNOTE TAKEAWAYS (below detail hero) ------------------- */
.keynote-takeaways {
  background: var(--navy);
  padding: 60px 60px;
}
.keynote-takeaways__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.keynote-takeaways__heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.keynote-takeaways__list {
  list-style: disc;
  padding-left: 20px;
}
.keynote-takeaways__list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════════
   15. "SMALL" DICTIONARY SECTION
═══════════════════════════════════════════════════════════ */
.dict {
  background: var(--white);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.dict__img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dict__swoosh {
  align-self: flex-end;
  margin-bottom: -4px;
  margin-right: 20px;
}
.dict__img {
  width: 100%;
  max-width: 420px;
  border-radius: 0;
}

.dict__word-line {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}
.dict__word {
  font-family: var(--font-bebas);
  font-size: clamp(60px, 8vw, 120px);
  color: var(--pink);
  line-height: 0.9;
}
.dict__phonetic {
  font-family: var(--font-bebas);
  font-size: clamp(14px, 1.8vw, 24px);
  color: var(--black);
  white-space: nowrap;
}
.dict__definition {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 26px);
  color: var(--black);
  line-height: 1.55;
  overflow-wrap: break-word;
}
.dict__hl {
  background: var(--yellow);
  padding: 2px 6px;
}

/* ═══════════════════════════════════════════════════════════
   16. BIO SECTION
═══════════════════════════════════════════════════════════ */
.bio {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 600px;
}
.bio__left {
  background: var(--bio-gradient);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.bio__sparkle {
  position: absolute;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
.bio__sparkle--1 { top: 55px;  left: 36px;  font-size: 36px; }
.bio__sparkle--2 { top: 110px; right: 50px; font-size: 28px; }

.bio__hello {
  font-family: var(--font-holiday);
  font-size: 64px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.bio__name {
  font-family: var(--font-bebas);
  font-size: 56px;
  color: var(--yellow);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.bio__subhead {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.5;
}
.bio__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 16px;
}
.bio__body + .bio__buttons { margin-top: 16px; }
.bio__loop-arrow {
  position: absolute;
  bottom: 40px;
  right: -20px;
  z-index: 3;
  opacity: 0.7;
}
.bio__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.bio__right {
  overflow: hidden;
}
.bio__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   17. BTW SECTION
═══════════════════════════════════════════════════════════ */
.btw {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
}
.btw__intro {
  font-family: var(--font-bebas);
  font-size: 22px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}
.btw__list { margin-bottom: 32px; }
.btw__item {
  font-family: var(--font-bebas);
  font-size: clamp(48px, 7vw, 88px);
  color: var(--pink);
  line-height: 1.05;
}
.btw__outro {
  font-family: var(--font-bebas);
  font-size: 22px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.15em;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════════════
   18. BOOK SECTION
═══════════════════════════════════════════════════════════ */
.book {
  background: var(--white);
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.book__cover {
  max-width: 380px;
  margin: 0 auto;
  transform: rotate(-8deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border-radius: 4px;
}
.book__bestseller {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--pink);
  margin-bottom: 16px;
}
.book__title-box {
  background: var(--yellow);
  padding: 12px 20px;
  display: inline-block;
  margin-bottom: 24px;
}
.book__title {
  font-family: var(--font-bebas);
  font-size: 36px;
  color: var(--black);
  letter-spacing: 0.04em;
}
.book__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 28px;
}
.book__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   19. NEEN JAMES TESTIMONIAL
═══════════════════════════════════════════════════════════ */
.testimonial-neen {
  position: relative;
  background: linear-gradient(135deg, #FF1493 0%, #9C27B0 50%, #3F51B5 100%);
  padding: 80px 60px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
/* Decorative wavy shapes */
.testimonial-neen::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: rgba(255,255,255,0.06);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.testimonial-neen::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  background: rgba(255,255,255,0.06);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}
.testimonial-neen__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.testimonial-neen__quote {
  font-family: var(--font-bebas);
  font-size: clamp(32px, 5vw, 64px);
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 24px;
}
.testimonial-neen__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
}
.testimonial-neen__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}
.testimonial-neen__title {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.testimonial-neen__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 32px;
  cursor: pointer;
  z-index: 2;
  padding: 16px;
  transition: color 0.2s;
}
.testimonial-neen__arrow:hover { color: var(--white); }
.testimonial-neen__arrow--left  { left: 16px; }
.testimonial-neen__arrow--right { right: 16px; }

/* ═══════════════════════════════════════════════════════════
   20. CLIENT TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  background: #f9f9f9;
  padding: 80px 60px;
}
.testimonials__header { text-align: center; margin-bottom: 48px; }
.testimonials__heading {
  font-family: var(--font-bebas);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--black);
  letter-spacing: 0.04em;
}
.testimonials__heading-accent { color: var(--pink); }
.testimonials__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: #666;
  margin-top: 8px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card__attr {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════
   21. PODCAST SECTION
═══════════════════════════════════════════════════════════ */
.podcast {
  background: linear-gradient(to bottom, #ffffff 0%, #fff8e1 40%, #F5C000 100%);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
}
.podcast__badge {
  background: #000;
  color: var(--white);
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-bebas);
  font-size: 52px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.podcast__subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.4;
}
.podcast__highlight {
  margin-bottom: 20px;
}
.podcast__highlight em strong {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--black);
  background: var(--yellow);
  padding: 4px 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.podcast__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 24px;
}
.podcast__platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.podcast__platform-badge {
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}
.podcast__platform-badge img { max-height: 18px; max-width: 60px; object-fit: contain; }
.podcast__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* iPhone mockup */
.podcast__phone {
  width: 240px;
  height: 480px;
  border-radius: 40px;
  border: 8px solid #222;
  background: #111;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.podcast__phone-notch {
  width: 100px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.podcast__phone-screen {
  flex: 1;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 8px;
  text-align: center;
}
.podcast__phone-label {
  font-family: var(--font-bebas);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.08em;
}
.podcast__phone-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.podcast__phone-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  margin: 8px 0;
  padding-left: 4px;
}
.podcast__phone-host {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   22. FROM THE BLOG
═══════════════════════════════════════════════════════════ */
.blog-preview {
  background: var(--white);
  padding: 60px 80px;
}
.blog-preview__heading {
  font-family: var(--font-bebas);
  font-size: 64px;
  color: var(--pink);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.blog-card { }
.blog-card__img {
  background: #e8e8e8;
  aspect-ratio: 16/9;
  border-radius: 4px;
  margin-bottom: 0;
}
.blog-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  text-align: center;
  padding: 16px 8px;
  line-height: 1.45;
}
.blog-preview__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   23. NEWSLETTER
═══════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--newsletter-gradient);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.newsletter__bg-photo {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45%;
  object-fit: cover;
  display: block;
}
.newsletter__bg-mask {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45%;
  background: linear-gradient(to right, #1565C0 0%, transparent 80%);
  z-index: 1;
}
.newsletter__content {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 60px;
}
.newsletter__heading {
  font-family: var(--font-bebas);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.newsletter__icon {
  font-size: 36px;
  color: var(--white);
  margin: 16px 0;
}
.newsletter__sparkle {
  position: absolute;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  pointer-events: none;
}
.newsletter__sparkle--1 { top: 40px;  left: 200px; }
.newsletter__sparkle--2 { top: 80px;  left: 380px; font-size: 14px; }
.newsletter__sparkle--3 { bottom: 60px; left: 160px; font-size: 16px; }

.newsletter__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 28px;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  align-items: center;
}
.newsletter__input {
  flex: 1;
  min-width: 200px;
  max-width: 340px;
  height: 48px;
  border-radius: 50px;
  border: none;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.newsletter__btn { height: 48px; display: flex; align-items: center; }
.newsletter__disclaimer {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════
   24. FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 60px 40px;
  text-align: center;
}
.footer__name-first {
  font-family: var(--font-holiday);
  font-size: 64px;
  color: var(--pink);
  line-height: 1;
}
.footer__name-last {
  font-family: var(--font-bebas);
  font-size: 48px;
  color: var(--white);
  display: block;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 24px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
}
.footer__nav a { color: var(--white); transition: color 0.2s; }
.footer__nav a:hover { color: var(--pink); }
.footer__contact {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__legal {
  font-family: var(--font-body);
  font-size: 12px;
  color: #666;
}
.footer__legal a { color: #666; text-decoration: underline; }
.footer__legal a:hover { color: var(--white); }

/* -- KEYNOTE NAVIGATION CARDS -------------------------------- */
.marquee-bar__link {
  color: var(--pink);
  text-decoration: none;
  transition: opacity 0.2s;
}
.marquee-bar__link:hover {
  opacity: 0.7;
}

/* -- PODCAST PHONE IMAGE ------------------------------------- */
.podcast__phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.podcast__phone-img {
  max-height: 520px;
  width: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* -- BLOG CARD IMAGE FIX ------------------------------------- */
.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* -- NEWSLETTER FULL-BG FIX --------------------------------- */
.newsletter {
  background: url('../images/shawna-suckow-newsletter-signup-background.png') center center / cover no-repeat !important;
}
.newsletter__bg-photo,
.newsletter__bg-mask { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile < 768px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Top bar */
  .topbar {
    height: auto;
    padding: 8px 16px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .topbar__left, .topbar__right { justify-content: center; }
  .topbar__left { gap: 12px; flex-wrap: wrap; }

  /* Nav */
  .site-nav {
    padding: 0 20px;
    flex-wrap: wrap;
    height: auto;
    min-height: 64px;
    position: relative;
  }
  .site-nav__logo { order: 1; }
  .nav-hamburger { display: flex; order: 2; margin-left: auto; }
  .site-nav__links {
    display: none !important;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 20px;
    background: var(--white);
  }
  .nav-toggle-input:checked ~ .site-nav__links {
    display: flex !important;
  }
  .site-nav__links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: 16px;
  }
  .site-nav__links a.btn--yellow-nav {
    text-align: center;
    margin-top: 8px;
    border-radius: 50px;
    padding: 16px 0;
  }
  .nav-toggle-input:checked ~ .site-nav__links { display: flex; }

  /* Hero */
  .hero {
    min-height: 100svh;
    background-position: 72% 30%;
    align-items: flex-start;
  }
  .hero__overlay {
    background: rgba(10,10,26,0.35);
  }
  .hero__content {
    padding: 32px 20px 140px;
    max-width: 100%;
  }
  .hero__headline {
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 12px;
  }
  .hero__line { display: block; }
  .hero__eyebrow-inline { font-size: 11px; margin-bottom: 8px; line-height: 1.4; }
  .hero__tagline { font-size: 13px; margin-bottom: 20px; }
  .hero__signature { display: none; }

  /* Testimonial hero */
  .testimonial-hero { padding: 60px 24px; }
  .testimonial-hero__arrow { display: none; }
  .testimonial-hero__quote { font-size: clamp(28px, 7vw, 48px); }

  /* Featured on */
  .featured-on { padding: 40px 24px; }
  .featured-on__logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .featured-on__logo-img { height: 24px; }

  /* Buyer blurb */
  .buyer-blurb { padding: 40px 24px; }

  /* Challenge */
  .challenge { padding: 60px 24px; min-height: auto; }
  .challenge__inner,
  .challenge__cols { grid-template-columns: 1fr !important; gap: 24px; }
  .challenge__col { width: 100%; }

  /* Transform CTA */
  .transform-cta { padding: 60px 24px; }

  /* Buyer Insider */
  .buyer-insider { padding: 60px 24px; }
  .buyer-insider__box-text { font-size: 32px; white-space: normal; }
  .buyer-insider__experience { font-size: 40px; }

  /* Keynote detail */
  .keynote-detail { padding: 60px 24px; min-height: auto; }
  .keynote-takeaways { padding: 40px 24px; }
  .keynote-takeaways__inner { grid-template-columns: 1fr; }

  /* Dictionary */
  .dict {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
  }
  .dict__img-wrap { max-width: 220px; margin: 0 auto; }
  .dict__word { font-size: clamp(60px, 18vw, 90px); }
  .dict__word-line { flex-direction: column; align-items: flex-start; gap: 4px; }
  .dict__phonetic { font-size: 16px; white-space: normal; }
  .dict__definition { font-size: 18px; }

  /* Reel */
  .reel { min-height: 400px; }

  /* Client logos */
  .client-logos { padding: 40px 24px; }
  .client-logos__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Bio */
  .bio { grid-template-columns: 1fr; }
  .bio__left { padding: 60px 24px; }
  .bio__hello { font-size: 48px; }
  .bio__name { font-size: 40px; }
  .bio__right { height: 360px; }

  /* BTW */
  .btw { padding: 40px 24px; }
  .btw__item { font-size: clamp(28px, 7vw, 60px); line-height: 1.1; }

  /* Book */
  .book { grid-template-columns: 1fr; padding: 60px 24px; }
  .book__cover { max-width: 200px; margin: 0 auto; }
  .book__title-box { display: block; width: 100%; }
  .book__title { font-size: 28px; line-height: 1.1; }

  /* Neen James */
  .testimonial-neen { padding: 60px 24px; }
  .testimonial-neen__arrow { display: none; }
  .testimonial-neen__quote { font-size: clamp(28px, 7vw, 48px); }

  /* Testimonials */
  .testimonials { padding: 60px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Podcast */
  .podcast { grid-template-columns: 1fr; padding: 60px 24px; }
  .podcast__phone-wrap { max-width: 200px; margin: 0 auto; }

  /* Blog */
  .blog-preview { padding: 40px 24px; }
  .blog-preview__grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter { flex-direction: column; }
  .newsletter__bg-photo,
  .newsletter__bg-mask { display: none; }
  .newsletter__content { width: 100%; padding: 40px 24px; }

  /* Footer */
  .footer { padding: 40px 24px; }
  .footer__cols { grid-template-columns: 1fr; gap: 32px; }
  .footer__nav { gap: 8px; flex-wrap: wrap; }
}


/* -- BACK TO TOP BUTTON -------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { background: #d4006e; }

/* (challenge scribble styles moved inline to challenge section) */

/* -- TESTIMONIAL AVATAR HEADSHOTS ---------------------------- */
.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid var(--pink);
}
/* ── BLOG GRID (main page) ────────────────────────────── */
.blog-grid { background: #f9f9f9; padding: 80px 60px; }
.blog-grid__inner { max-width: 1200px; margin: 0 auto; }
.blog-grid__heading { font-family: var(--font-bebas); font-size: 48px; color: var(--black); letter-spacing: 0.04em; margin-bottom: 48px; text-align: center; }
.blog-grid__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-post-card { background: var(--white); border-radius: 12px; 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; }
.blog-post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.blog-post-card__img { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-post-card__img--placeholder { width: 100%; height: 220px; background: linear-gradient(135deg, #FF1493 0%, #6B2D8B 100%); display: block; }
.blog-post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-post-card__date { font-size: 12px; color: #999; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.blog-post-card__title { font-family: var(--font-bebas); font-size: 22px; color: var(--black); letter-spacing: 0.03em; line-height: 1.1; margin-bottom: 8px; }
.blog-post-card__title a { color: var(--black); text-decoration: none; }
.blog-post-card__title a:hover { color: var(--pink); }
.blog-post-card__byline { font-size: 12px; color: #999; margin-bottom: 12px; }
.blog-post-card__byline strong { color: var(--pink); }
.blog-post-card__excerpt { font-size: 14px; color: #555; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.blog-post-card__read-more { font-family: var(--font-bebas); font-size: 16px; color: var(--pink); text-decoration: none; letter-spacing: 0.06em; margin-top: auto; }
.blog-post-card__read-more:hover { opacity: 0.75; }

/* ── BLOG POST PAGE ───────────────────────────────────── */
.blog-post-hero { width: 100%; height: 400px; object-fit: cover; display: block; }
.blog-post-hero--gradient { width: 100%; height: 400px; background: linear-gradient(135deg, #0d0d1a 0%, #6B2D8B 100%); display: block; }
.blog-post-header { max-width: 800px; margin: 0 auto; padding: 48px 24px 0; }
.blog-post-title { font-family: var(--font-bebas); font-size: clamp(36px,6vw,64px); color: var(--black); line-height: 1.05; margin-bottom: 16px; }
.blog-post-meta { font-size: 14px; color: #888; margin-bottom: 32px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.blog-post-meta strong { color: var(--pink); }
.blog-post-body { max-width: 800px; margin: 0 auto; padding: 0 24px 80px; font-size: 17px; line-height: 1.8; color: #222; }
.blog-post-body h2 { font-family: var(--font-bebas); font-size: 32px; margin: 40px 0 16px; color: var(--pink); letter-spacing: 0.04em; }
.blog-post-body h3 { font-family: var(--font-bebas); font-size: 24px; margin: 32px 0 12px; color: var(--black); letter-spacing: 0.03em; }
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body ul, .blog-post-body ol { padding-left: 28px; margin-bottom: 20px; }
.blog-post-body li { margin-bottom: 8px; line-height: 1.7; }
.blog-post-body strong { font-weight: 700; }
.blog-post-tldr { border-left: 4px solid var(--pink); background: #fff0f8; padding: 16px 20px; margin-bottom: 28px; border-radius: 0 8px 8px 0; font-size: 15px; }
.blog-post-tldr strong { color: var(--pink); }
.blog-post-back { display: inline-block; margin: 32px 24px 0; font-family: var(--font-bebas); font-size: 18px; color: var(--pink); text-decoration: none; letter-spacing: 0.06em; }
.blog-post-back:hover { opacity: 0.75; }
.blog-share { max-width: 800px; margin: 0 auto; padding: 32px 24px 48px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.blog-share p { font-family: var(--font-bebas); font-size: 18px; letter-spacing: 0.06em; margin: 0 8px 0 0; }
.blog-share__btn { font-family: var(--font-bebas); font-size: 14px; padding: 10px 20px; border-radius: 50px; text-decoration: none; letter-spacing: 0.06em; }
.blog-share__btn--twitter { background: #000; color: #fff; }
.blog-share__btn--linkedin { background: #0077b5; color: #fff; }
.blog-share__btn--facebook { background: #1877f2; color: #fff; }
@media (max-width: 768px) {
  .blog-grid { padding: 60px 24px; }
  .blog-grid__cards { grid-template-columns: 1fr; }
  .blog-post-hero { height: 240px; }
  .blog-post-hero--gradient { height: 240px; }
  .blog-post-header { padding: 32px 20px 0; }
  .blog-post-body { padding: 0 20px 60px; font-size: 16px; }
}
/* ── EPISODE PAGE ─────────────────────────────────────── */
.ep-page__hero {
  background: linear-gradient(135deg, #0d0d1a 0%, #3d0a2a 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.ep-page__hero-content { position: relative; z-index: 1; flex: 1; }
.ep-page__artwork {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ep-page__badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-bebas);
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.ep-page__title {
  font-family: var(--font-bebas);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.ep-page__subtitle { font-family: var(--font-bebas); font-size: 28px; color: var(--yellow); letter-spacing: 0.04em; margin-bottom: 12px; }
.ep-page__guest { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.ep-page__guest strong { color: var(--yellow); }
.ep-page__date { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.ep-page__body { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.ep-page__desc { font-size: 18px; line-height: 1.8; color: #333; margin-bottom: 40px; }
.ep-page__listen-label { font-family: var(--font-bebas); font-size: 20px; letter-spacing: 0.08em; margin-bottom: 16px; }
.ep-page__listen-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ep-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-bebas);
  font-size: 16px;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ep-listen-btn:hover { opacity: 0.85; }
.ep-listen-btn--spotify { background: #1DB954; color: #000; }
.ep-listen-btn--apple { background: #000; color: #fff; }
.ep-listen-btn--iheart { background: #C6002B; color: #fff; }
.ep-listen-btn--amazon { background: #FF9900; color: #000; }
.ep-listen-btn--youtube { background: #FF0000; color: #fff; }
.ep-page__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 48px;
  border-top: 1px solid #eee;
  padding-top: 32px;
}
.ep-page__nav-btn {
  font-family: var(--font-bebas);
  font-size: 18px;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.ep-page__nav-btn:hover { opacity: 0.75; }
.ep-page__nav-all {
  font-family: var(--font-bebas);
  font-size: 16px;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .ep-page__hero { flex-direction: column; padding: 40px 24px; gap: 24px; }
  .ep-page__artwork { width: 160px; height: 160px; }
  .ep-page__listen-btns { flex-direction: column; }
  .ep-listen-btn { justify-content: center; }
}
/* ── EPISODE PAGE EXTRAS ──────────────────────────────── */
.ep-page__player { max-width: 800px; margin: 0 auto 32px; }
.ep-page__player iframe { width: 100%; border-radius: 12px; }
.ep-page__section-heading { font-family: var(--font-bebas); font-size: 36px; letter-spacing: 0.06em; color: var(--black); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 3px solid var(--pink); }
.ep-page__blog, .ep-page__transcript { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.ep-page__blog { border-top: 1px solid #eee; }
.ep-page__transcript { border-top: 1px solid #eee; }
.ep-page__blog-content p, .ep-page__transcript-content p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; color: #333; }
.ep-page__transcript-content p { font-family: var(--font-body); font-size: 15px; color: #555; }
.ep-page__blog-content h3, .ep-page__transcript-content h3 { font-family: var(--font-bebas); font-size: 24px; color: var(--pink); letter-spacing: 0.04em; margin: 28px 0 12px; }
.ep-section-title { font-family: var(--font-bebas); font-size: 24px; color: var(--pink); letter-spacing: 0.04em; margin: 28px 0 12px; }
@media (max-width: 768px) {
  .ep-page__blog, .ep-page__transcript { padding: 32px 20px; }
}