    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --sky-deep:    #03040d;
      --sky-mid:     #07091a;
      --sky-horizon: #0c1230;
      --nebula-a:    rgba(80, 40, 140, 0.18);
      --nebula-b:    rgba(20, 60, 140, 0.20);
      --nebula-c:    rgba(140, 60, 40, 0.08);
      --star-bright: rgba(255, 255, 255, 0.92);
      --star-mid:    rgba(200, 215, 255, 0.60);
      --star-dim:    rgba(160, 180, 255, 0.30);
      --text-primary:   #e8eaf6;
      --text-secondary: rgba(180, 190, 220, 0.72);
      --text-muted:     rgba(140, 155, 195, 0.50);
      --accent:         #a78bca;
      --accent-glow:    rgba(167, 139, 202, 0.20);
      --gold:           #c9a86c;
      --gold-dim:       rgba(201, 168, 108, 0.15);
      --divider:        rgba(120, 140, 200, 0.12);
      --glass-bg:       rgba(8, 10, 28, 0.60);
      --glass-border:   rgba(180, 190, 255, 0.08);
    }

    html { scroll-behavior: auto; }

    body {
      background: var(--sky-deep);
      color: var(--text-primary);
      font-family: 'Outfit', system-ui, sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── NOISE OVERLAY (grain texture) ───────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 100;
      pointer-events: none;
      opacity: 0.055;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }
    /* Second noise layer, finer grain */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 101;
      pointer-events: none;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
      background-size: 96px 96px;
    }

    /* ─── STAR CANVAS ───────────────────────────────────── */
    #page-vignette {
      position: fixed;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background:
        radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(1,1,8,0.55) 100%),
        linear-gradient(to bottom, rgba(1,1,8,0.45) 0%, transparent 12%, transparent 88%, rgba(1,1,8,0.55) 100%),
        linear-gradient(to right, rgba(1,1,8,0.40) 0%, transparent 8%, transparent 92%, rgba(1,1,8,0.40) 100%);
    }

    #star-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* ─── NEBULA BLOBS ──────────────────────────────────── */
    .nebula {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      animation: nebula-drift 32s ease-in-out infinite alternate;
    }
    .nebula-a {
      width: 900px; height: 650px;
      top: -180px; left: -280px;
      background: radial-gradient(ellipse at 40% 40%, rgba(72, 28, 140, 0.28), rgba(40, 10, 100, 0.12) 50%, transparent 80%);
      filter: blur(70px);
      animation-delay: 0s;
    }
    .nebula-b {
      width: 750px; height: 750px;
      top: 35%; right: -200px;
      background: radial-gradient(ellipse at 60% 50%, rgba(15, 50, 160, 0.24), rgba(5, 25, 90, 0.10) 50%, transparent 80%);
      filter: blur(80px);
      animation-delay: -12s;
    }
    .nebula-c {
      width: 600px; height: 500px;
      bottom: 8%; left: 15%;
      background: radial-gradient(ellipse at 50% 60%, rgba(120, 40, 60, 0.13), transparent 70%);
      filter: blur(60px);
      animation-delay: -22s;
    }
    .nebula-d {
      width: 500px; height: 400px;
      top: 55%; left: 35%;
      background: radial-gradient(ellipse at 50% 50%, rgba(30, 80, 140, 0.14), transparent 70%);
      filter: blur(90px);
      animation-delay: -7s;
    }
    .nebula-e {
      width: 900px; height: 600px;
      top: 0; left: -10%;
      background: radial-gradient(ellipse at 40% 50%, rgba(60, 40, 100, 0.12), transparent 75%);
      filter: blur(100px);
      animation: nebula-drift-alt 35s ease-in-out infinite alternate;
    }
    .nebula-f {
      width: 700px; height: 500px;
      bottom: -5%; right: -5%;
      background: radial-gradient(ellipse at 60% 40%, rgba(40, 80, 120, 0.10), transparent 70%);
      filter: blur(90px);
      animation: nebula-drift-alt 40s ease-in-out infinite alternate-reverse;
    }
    .nebula-g {
      width: 600px; height: 450px;
      top: 40%; left: 60%;
      background: radial-gradient(ellipse at 50% 60%, rgba(80, 40, 80, 0.09), transparent 70%);
      filter: blur(80px);
      animation: nebula-drift 45s ease-in-out infinite alternate;
      animation-delay: -20s;
    }
    @keyframes nebula-drift {
      0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
      100% { transform: translate(24px, 18px) scale(1.05) rotate(2deg); }
    }
    @keyframes nebula-drift-alt {
      0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
      50%  { transform: translate(15px, 10px) scale(1.03); opacity: 1; }
      100% { transform: translate(-10px, 20px) scale(1.02); opacity: 0.85; }
    }
    @keyframes nebula-drift-slow {
      0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
      100% { transform: translate(30px, 25px) scale(1.08); opacity: 0.9; }
    }

    /* ─── LAYOUT ────────────────────────────────────────── */
    .page-wrap {
      position: relative;
      z-index: 1;
    }

    section {
      position: relative;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ─── NAV ───────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 60;
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(to bottom, rgba(3, 4, 13, 0.85) 0%, transparent 100%);
      backdrop-filter: blur(0px);
      transition: background 0.4s ease, backdrop-filter 0.4s ease;
    }
    nav.scrolled {
      background: rgba(5, 6, 18, 0.82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--divider);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.25rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--text-primary);
      text-decoration: none;
    }
    .nav-logo span { color: var(--accent); }
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.25s ease;
    }
    .nav-links a:hover { color: var(--text-primary); }

    /* ─── MOBILE NAV TOGGLE ──────────────────────────────── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 60;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text-primary);
      border-radius: 1px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 55;
      background: rgba(3, 4, 13, 0.95);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      cursor: pointer;
    }
    .nav-overlay.open { display: flex; }
    .nav-overlay a {
      color: var(--text-primary);
      text-decoration: none;
      font-size: 1.4rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-family: 'Outfit', system-ui, sans-serif;
      font-weight: 300;
      transition: color 0.2s;
    }
    .nav-overlay a:hover { color: var(--accent); }

    /* ─── HERO ──────────────────────────────────────────── */
    #hero {
      min-height: 100dvh;
      display: flex;
      align-items: center;
      padding: 100px 0 80px;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .hero-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .hero-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      padding: 6px 14px;
      border: 1px solid rgba(167, 139, 202, 0.25);
      border-radius: 2px;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(3rem, 5.5vw, 4.8rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--text-primary);
      margin-bottom: 28px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--accent);
    }
    .hero-subline {
      display: block;
      font-family: 'Outfit', system-ui, sans-serif;
      font-size: 0.45em;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-top: 14px;
    }
    .hero-desc {
      font-size: 1.05rem;
      color: var(--text-secondary);
      line-height: 1.75;
      max-width: 55ch;
      margin-bottom: 44px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: var(--accent);
      color: #fff;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      border-radius: 3px;
      border: none;
      cursor: pointer;
      transition: opacity 0.25s ease;
    }
    .btn-primary:hover { opacity: 0.88; }
    .btn-primary:not(.magnetic-active):active { transform: translateY(0) scale(0.98); }
    .btn-primary.btn-plain {
      gap: 0;
      justify-content: center;
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-size: 0.88rem;
      text-decoration: none;
      letter-spacing: 0.04em;
      border: 1.5px solid rgba(167,139,202,0.4);
      padding: 13px 22px;
      border-radius: 3px;
      transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
      background: rgba(167,139,202,0.08);
    }
    .btn-ghost:hover { color: #fff; border-color: var(--accent); background: rgba(167,139,202,0.18); }
    .btn-ghost svg { opacity: 0.7; }

    /* Hero cover art */
    .hero-visual {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: var(--text-secondary);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.85;
      animation: scroll-bounce 2.2s ease-in-out infinite;
      text-decoration: none;
      transition: opacity 0.3s ease, color 0.3s ease;
    }
    .scroll-indicator:hover {
      opacity: 1;
      color: var(--accent);
    }
    .scroll-indicator svg {
      width: 28px;
      height: 28px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
    }
    @keyframes scroll-bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }
    .cover-wrap {
      position: relative;
      width: 280px;
      height: 280px;
    }
    .cover-glow {
      position: absolute;
      inset: -40px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(167, 139, 202, 0.16), transparent 70%);
      animation: cover-pulse 5s ease-in-out infinite alternate;
    }
    @keyframes cover-pulse {
      0%   { opacity: 0.6; transform: scale(0.97); }
      100% { opacity: 1;   transform: scale(1.03); }
    }
    .cover-img {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px var(--glass-border),
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(167, 139, 202, 0.10);
    }
    .cover-img canvas {
      width: 100%;
      height: 100%;
      display: block;
    }
    /* Listening platforms strip */
    .platforms {
      margin-top: 52px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .platforms-label {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-right: 8px;
    }
    .platform-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border: 1px solid var(--divider);
      border-radius: 100px;
      font-size: 0.8rem;
      color: var(--text-secondary);
      transition: border-color 0.25s, color 0.25s;
      cursor: default;
    }
    .platform-pill:hover { border-color: rgba(167,139,202,0.4); color: var(--text-primary); }
    .platform-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
    /* Platform brand colors on hover */
    .platform-pill:hover svg { color: inherit; }
    .platform-pill:nth-child(2) svg { color: #fa57c1; } /* Apple */
    .platform-pill:nth-child(3) svg { color: #1db954; } /* Spotify */
    .platform-pill:nth-child(4) svg { color: #ff0000; } /* YouTube */

    /* Hero audio player */
    .hero-player {
      margin-top: 28px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--glass-border);
      border-radius: 6px;
      max-width: 380px;
    }
    .play-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--glass-border);
      background: rgba(167, 139, 202, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.25s ease, transform 0.15s ease;
      color: var(--text-primary);
    }
    .play-btn:hover { background: rgba(167, 139, 202, 0.28); }
    .play-btn:active { transform: scale(0.96); }
    .play-btn svg { width: 14px; height: 14px; }
    .play-btn .pause-icon { display: none; }
    .play-btn.playing .play-icon { display: none; }
    .play-btn.playing .pause-icon { display: block; }
    .wave-bar {
      width: 3px;
      height: 16px;
      background: var(--accent);
      opacity: 0.4;
      border-radius: 1px;
      /* animation disabled for test */
    }
    .wave-bar:nth-child(2) { animation-delay: 0.1s; }
    .wave-bar:nth-child(3) { animation-delay: 0.2s; }
    .wave-bar:nth-child(4) { animation-delay: 0.3s; }
    .wave-bar:nth-child(5) { animation-delay: 0.4s; }
    .wave-bar:nth-child(6) { animation-delay: 0.5s; }
    .wave-bar:nth-child(7) { animation-delay: 0.6s; }
    .wave-bar:nth-child(8) { animation-delay: 0.7s; }
    .wave-bar:nth-child(9) { animation-delay: 0.8s; }
    .wave-bar:nth-child(10) { animation-delay: 0.9s; }
    .wave-bar:nth-child(11) { animation-delay: 1.0s; }
    .wave-bar:nth-child(12) { animation-delay: 1.1s; }
    .hero-player:not(.playing) .wave-bar { animation-play-state: paused; opacity: 0.25; }
    @keyframes wave-pulse {
      0%, 100% { transform: scaleY(1); opacity: 0.4; }
      50% { transform: scaleY(2.2); opacity: 0.8; }
    }
    .player-time {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-left: 4px;
      font-variant-numeric: tabular-nums;
    }
    .player-hint {
      margin-top: 8px;
      font-size: 0.72rem;
      color: var(--text-muted);
      opacity: 0.7;
    }

    /* ─── DIVIDER ───────────────────────────────────────── */
    .section-divider {
      width: 1px;
      height: 80px;
      background: linear-gradient(to bottom, transparent, var(--divider), transparent);
      margin: 0 auto;
    }

    /* ─── ABOUT ─────────────────────────────────────────── */
    #about {
      padding: 100px 0;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 80px;
      align-items: start;
    }
    .about-left {}
    .section-label {
      font-size: 0.70rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-heading {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--text-primary);
    }
    .section-heading em { font-style: italic; color: var(--accent); }

    .about-right {}
    .about-body {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.85;
      max-width: 62ch;
      margin-bottom: 40px;
    }
    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      font-size: 0.92rem;
      color: var(--text-secondary);
    }
    .feature-list li::before {
      content: '';
      flex-shrink: 0;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
      margin-top: 8px;
      opacity: 0.7;
    }

    /* ─── EPISODES ──────────────────────────────────────── */
    #episodes {
      padding: 100px 0;
      border-top: 1px solid var(--divider);
    }
    .episodes-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
    }
    .episodes-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--divider);
      border: 1px solid var(--divider);
      border-radius: 6px;
      overflow: hidden;
    }
    .episode-card {
      background: var(--sky-deep);
      padding: 20px 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: background 0.25s ease;
      cursor: default;
    }
    .episode-card:hover {
      background: rgba(167, 139, 202, 0.05);
    }
    .episode-card:hover .ep-thumb { opacity: 1; }
    .ep-thumb {
      flex-shrink: 0;
      width: 110px;
      height: 110px;
      border-radius: 5px;
      overflow: hidden;
      opacity: 0.80;
      transition: opacity 0.25s ease;
      border: 1px solid var(--glass-border);
    }
    .ep-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .ep-number {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.0rem;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1;
      display: inline;
      margin-right: 6px;
    }
    .ep-info { flex: 1; min-width: 0; }
    .ep-title-row {
      display: block;
      margin-bottom: 7px;
      line-height: 1.4;
    }
    .ep-title {
      font-size: 0.95rem;
      color: var(--text-primary);
      font-weight: 400;
      line-height: 1.4;
      display: inline;
    }
    .ep-meta-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }
    .ep-category {
      font-size: 0.67rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      opacity: 0.75;
    }
    .ep-desc-text {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .ep-status {
      font-size: 0.70rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .ep-status .dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: currentColor;
      display: inline-block;
    }
    .ep-status .dot { background: var(--text-muted); }



    /* Episode detail button */
    .ep-detail-btn {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-decoration: none;
      margin-top: 10px;
      padding: 4px 0;
      transition: color 0.2s, gap 0.2s;
    }
    .ep-detail-btn:hover {
      color: #fff;
      gap: 6px;
    }

    /* Episode detail panel */
    .ep-detail {
      display: none;
      animation: ep-detail-in 0.4s ease;
    }
    .ep-detail.active {
      display: block;
    }
    @keyframes ep-detail-in {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .ep-detail-inner {
      position: relative;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 40px;
      margin-top: 16px;
      max-width: 800px;
    }
    .ep-detail-close {
      position: absolute;
      top: 16px; right: 20px;
      background: none; border: none;
      color: var(--text-secondary);
      font-size: 1.8rem;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }
    .ep-detail-close:hover { color: var(--text-primary); }
    .ep-detail-hero {
      display: flex;
      gap: 24px;
      margin-bottom: 28px;
      align-items: flex-start;
    }
    .ep-detail-img {
      width: 140px; height: 140px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .ep-detail-meta {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-top: 8px;
    }
    .ep-detail-number {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .ep-detail-category {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      padding: 3px 10px;
      border: 1px solid rgba(167,139,202,0.3);
      border-radius: 2px;
      display: inline-block;
      width: fit-content;
    }
    .ep-detail-perfect {
      font-size: 0.82rem;
      color: var(--text-secondary);
      font-style: italic;
    }
    .ep-detail-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 300;
      color: var(--text-primary);
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .ep-detail-hook {
      font-size: 0.92rem;
      color: var(--accent);
      line-height: 1.7;
      margin-bottom: 16px;
      border-left: 2px solid var(--accent);
      padding-left: 14px;
    }
    .ep-detail-desc {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 12px;
    }
    .ep-detail-learn {
      background: rgba(167,139,202,0.06);
      border: 1px solid rgba(167,139,202,0.12);
      border-radius: 8px;
      padding: 20px 24px;
      margin: 24px 0;
    }
    .ep-detail-learn-title {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .ep-detail-learn ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .ep-detail-learn li {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.7;
      padding: 4px 0 4px 20px;
      position: relative;
    }
    .ep-detail-learn li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-size: 0.8rem;
    }
    .ep-detail-related {
      margin: 24px 0;
    }
    .ep-detail-related-title {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .ep-detail-related-grid {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .ep-detail-related-card {
      font-size: 0.8rem;
      color: var(--text-secondary);
      text-decoration: none;
      padding: 6px 14px;
      border: 1px solid var(--glass-border);
      border-radius: 4px;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .ep-detail-related-card:hover {
      color: var(--accent);
      border-color: var(--accent);
      background: rgba(167,139,202,0.08);
    }
    .ep-detail-related-num {
      color: var(--accent);
      font-weight: 500;
      margin-right: 6px;
    }
    .ep-detail-actions {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--divider);
    }
    .ep-detail-listen-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: block;
      margin-bottom: 10px;
    }
    .ep-detail-listen {
      display: flex;
      flex-direction: column;
    }
    .ep-detail-listen-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.82rem;
      padding: 6px 0;
      transition: color 0.2s;
    }
    .ep-detail-listen-btn:hover {
      color: var(--accent);
    }
    .ep-detail-listen-btn svg {
      opacity: 0.6;
    }
    .ep-detail-share {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: 1px solid var(--glass-border);
      color: var(--text-secondary);
      font-size: 0.78rem;
      padding: 8px 16px;
      border-radius: 4px;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .ep-detail-share:hover {
      color: var(--accent);
      border-color: var(--accent);
      background: rgba(167,139,202,0.08);
    }
    .ep-detail-share.copied {
      color: #6f9;
      border-color: #6f9;
    }

    /* ─── FORMAT ────────────────────────────────────────── */
    #format {
      padding: 100px 0;
      border-top: 1px solid var(--divider);
    }
    .format-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .format-left .section-heading { margin-bottom: 20px; }
    .format-desc {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.8;
    }
    .format-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .format-step {
      display: flex;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--divider);
    }
    .format-step:last-child { border-bottom: none; }
    .step-num {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.8rem;
      font-weight: 300;
      color: rgba(167, 139, 202, 0.25);
      flex-shrink: 0;
      line-height: 1;
      min-width: 32px;
    }
    .step-body {}
    .step-title {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-primary);
      margin-bottom: 6px;
      letter-spacing: 0.02em;
    }
    .step-desc {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 45ch;
    }
    .step-duration {
      font-size: 0.72rem;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      margin-top: 6px;
    }

    /* ─── SUBSCRIBE CTA ─────────────────────────────────── */
    #subscribe {
      padding: 120px 0;
      border-top: 1px solid var(--divider);
      text-align: center;
    }
    .subscribe-inner {
      max-width: 600px;
      margin: 0 auto;
    }
    .subscribe-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--text-primary);
      margin-bottom: 20px;
    }
    .subscribe-title em { font-style: italic; color: var(--accent); }
    .subscribe-desc {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.75;
      max-width: 55ch;
      margin: 0 auto 44px;
      text-align: center;
    }
    .subscribe-platforms {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }
    .subscribe-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 12px 22px;
      border: 1px solid var(--divider);
      border-radius: 3px;
      font-size: 0.85rem;
      color: var(--text-secondary);
      text-decoration: none;
      transition: border-color 0.25s, color 0.25s, background 0.25s;
    }
    .subscribe-pill:hover {
      border-color: rgba(167,139,202,0.35);
      background: var(--accent-glow);
      color: var(--text-primary);
    }
    .subscribe-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
    .subscribe-note {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* ─── FOOTER ────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--divider);
      padding: 40px 0;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.1rem;
      color: var(--text-muted);
    }
    .footer-logo span { color: var(--accent); opacity: 0.8; }
    .footer-copy {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* ─── SCROLL ANIMATIONS ─────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.32s; }
    .fade-up-delay-4 { transition-delay: 0.44s; }

    /* ─── RESPONSIVE ────────────────────────────────────── */
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      nav { padding: 16px 20px; }
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .platforms { flex-direction: column; align-items: center; justify-content: center; flex-wrap: wrap; }
      .platforms-label { width: 100%; text-align: center; margin-bottom: 4px; }
      .platform-pill { justify-content: center; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-text { align-items: center; text-align: center; }
      .hero-text .hero-eyebrow { align-self: center; }
      .hero-text .hero-actions { justify-content: center; }
      .hero-visual { align-items: center; }
      .cover-wrap { width: 220px; height: 220px; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .episodes-grid { grid-template-columns: 1fr; }
      .format-inner { grid-template-columns: 1fr; gap: 48px; }
      .episodes-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .episodes-header p { text-align: left; }
      .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
      .subscribe-form { flex-direction: column; align-items: stretch; }
      .subscribe-form input { max-width: 100%; }
    }
    @media (max-width: 480px) {
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .hero-text { align-items: center; text-align: center; }
      .hero-text .hero-eyebrow { align-self: center; }
      .hero-text .hero-actions { justify-content: center; }
      .hero-visual { align-items: center; }
      .cover-wrap { width: 180px; height: 180px; }
      .hero-title { font-size: 2rem; }
      .section-heading { font-size: 1.5rem; }
      .nebula-a, .nebula-b, .nebula-c, .nebula-d, .nebula-e, .nebula-f, .nebula-g {
        transform: scale(0.5);
        transform-origin: center;
      }
      .platforms { flex-direction: column; align-items: center; justify-content: center; }
      .platforms-label { width: 100%; text-align: center; }
      .platform-pill { justify-content: center; }
    }
    .scroll-progress-bar {
      position: fixed; top: 0; left: 0; right: 0;
      height: 2px; z-index: 200;
      background: linear-gradient(90deg, var(--accent), var(--gold));
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 0.05s linear;
    }

    .magnetic-btn {
      transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
    }

    .episode-card-row {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .episode-card-row.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .subscribe-form {
      display: flex; gap: 12px; justify-content: center;
      margin-bottom: 40px;
    }
    .subscribe-form input {
      flex: 1; max-width: 300px; padding: 14px 20px;
      background: rgba(8,10,28,0.6); border: 1px solid var(--glass-border);
      border-radius: 10px; color: var(--text-primary);
      font-family: 'Outfit', system-ui, sans-serif; font-size: 0.9rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .subscribe-form input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(167,139,202,0.15);
    }
    .subscribe-form .btn {
      white-space: nowrap;
    }

