/* =============================================================
   Podcasts page — inherits tokens from webinars.css / stylesheet.css
   Scope: .pod-* classes only
   ============================================================= */

/* ---------- Page scroll fix ----------
   Global stylesheet sets html, body { height: 100%; width: 100%; }
   which turns body into its own scroll container whenever any descendant
   overflows — producing a second scrollbar stacked against the window
   scrollbar. Force only <html> to own the scroll.
*/
html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  height: auto !important;
  min-height: 100vh;
  overflow: visible !important;
}
main.ems-main-wrapper,
main.body-container-wrapper {
  overflow: visible;
}

/* =========================================================
   1) HERO
   ========================================================= */
.pod-banner {
  position: relative;
  padding: 3rem 0 3rem;
  background:
    radial-gradient(ellipse 1200px 600px at 50% -10%, rgba(109,59,192,0.12), transparent 60%),
    linear-gradient(180deg, #f7f3ff 0%, #fff7ee 55%, #ffffff 100%);
  overflow: hidden;
  isolation: isolate;
}
.pod-banner > .container { position: relative; z-index: 3; }

/* Blurred gradient blobs */
.pod-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.pod-blob--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: -100px;
  left: -120px;
  animation: pod-blob-a 14s ease-in-out infinite;
}
.pod-blob--2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #f97316 0%, transparent 70%);
  bottom: -150px;
  right: -140px;
  animation: pod-blob-b 16s ease-in-out infinite;
}
@keyframes pod-blob-a { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,30px) scale(1.1)} }
@keyframes pod-blob-b { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-40px,-30px) scale(1.08)} }

/* Floating dot particles */
.pod-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.pod-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d3bc0, #f97316);
  opacity: 0.45;
  animation: pod-float-dot 6s ease-in-out infinite;
}
.pod-particles span:nth-child(1) { top: 22%; left: 8%;  animation-delay: 0s; }
.pod-particles span:nth-child(2) { top: 40%; left: 3%;  animation-delay: 1s; width:4px;height:4px;}
.pod-particles span:nth-child(3) { top: 70%; left: 10%; animation-delay: 2s; }
.pod-particles span:nth-child(4) { top: 15%; right: 38%; animation-delay: 0.5s; width:4px;height:4px;}
.pod-particles span:nth-child(5) { top: 78%; right: 42%; animation-delay: 1.5s; }
.pod-particles span:nth-child(6) { top: 30%; right: 4%;  animation-delay: 2.5s; width:5px;height:5px;}
.pod-particles span:nth-child(7) { top: 55%; right: 8%;  animation-delay: 3s; }
.pod-particles span:nth-child(8) { top: 85%; right: 12%; animation-delay: 0.8s; width:4px;height:4px;}
@keyframes pod-float-dot {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-18px) scale(1.2); opacity: 0.8; }
}

/* Eyebrow chip */
.pod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6d3bc0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(139,92,246,0.22);
  padding: 0.45rem 0.875rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px -10px rgba(109,59,192,0.3);
}
.pod-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.25);
  animation: pod-pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pod-pulse-dot {
  0%,100%{ box-shadow: 0 0 0 3px rgba(249,115,22,0.25);}
  50%{ box-shadow: 0 0 0 6px rgba(249,115,22,0.08);}
}

.pod-banner h1 {
  font-size: 3.25rem;
  line-height: 1.1;
  color: #111928;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.pod-accent {
  background: linear-gradient(135deg, #6d3bc0 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.pod-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 0.45rem;
  background: linear-gradient(90deg, rgba(109,59,192,0.25), rgba(249,115,22,0.25));
  border-radius: 1rem;
  z-index: -1;
}
.pod-banner p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #4b5563;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

/* Hero stats row */
.pod-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17,25,40,0.08);
}
.pod-stat { display: flex; flex-direction: column; }
.pod-stat strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111928;
  line-height: 1.2;
  background: linear-gradient(135deg, #6d3bc0, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pod-stat span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 0.125rem;
}
.pod-btn-play { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ---------- Hero stage (right side) ---------- */
.pod-hero-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ripple rings behind soundwave */
.pod-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(109,59,192,0.28);
  transform: translate(-50%,-50%);
  animation: pod-ripple 3.6s ease-out infinite;
}
.pod-ripple--1 { width: 320px; height: 320px; animation-delay: 0s; }
.pod-ripple--2 { width: 320px; height: 320px; animation-delay: 1.2s; }
.pod-ripple--3 { width: 320px; height: 320px; animation-delay: 2.4s; }
@keyframes pod-ripple {
  0%   { width: 320px; height: 320px; opacity: 0.55; border-color: rgba(109,59,192,0.32); }
  60%  { opacity: 0.18; border-color: rgba(249,115,22,0.22); }
  100% { width: 500px; height: 500px; opacity: 0; }
}

/* =========================================================
   HERO CENTER — Concept "Signed Voice"
   Podcast player card (waveform + scrubber + verified) + cert seal stamp
   Cycle = 9s. Sweep at 0–82%, hold + stamp at 82–92%, fade reset at 92–100%.
   ========================================================= */
.pod-signedvoice {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Player card (clickable → plays featured episode) ---
   Disc shape: square aspect + 50% radius. Content distributed with
   space-evenly so head sits near top, foot near bottom, and the
   waveform bursts horizontally through the disc edge. */
.pod-sv-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-radius: 50%;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: stretch;
  box-shadow:
    0 30px 70px -25px rgba(17,25,40,0.28),
    0 8px 24px -12px rgba(109,59,192,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.5),
    inset 0 0 0 2px rgba(17,25,40,0.03);
  overflow: visible;
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pod-sv-card:hover,
.pod-sv-card:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 38px 80px -25px rgba(17,25,40,0.32),
    0 14px 30px -10px rgba(109,59,192,0.28),
    inset 0 0 0 1px rgba(109,59,192,0.18);
}
.pod-sv-card:focus-visible {
  outline: 2px solid #6d3bc0;
  outline-offset: 4px;
}
.pod-sv-card:active { transform: translateY(-1px); }
.pod-sv-card:hover .pod-sv-cta,
.pod-sv-card:focus-visible .pod-sv-cta {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* "Tap to watch" pill — hidden by default, fades in on hover/focus.
   Sits along the disc's lower curved edge (just above the very bottom). */
.pod-sv-cta {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translate(-50%, 6px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  background: linear-gradient(135deg, #6d3bc0 0%, #3a2259 100%);
  color: #fff;
  border-radius: 999px;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -10px rgba(109,59,192,0.55);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.pod-sv-cta svg {
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  padding: 3px;
  width: 16px;
  height: 16px;
}
.pod-sv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(109,59,192,0.06) 0%, transparent 55%),
    linear-gradient(135deg, rgba(109,59,192,0.05) 0%, transparent 40%, rgba(249,115,22,0.05) 100%);
  pointer-events: none;
  z-index: -1;
}

/* --- Card head: eyebrow + duration (centered for disc shape) --- */
.pod-sv-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.pod-sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d3bc0;
}
.pod-sv-rec {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.18);
  animation: pod-sv-rec 1.2s ease-in-out infinite;
}
@keyframes pod-sv-rec {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(239,68,68,0.18); }
  50%      { opacity: 0.55; box-shadow: 0 0 0 5px rgba(239,68,68,0.06); }
}
.pod-sv-dur {
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b7280;
}

/* --- Title --- */
.pod-sv-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111928;
  margin: 0;
  padding: 0 0.5rem;
  letter-spacing: -0.005em;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

/* --- Waveform stage — overrides disc bounds horizontally --- */
.pod-sv-wave {
  position: relative;
  height: 96px;
  margin: 0 -4.5rem;
  z-index: 2;
}
/* Soft glow halo behind the bars */
.pod-sv-wave::before {
  content: "";
  position: absolute;
  inset: -18px -28px;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(249,115,22,0.22) 0%,
      rgba(109,59,192,0.14) 38%,
      transparent 72%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  animation: pod-sv-glow-pulse 3.6s ease-in-out infinite;
}
@keyframes pod-sv-glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}
.pod-sv-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  pointer-events: none;
}
.pod-sv-bars span {
  display: block;
  flex: 0 0 4px;
  width: 4px;
  height: calc(var(--h) * 1%);
  border-radius: 2px;
  transform-origin: center center;
  animation: pod-sv-bar-pulse 1.6s ease-in-out infinite;
  will-change: transform;
}
/* 7-phase delay rotation creates the audio-reactive look without per-bar --i */
.pod-sv-bars span:nth-child(7n+1) { animation-delay: 0s; }
.pod-sv-bars span:nth-child(7n+2) { animation-delay: -0.22s; }
.pod-sv-bars span:nth-child(7n+3) { animation-delay: -0.45s; }
.pod-sv-bars span:nth-child(7n+4) { animation-delay: -0.7s; }
.pod-sv-bars span:nth-child(7n+5) { animation-delay: -0.95s; }
.pod-sv-bars span:nth-child(7n+6) { animation-delay: -1.2s; }
.pod-sv-bars span:nth-child(7n+7) { animation-delay: -1.45s; }
@keyframes pod-sv-bar-pulse {
  0%, 100% { transform: scaleY(0.55); }
  50%      { transform: scaleY(1.18); }
}
.pod-sv-bars--base span {
  background: rgba(109,59,192,0.20);
}
.pod-sv-bars--fill {
  z-index: 2;
  animation: pod-sv-fill 9s linear infinite;
  will-change: clip-path, opacity;
}
.pod-sv-bars--fill span {
  background: linear-gradient(180deg, #f97316 0%, #6d3bc0 100%);
  box-shadow: 0 0 6px rgba(109,59,192,0.30);
}
@keyframes pod-sv-fill {
  0%     { clip-path: inset(0 100% 0 0); opacity: 1; }
  82%    { clip-path: inset(0 0% 0 0);  opacity: 1; }
  92%    { clip-path: inset(0 0% 0 0);  opacity: 1; }
  98%    { clip-path: inset(0 0% 0 0);  opacity: 0; }
  98.01% { clip-path: inset(0 100% 0 0); opacity: 0; }
  100%   { clip-path: inset(0 100% 0 0); opacity: 1; }
}

/* --- Playhead scrubber --- */
.pod-sv-playhead {
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, #f97316 0%, #6d3bc0 100%);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(249,115,22,0.55);
  z-index: 3;
  animation: pod-sv-playhead 9s linear infinite;
  will-change: left, opacity;
}
.pod-sv-playhead::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 10px rgba(249,115,22,0.85);
}
@keyframes pod-sv-playhead {
  0%   { left: 0%;   opacity: 0; }
  4%   { opacity: 1; }
  82%  { left: 100%; opacity: 1; }
  88%  { opacity: 0; }
  100% { left: 0%;   opacity: 0; }
}

/* --- Foot: hash + verified badge --- */
.pod-sv-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pod-sv-hosts {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: #4b5563;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pod-sv-hosts svg { color: #6d3bc0; flex-shrink: 0; }
.pod-sv-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f9fafb;
  border: 1px solid #edeef3;
  flex-shrink: 0;
  animation: pod-sv-verified 9s linear infinite;
}
@keyframes pod-sv-verified {
  0%, 80% { color: #6b7280; background: #f9fafb; border-color: #edeef3; }
  85%     { color: #047857; background: #d1fae5; border-color: #a7f3d0; }
  92%     { color: #047857; background: #d1fae5; border-color: #a7f3d0; }
  98%     { color: #6b7280; background: #f9fafb; border-color: #edeef3; }
  100%    { color: #6b7280; background: #f9fafb; border-color: #edeef3; }
}

/* --- Stamping cert seal (sits over top-right corner of card) --- */
.pod-sv-seal {
  position: absolute;
  top: 7%;
  right: 7%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem 0.5rem 0.625rem;
  background: #ffffff;
  color: #3a2259;
  border-radius: 0.75rem;
  box-shadow:
    0 18px 35px -15px rgba(17,25,40,0.30),
    0 6px 18px -8px rgba(109,59,192,0.22),
    inset 0 0 0 1px rgba(109,59,192,0.12);
  transform-origin: 75% 30%;
  animation: pod-sv-stamp 9s ease-in-out infinite;
  will-change: transform, opacity;
}
.pod-sv-seal::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1.5px dashed rgba(249,115,22,0.65);
  border-radius: 0.875rem;
  pointer-events: none;
  animation: pod-sv-stamp-ring 9s linear infinite;
}
.pod-sv-seal-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2ebff 0%, #fff4ec 100%);
  color: #6d3bc0;
}
.pod-sv-seal-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--DMSans, "DM Sans", sans-serif);
}
.pod-sv-seal-text strong {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #6d3bc0 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pod-sv-seal-text em {
  font-style: normal;
  font-size: 0.625rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
@keyframes pod-sv-stamp {
  0%, 78%   { opacity: 0; transform: scale(0.55) rotate(-14deg); }
  84%       { opacity: 1; transform: scale(1.18) rotate(-9deg); }
  88%       { transform: scale(1)    rotate(-9deg); }
  92%       { opacity: 1; transform: scale(1)    rotate(-9deg); }
  98%       { opacity: 0; transform: scale(0.96) rotate(-9deg); }
  100%      { opacity: 0; transform: scale(0.55) rotate(-14deg); }
}
@keyframes pod-sv-stamp-ring {
  0%, 82%  { transform: rotate(0deg); }
  100%     { transform: rotate(360deg); }
}

/* Reduced motion: freeze on a clean "signed" pose */
@media (prefers-reduced-motion: reduce) {
  .pod-sv-rec,
  .pod-sv-bars--fill,
  .pod-sv-bars span,
  .pod-sv-wave::before,
  .pod-sv-playhead,
  .pod-sv-verified,
  .pod-sv-seal,
  .pod-sv-seal::after,
  .pod-ripple,
  .pod-blob--1,
  .pod-blob--2,
  .pod-particles span,
  .pod-float,
  .pod-eyebrow-dot { animation: none !important; }
  .pod-sv-bars span { transform: scaleY(1) !important; }
  .pod-sv-bars--fill { clip-path: inset(0 0% 0 0) !important; opacity: 1 !important; }
  .pod-sv-playhead { left: 100% !important; opacity: 0 !important; }
  .pod-sv-seal { opacity: 1 !important; transform: scale(1) rotate(-9deg) !important; }
  .pod-sv-verified { color: #047857 !important; background: #d1fae5 !important; border-color: #a7f3d0 !important; }
}

/* Floating chips */
.pod-float {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 15px 35px -10px rgba(17,25,40,0.25);
  padding: 0.625rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  animation: pod-hover 5s ease-in-out infinite;
}
.pod-float--wave {
  top: 12%;
  right: -2%;
  padding: 0.75rem 1rem;
  animation-delay: 0s;
}
.pod-float--headphones {
  top: 6%;
  left: -2%;
  width: 56px;
  height: 56px;
  justify-content: center;
  padding: 0;
  color: #6d3bc0;
  background: #fff;
  border: 1px solid rgba(109,59,192,0.2);
  animation-delay: 1s;
}
.pod-float--mic {
  top: 62%;
  right: 0%;
  width: 56px;
  height: 56px;
  justify-content: center;
  padding: 0;
  color: #6d3bc0;
  background: #fff;
  border: 1px solid rgba(109,59,192,0.2);
  animation-delay: 2.5s;
}
.pod-float--play {
  bottom: 8%;
  left: 20%;
  color: #fff;
  background: linear-gradient(135deg, #111928, #3a2259);
  font-weight: 700;
  font-size: 0.8125rem;
  animation-delay: 2s;
  box-shadow: 0 15px 35px -10px rgba(17,25,40,0.45);
}
.pod-float--play svg { margin-left: 0.125rem; }
@keyframes pod-hover {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.pod-float-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}
.pod-float-wave {
  display: flex;
  gap: 0.15rem;
  align-items: flex-end;
  height: 1.25rem;
}
.pod-float-wave span {
  display: block;
  width: 3px;
  background: linear-gradient(180deg, #6d3bc0, #f97316);
  border-radius: 2px;
  animation: pod-wave-bar 1.2s ease-in-out infinite;
}
.pod-float-wave span:nth-child(1) { height: 35%; animation-delay: 0s; }
.pod-float-wave span:nth-child(2) { height: 65%; animation-delay: .05s; }
.pod-float-wave span:nth-child(3) { height: 85%; animation-delay: .1s; }
.pod-float-wave span:nth-child(4) { height: 55%; animation-delay: .15s; }
.pod-float-wave span:nth-child(5) { height: 95%; animation-delay: .2s; }
.pod-float-wave span:nth-child(6) { height: 40%; animation-delay: .25s; }
.pod-float-wave span:nth-child(7) { height: 70%; animation-delay: .3s; }
.pod-float-wave span:nth-child(8) { height: 50%; animation-delay: .35s; }
.pod-float-wave span:nth-child(9) { height: 80%; animation-delay: .4s; }
.pod-float-wave span:nth-child(10){ height: 60%; animation-delay: .45s; }
.pod-float-wave span:nth-child(11){ height: 40%; animation-delay: .5s; }
.pod-float-wave span:nth-child(12){ height: 30%; animation-delay: .55s; }
@keyframes pod-wave-bar {
  0%,100% { transform: scaleY(0.35); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* =========================================================
   2) FEATURED — single aligned card
   ========================================================= */
.pod-featured-card {
  background: #fff;
  border: 1px solid #edeef3;
  border-radius: 1.5rem;
  box-shadow: 0 35px 80px -30px rgba(17,25,40,0.18);
  overflow: hidden;
  position: relative;
}
.pod-featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109,59,192,0.04), transparent 40%, rgba(249,115,22,0.04));
  pointer-events: none;
}
.pod-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.pod-featured-video {
  padding: 0;
  display: flex;
  background: #0f0f0f;
  overflow: hidden;
}
.pod-featured-player {
  position: relative;
  flex: 1;
  min-height: 300px;
  background: #0f0f0f;
  overflow: hidden;
}
.pod-featured-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --- LinkedIn fallback panel — shown when the row has no YouTube ID yet --- */
.pod-featured-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1.5rem;
  text-decoration: none;
  text-align: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(109,59,192,0.45) 0%, transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(10,102,194,0.45) 0%, transparent 55%),
    linear-gradient(135deg, #1f1538 0%, #0a0617 100%);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pod-featured-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 12px,
      transparent 12px,
      transparent 24px);
  pointer-events: none;
}
.pod-featured-fallback:hover { transform: scale(1.005); }
.pod-featured-fallback.is-pulse {
  animation: pod-fallback-pulse 1.8s ease-in-out;
}
@keyframes pod-fallback-pulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(10,102,194,0); }
  30%, 70% { box-shadow: inset 0 0 0 6px rgba(10,102,194,0.55); }
}
.pod-featured-fallback-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.875rem;
  background: rgba(10,102,194,0.95);
  color: #fff;
  border-radius: 999px;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -10px rgba(10,102,194,0.55);
  position: relative;
  z-index: 1;
}
.pod-featured-fallback-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d3bc0 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 25px 50px -15px rgba(109,59,192,0.7);
  transition: transform 0.25s ease;
  position: relative;
  z-index: 1;
}
.pod-featured-fallback:hover .pod-featured-fallback-play { transform: scale(1.08); }
.pod-featured-fallback-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: gap 0.2s ease;
}
.pod-featured-fallback:hover .pod-featured-fallback-cta { gap: 0.7rem; }
.pod-featured-fallback-note {
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
}
.pod-featured-info {
  padding: 1.125rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.pod-featured-flag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f97316;
  background: #fff4ec;
  border: 1px solid #ffd8bd;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}
.pod-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.pod-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}
.pod-meta-item svg { color: #9ca3af; }
.pod-chip {
  display: inline-block;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
}
.pod-chip--cat { color: #6d3bc0; background: #f2ebff; }

.pod-featured-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: #111928;
  margin: 0.125rem 0;
  letter-spacing: -0.01em;
}
.pod-featured-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0;
}
.pod-featured-guests {
  padding: 0.75rem 0.875rem;
  background: #f9fafb;
  border: 1px solid #edeef3;
  border-radius: 0.625rem;
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pod-guests-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}
.pod-guest {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}
.pod-guest-avatar {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d3bc0, #f97316);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pod-guest-avatar--alt {
  background: linear-gradient(135deg, #0f2a6b, #6d3bc0);
}
.pod-guest-info { display: flex; flex-direction: column; min-width: 0; }
.pod-guest-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111928;
  line-height: 1.25;
}
.pod-guest-role {
  font-size: 0.7125rem;
  color: #6b7280;
  line-height: 1.35;
}
.pod-featured-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

/* =========================================================
   3) EPISODES — list rows
   ========================================================= */
.pod-episodes-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pod-episodes-head h2 {
  font-size: 2.125rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pod-episodes-head .ems-leadcontent { max-width: 36rem; }
@media (max-width: 767px) {
  .pod-episodes-head h2 { font-size: 1.625rem; }
}
.pod-episodes-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #6d3bc0;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.pod-episodes-link:hover {
  gap: 0.625rem;
  color: #4f2a94;
  text-decoration: none;
}

.pod-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pod-ep-row {
  display: grid;
  grid-template-columns: 5.5rem 14rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid #edeef3;
  border-radius: 1rem;
  padding: 1rem 1.5rem 1rem 1rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pod-ep-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(17,25,40,0.15);
  border-color: #e0d5f5;
}
.pod-ep-num {
  text-align: center;
  padding: 0.75rem 0;
  background: linear-gradient(135deg, #f7f3ff 0%, #fff7ee 100%);
  border-radius: 0.75rem;
  border: 1px solid rgba(109,59,192,0.15);
}
.pod-ep-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d3bc0;
  margin-bottom: 0.125rem;
}
.pod-ep-num strong {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: #111928;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #6d3bc0, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pod-ep-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.625rem;
  background: #111928;
  text-decoration: none;
}
.pod-ep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pod-ep-row:hover .pod-ep-thumb img { transform: scale(1.05); }
.pod-ep-duration {
  position: absolute;
  bottom: 0.4rem;
  right: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  background: rgba(17,25,40,0.82);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
}
.pod-ep-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pod-ep-play svg {
  color: #fff;
  background: rgba(109,59,192,0.92);
  border-radius: 50%;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  transition: transform 0.2s, background 0.2s;
}
.pod-ep-row:hover .pod-ep-play svg { transform: scale(1.1); background: #6d3bc0; }

.pod-ep-body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}
.pod-ep-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pod-ep-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0a66c2;
}
.pod-ep-title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111928;
  margin: 0;
}
.pod-ep-title a { color: inherit; text-decoration: none; }
.pod-ep-title a:hover { color: #6d3bc0; }
.pod-ep-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pod-ep-actions { display: flex; }
.pod-ep-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6d3bc0;
  background: #f2ebff;
  border: 1px solid transparent;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.pod-ep-btn:hover {
  background: #6d3bc0;
  color: #fff;
  text-decoration: none;
}

/* =========================================================
   4) CTA — subscribe strip
   ========================================================= */
.pod-cta-card {
  background: linear-gradient(135deg, #3a2259 0%, #6d3bc0 55%, #f97316 120%);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2.75rem 2.25rem;
  box-shadow: 0 40px 90px -30px rgba(109,59,192,0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.pod-cta-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
  pointer-events: none;
}
.pod-cta-copy { flex: 1 1 320px; min-width: 0; position: relative; z-index: 1; }
.pod-cta-copy h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.01em; color: #fff; }
.pod-cta-copy p,
.pod-cta-copy { font-size: 1rem; color: rgba(255,255,255,0.88); margin: 0; }
.pod-cta-links { display: flex; flex-wrap: wrap; gap: 0.625rem; position: relative; z-index: 1; }
.pod-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-family: var(--DMSans, "DM Sans", sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: #3a2259;
  background: #fff;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, color 0.2s;
}
.pod-platform-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(0,0,0,0.25);
  color: #6d3bc0;
}
.pod-platform-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.pod-platform-btn--outline:hover { background: #fff; color: #6d3bc0; }

/* =========================================================
   5) Podcast lightbox
   ========================================================= */
.pod-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,10,25,0.88);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  z-index: 1200;
}
.pod-lightbox.is-open { display: flex; }
.pod-lightbox-inner { width: 100%; max-width: 960px; }
.pod-lightbox-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.pod-lightbox-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.pod-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.pod-lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1199px) {
  .pod-banner h1 { font-size: 2.75rem; }
  .pod-hero-stage { max-width: 440px; }

  .pod-signedvoice { max-width: 340px; }
  .pod-sv-card { padding: 1.25rem 1.25rem; }
  .pod-sv-title { font-size: 0.9375rem; }
  .pod-sv-wave { height: 76px; margin: 0 -2.25rem; }
  .pod-sv-bars { gap: 2px; }
  .pod-sv-bars span { flex-basis: 3px; width: 3px; }
  .pod-sv-hosts { font-size: 0.7rem; }
  .pod-sv-seal { top: 6%; right: 6%; padding: 0.4rem 0.625rem 0.4rem 0.5rem; }
  .pod-sv-seal-shield { width: 26px; height: 26px; }
  .pod-sv-seal-text strong { font-size: 0.7rem; }
  .pod-sv-seal-text em { font-size: 0.5625rem; }

  .pod-ripple--1, .pod-ripple--2, .pod-ripple--3 { width: 280px; height: 280px; }
  @keyframes pod-ripple {
    0%   { width: 280px; height: 280px; opacity: 0.55; border-color: rgba(109,59,192,0.32); }
    60%  { opacity: 0.18; border-color: rgba(249,115,22,0.22); }
    100% { width: 440px; height: 440px; opacity: 0; }
  }
}
@media (max-width: 991px) {
  .pod-banner { padding: 6rem 0 3.5rem; }
  .pod-banner h1 { font-size: 2.25rem; }
  .pod-hero-stats { gap: 1.25rem; }
  .pod-featured-grid { grid-template-columns: 1fr; }
  .pod-featured-video { padding: 0; }
  .pod-featured-player { aspect-ratio: 16 / 9; min-height: 0; flex: none; }
  .pod-featured-info { padding: 1.5rem 1.5rem 2rem; }
  .pod-ep-row {
    grid-template-columns: 4rem 11rem 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    padding: 1rem;
  }
  .pod-ep-actions { grid-column: 1 / -1; justify-content: flex-start; }
  .pod-ep-btn { width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
  .pod-banner {
    padding: 5rem 0 2.5rem;
    text-align: center;
  }
  .pod-banner h1 { font-size: 1.875rem; }
  .pod-banner p { margin-inline: auto; font-size: 1rem; }
  .pod-banner .banner-ctas { justify-content: center; }
  .pod-hero-stats { justify-content: center; }
  .pod-featured-title { font-size: 1.375rem; }
  .pod-episodes-head { align-items: flex-start; }
  .pod-ep-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0.75rem;
    padding: 1rem;
  }
  .pod-ep-num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    width: max-content;
  }
  .pod-ep-num strong { font-size: 1.125rem; }
  .pod-ep-thumb { max-width: 100%; }
  .pod-cta-card { padding: 2rem 1.25rem; text-align: center; }
  .pod-cta-copy h2 { font-size: 1.5rem; }
  .pod-cta-links { justify-content: center; }
}
