/* =========================================================
   VERTICAL WORLD: Podcasts ("Broadcast Console")
   A dark, tactile mixing-desk world. Studio-black chassis +
   signal-amber (HOST) and live-teal (GUEST) split tracks +
   Space Grotesk silkscreen headlines. Scoped entirely under
   [data-vertical="podcasts"] so overriding the design tokens
   re-skins the shared header/footer/components automatically,
   and bespoke console sections layer on top.

   Discipline (per riskNotes + _mustFix):
   - Glow is reserved for genuinely live/interactive elements
     (CTA, REC dot, active channel), never a neon wash.
   - Peak-red is used ONLY for the REC dot and true clip/peak
     markers, never decoration.
   - Amber vs teal are ALWAYS paired with HOST/GUEST text labels
     so the split reads without relying on colour alone.
   - ONE hero interaction: the split-track channel switch
     (pure CSS :checked). Everything else is simple .reveal
     scroll-ins. No new JS.
   ========================================================= */
[data-vertical="podcasts"] {
  --bg:        #0E0F13;
  --bg-alt:    #171A21;
  --surface:   #1E222C;
  --ink:       #F4F1E9;
  --ink-soft:  #C3C7D0;
  --muted:     #8A8F9C;
  --line:      #2A2E39;
  --accent:    #F2A93B;
  --green:     #F2A93B;   /* fold brand-green into amber here */

  --amber:     #F2A93B;
  --amber-hi:  #FFC461;
  --teal:      #3FD8C0;
  --teal-hi:   #6FF0DC;
  --peak:      #E2504A;

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  color-scheme: dark;
  background: var(--bg);
}

/* Brushed-metal chassis + screen-grain over the whole world (CSS/SVG only) */
[data-vertical="podcasts"] body,
body[data-vertical="podcasts"] {
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(90deg, rgba(244,241,233,0.022) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(242,169,59,0.05), transparent 60%);
}
/* Fixed matte screen-grain overlay (tiny SVG turbulence data-URI, ~4%) */
[data-vertical="podcasts"] body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
}
/* keep the site header/footer + real content above the grain */
[data-vertical="podcasts"] .site-header,
[data-vertical="podcasts"] .site-footer,
[data-vertical="podcasts"] main,
[data-vertical="podcasts"] section { position: relative; z-index: 2; }

/* Space Grotesk display voice: machined, slightly condensed silkscreen */
[data-vertical="podcasts"] h1,
[data-vertical="podcasts"] h2,
[data-vertical="podcasts"] h3 {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -0.02em;
}
[data-vertical="podcasts"] h1 { letter-spacing: -0.035em; }
[data-vertical="podcasts"] .eyebrow {
  color: var(--amber); background: rgba(242,169,59,0.06);
  border-color: rgba(242,169,59,0.28);
  font-family: var(--font-display); font-weight: 500;
}

/* The theme world is fixed here, so retire the light/dark toggle */
[data-vertical="podcasts"] .theme-toggle { display: none; }

/* Header/footer sit on the desk: seam gets a lit-rail hairline */
[data-vertical="podcasts"] .site-header { background: rgba(14,15,19,0.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
[data-vertical="podcasts"] .site-header.is-scrolled { border-color: var(--amber); border-image: linear-gradient(90deg, transparent, rgba(242,169,59,0.55), rgba(63,216,192,0.4), transparent) 1; }
[data-vertical="podcasts"] .brand .logo { color: var(--amber); }

/* Mono/tabular readout helper (timecodes, meter values) via Inter tabular-nums */
[data-vertical="podcasts"] .readout {
  font-variant-numeric: tabular-nums; letter-spacing: 0.08em;
  font-feature-settings: "tnum" 1; color: var(--muted);
}

/* ============ Hardware CTA button (lit amber transport control) ======= */
[data-vertical="podcasts"] .btn--primary {
  background: linear-gradient(180deg, #F2A93B, #D98E22);
  color: #16110A; font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -2px 4px rgba(0,0,0,0.3), 0 0 0 1px rgba(242,169,59,0.5);
}
[data-vertical="podcasts"] .btn--primary:hover { background: linear-gradient(180deg, #FFC461, #F2A93B); box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 0 22px -4px rgba(242,169,59,0.7), 0 0 0 1px rgba(242,169,59,0.7); }
[data-vertical="podcasts"] .btn--ghost { border-color: rgba(63,216,192,0.35); color: var(--ink); }
[data-vertical="podcasts"] .btn--ghost:hover { background: rgba(63,216,192,0.08); border-color: var(--teal); }

/* NOTE: the shipped anchors carry class="btn btn-desk". The shared
   styles.css applies an animated-underline background to plain <a>
   via a high-specificity a:not(.btn)... rule; adding .btn opts the
   CTA out of it so this amber gradient wins. */
[data-vertical="podcasts"] a.btn-desk,
[data-vertical="podcasts"] .btn-desk {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: #16110A; padding: 15px 30px; border-radius: 8px;
  background: linear-gradient(180deg, #F2A93B, #D98E22);
  border: 1px solid rgba(255,196,97,0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -3px 6px rgba(0,0,0,0.28), 0 12px 26px -14px rgba(242,169,59,0.6), 0 0 26px -10px rgba(242,169,59,0.55);
  transition: transform .12s ease, box-shadow .2s ease;
}
[data-vertical="podcasts"] .btn-desk:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 16px 30px -12px rgba(242,169,59,0.7), 0 0 34px -8px rgba(242,169,59,0.75);
}
[data-vertical="podcasts"] .btn-desk:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 10px -8px rgba(242,169,59,0.5);
}
[data-vertical="podcasts"] .btn-desk .led { width: 8px; height: 8px; border-radius: 50%; background: #16110A; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4); }

/* Engraved rack-module surface helper */
[data-vertical="podcasts"] .module {
  background: linear-gradient(180deg, #232833, #1A1E27);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), inset 0 0 0 1px rgba(0,0,0,0.25), 0 20px 40px -30px rgba(0,0,0,0.8);
}

/* ============ REC status cluster (only true 'live' peak-red use) ====== */
.rec-cluster { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.rec-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  padding: 6px 12px; border-radius: 6px;
  background: rgba(226,80,74,0.08); border: 1px solid rgba(226,80,74,0.4);
}
.rec-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--peak); box-shadow: 0 0 10px rgba(226,80,74,0.9); animation: recPulse 2.4s ease-in-out infinite; }
.rec-time { font-variant-numeric: tabular-nums; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--muted); font-family: var(--font-display); }
@keyframes recPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ===================== HERO: the console + split timeline ============= */
.desk-hero { position: relative; padding: clamp(38px, 6vw, 76px) 0 clamp(44px, 6vw, 84px); overflow: hidden; }
.desk-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 12% 30%, rgba(242,169,59,0.12), transparent 70%),
    radial-gradient(ellipse 50% 60% at 88% 72%, rgba(63,216,192,0.10), transparent 70%);
}
.desk-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.desk-breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; font-family: var(--font-display); letter-spacing: 0.02em; }
.desk-breadcrumb a { color: var(--muted); }
.desk-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 5.4vw, 4.6rem); line-height: 1.0; letter-spacing: -0.035em;
  color: var(--ink); text-wrap: balance; margin-top: 12px;
}
.desk-title .plate {
  position: relative; white-space: nowrap; color: var(--ink);
  padding: 0 0.12em; margin: 0 0.02em;
  border-radius: 6px;
  background: linear-gradient(180deg, #262B36, #1C2029);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 0 0 1px var(--line), inset 0 -2px 5px rgba(0,0,0,0.4);
}
.desk-title .lit { color: var(--amber-hi); }
.desk-lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.6; margin: 22px 0 0; max-width: 44ch; }
.desk-cta-row { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.desk-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.desk-tag {
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 6px; padding: 6px 13px;
  background: rgba(30,34,44,0.6);
}
.desk-tag::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); margin-right: 8px; vertical-align: middle; box-shadow: 0 0 6px rgba(63,216,192,0.6); }

/* --- The signature object: shared timeline, two stacked waveforms --- */
.timeline-stage { position: relative; z-index: 1; }
.timeline-unit { padding: 20px clamp(16px, 2.4vw, 26px) 18px; }
.timeline-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.timeline-head .tl-label { font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.timeline-head .tl-ep { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink-soft); border: 1px solid var(--line); padding: 4px 10px; border-radius: 5px; }

/* Ruler with chapter ticks */
.tl-ruler { position: relative; height: 20px; margin: 0 2px 6px; border-bottom: 1px solid var(--line); }
.tl-ruler .tick { position: absolute; bottom: 0; width: 1px; height: 8px; background: var(--line); }
.tl-ruler .tick.major { height: 13px; background: var(--muted); }
.tl-ruler .tstamp { position: absolute; bottom: 100%; transform: translateX(-50%); margin-bottom: 2px; font-size: 0.62rem; color: var(--muted); font-variant-numeric: tabular-nums; letter-spacing: 0.04em; white-space: nowrap; }

/* Two tracks */
.tl-track { position: relative; display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 12px; padding: 10px 0; }
.tl-track + .tl-track { border-top: 1px solid var(--line); }
.tl-chan {
  font-family: var(--font-display); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 5px;
}
.tl-chan .chan-dot { width: 8px; height: 8px; border-radius: 50%; }
.tl-track--host .tl-chan { color: var(--amber); }
.tl-track--host .chan-dot { background: var(--amber); box-shadow: 0 0 8px rgba(242,169,59,0.7); }
.tl-track--guest .tl-chan { color: var(--teal); }
.tl-track--guest .chan-dot { background: var(--teal); box-shadow: 0 0 8px rgba(63,216,192,0.7); }
.tl-wave { position: relative; height: 46px; }
.tl-wave svg { display: block; width: 100%; height: 100%; }
.tl-track--host .tl-wave rect { fill: var(--amber); }
.tl-track--guest .tl-wave rect { fill: var(--teal); }

/* Playhead: one-shot sweep on load (transform only), then rests mid-line.
   .timeline-tracks has overflow:hidden so the sweep never causes h-scroll. */
.timeline-tracks { position: relative; overflow: hidden; }
.tl-playhead {
  position: absolute; top: 8px; bottom: 8px; left: 62px; width: 2px;
  background: linear-gradient(180deg, transparent, var(--ink), transparent);
  box-shadow: 0 0 10px rgba(244,241,233,0.5);
  z-index: 3; transform: translateX(0);
  animation: playheadSweep 3.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s both;
}
.tl-playhead::after { content: ""; position: absolute; top: -5px; left: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 10px rgba(244,241,233,0.7); }
@keyframes playheadSweep {
  0%   { transform: translateX(0); }
  92%  { transform: translateX(38vw); }
  100% { transform: translateX(38vw); }
}

/* Clip cards that pop above the tracks as the playhead passes */
.tl-clip {
  position: absolute; z-index: 4; padding: 7px 11px; border-radius: 7px;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--line); white-space: nowrap;
  opacity: 0; transform: translateY(6px);
  animation: clipPop .5s ease forwards;
  box-shadow: 0 10px 24px -14px rgba(0,0,0,0.8);
}
.tl-clip .tc { font-variant-numeric: tabular-nums; margin-right: 7px; }
.tl-clip--host { border-color: rgba(242,169,59,0.45); }
.tl-clip--host .tc { color: var(--amber); }
.tl-clip--guest { border-color: rgba(63,216,192,0.45); }
.tl-clip--guest .tc { color: var(--teal); }
.tl-clip--1 { top: 2px; left: 26%; animation-delay: 1.15s; }
.tl-clip--2 { top: 44%; left: 52%; animation-delay: 2.0s; }
.tl-clip--3 { top: 6px; left: 70%; animation-delay: 2.7s; }
@keyframes clipPop { to { opacity: 1; transform: translateY(0); } }

/* ===================== SIGNATURE 1: split-track engine (the interaction) */
.engine { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.engine-copy .eyebrow { margin-bottom: 16px; }
.engine-copy h2 { margin-bottom: 16px; }
.engine-copy p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.62; max-width: 46ch; }

/* the interactive console: a real physical channel switch (pure CSS) */
.switchboard { padding: clamp(20px, 2.6vw, 30px); }
.sb-input { position: absolute; opacity: 0; pointer-events: none; }
.sb-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.sb-title { font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* the physical toggle: two labels + a sliding knob */
.sb-switch {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #14171E; border: 1px solid var(--line); border-radius: 10px;
  padding: 4px; box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}
.sb-switch .sb-knob {
  position: absolute; top: 4px; bottom: 4px; left: 4px; width: calc(50% - 4px);
  border-radius: 7px; background: linear-gradient(180deg, #2A2F3B, #202531);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 10px -4px rgba(0,0,0,0.7);
  transition: transform .28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow .28s ease;
  z-index: 0;
}
.sb-switch label {
  position: relative; z-index: 1; text-align: center; cursor: pointer;
  padding: 11px 8px; font-family: var(--font-display); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: color .2s ease;
}
.sb-switch label .sw-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: 0.5; }
/* HOST selected (default) */
#sb-host:checked ~ .sb-switch .sb-knob { transform: translateX(0); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 18px -4px rgba(242,169,59,0.5); }
#sb-host:checked ~ .sb-switch label[for="sb-host"] { color: var(--amber); }
#sb-host:checked ~ .sb-switch label[for="sb-host"] .sw-dot { opacity: 1; box-shadow: 0 0 8px rgba(242,169,59,0.8); }
/* GUEST selected */
#sb-guest:checked ~ .sb-switch .sb-knob { transform: translateX(100%); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 18px -4px rgba(63,216,192,0.5); }
#sb-guest:checked ~ .sb-switch label[for="sb-guest"] { color: var(--teal); }
#sb-guest:checked ~ .sb-switch label[for="sb-guest"] .sw-dot { opacity: 1; box-shadow: 0 0 8px rgba(63,216,192,0.8); }

/* the shared waveform: one SVG, two colour channels cross-fade */
.sb-wave { position: relative; height: 90px; margin-bottom: 20px; }
.sb-wave svg { position: absolute; inset: 0; width: 100%; height: 100%; transition: opacity .35s ease; }
.sb-wave .wave-host rect { fill: var(--amber); }
.sb-wave .wave-guest rect { fill: var(--teal); }
#sb-host:checked  ~ .sb-wave .wave-host  { opacity: 1; }
#sb-host:checked  ~ .sb-wave .wave-guest { opacity: 0; }
#sb-guest:checked ~ .sb-wave .wave-host  { opacity: 0; }
#sb-guest:checked ~ .sb-wave .wave-guest { opacity: 1; }

/* reach caption swaps with the channel */
.sb-caption { border-top: 1px solid var(--line); padding-top: 18px; }
.sb-reach { display: none; }
.sb-reach .lbl { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; display: block; }
.sb-reach--host .lbl { color: var(--amber); }
.sb-reach--guest .lbl { color: var(--teal); }
.sb-reach p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; margin: 0; }
#sb-host:checked  ~ .sb-caption .sb-reach--host  { display: block; }
#sb-guest:checked ~ .sb-caption .sb-reach--guest { display: block; }
/* keyboard focus visibility on the labels */
.sb-input:focus-visible ~ .sb-switch { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ===================== SIGNATURE 2: transcript-to-clip strip ========== */
.t2c { display: grid; grid-template-columns: 1fr 320px; gap: clamp(24px, 3.4vw, 52px); align-items: center; }
.transcript { display: grid; gap: 3px; }
.tline { display: grid; grid-template-columns: 58px 66px 1fr; gap: 12px; align-items: baseline; padding: 9px 12px; border-radius: 8px; font-family: var(--font-sans); }
.tline .spk { font-family: var(--font-display); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.tline .tc { font-variant-numeric: tabular-nums; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }
.tline .txt { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; }
.tline--host .spk { color: var(--amber); }
.tline--guest .spk { color: var(--teal); }
.tline.is-pulled { position: relative; }
.tline--host.is-pulled { background: rgba(242,169,59,0.10); box-shadow: inset 0 0 0 1px rgba(242,169,59,0.3); }
.tline--host.is-pulled .txt { color: var(--ink); }
.tline--guest.is-pulled { background: rgba(63,216,192,0.10); box-shadow: inset 0 0 0 1px rgba(63,216,192,0.3); }
.tline--guest.is-pulled .txt { color: var(--ink); }

/* connector rail + the 9:16 clip card */
.t2c-out { position: relative; }
.t2c-connector { position: absolute; left: -26px; top: 12%; bottom: 12%; width: 26px; pointer-events: none; }
.t2c-connector svg { width: 100%; height: 100%; overflow: visible; }
.clip916 {
  position: relative; aspect-ratio: 9 / 16; max-height: 420px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(170deg, #20242F, #14171E);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,255,255,0.03);
  display: flex; flex-direction: column;
}
.clip916-top { flex: 1; position: relative; display: flex; align-items: flex-end; padding: 18px; }
.clip916-top::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(242,169,59,0.16), transparent 60%);
}
.clip916-badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); background: rgba(242,169,59,0.1); border: 1px solid rgba(242,169,59,0.35); padding: 4px 8px; border-radius: 5px; }
.clip916-cap { position: relative; z-index: 2; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.15; color: var(--ink); text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.clip916-cap .hl { color: var(--amber-hi); }
.clip916-foot { flex: none; height: 40px; padding: 0 14px; display: flex; align-items: center; border-top: 1px solid var(--line); background: rgba(0,0,0,0.25); }
.clip916-foot svg { width: 100%; height: 20px; }
.clip916-foot rect { fill: var(--amber); opacity: 0.85; }

/* ===================== SIGNATURE 3: VU meter stat rack ================ */
.vu-rack { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vu-strip { padding: 22px 20px 20px; display: flex; flex-direction: column; gap: 14px; }
.vu-strip .vu-eyebrow { font-family: var(--font-display); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.vu-strip .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 3.6vw, 3rem); color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1; }
.vu-strip .vu-label { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.35; }
/* the meter itself: fills on scroll-reveal via width transition */
.vu-meter { position: relative; height: 10px; border-radius: 5px; background: #14171E; overflow: hidden; box-shadow: inset 0 1px 3px rgba(0,0,0,0.6); border: 1px solid var(--line); }
.vu-fill {
  position: absolute; inset: 0; width: 0;
  background: linear-gradient(90deg, var(--amber), var(--amber-hi));
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.vu-strip.is-visible .vu-fill { width: var(--vu, 82%); }
/* the '1 day' strip reads like a fast-attack meter that slams to full */
.vu-strip--attack .vu-fill { background: linear-gradient(90deg, var(--teal), var(--teal-hi)); }
.vu-strip.vu-strip--attack.is-visible .vu-fill { width: 100%; transition: width .5s cubic-bezier(0.5, 0, 0.2, 1); }
.vu-strip--attack .num { color: var(--teal); }
/* meter peak segments (engraved notches) */
.vu-meter::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: repeating-linear-gradient(90deg, transparent 0 13px, rgba(14,15,19,0.7) 13px 15px); }

/* ===================== SIGNATURE 4: signal-chain patchbay ============= */
.patchbay { position: relative; }
.patch-flow { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: center; }
.patch-node {
  position: relative; z-index: 2; text-align: center; padding: 16px 12px; border-radius: 10px;
  background: linear-gradient(180deg, #232833, #1A1E27); border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.patch-node .jack { width: 22px; height: 22px; border-radius: 50%; margin: 0 auto 10px; background: radial-gradient(circle at 40% 35%, #3A404E, #14171E); border: 1px solid var(--line); box-shadow: inset 0 2px 4px rgba(0,0,0,0.6); }
.patch-node .pn-label { font-family: var(--font-display); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); line-height: 1.2; }
.patch-node .pn-sub { display: block; margin-top: 4px; font-size: 0.66rem; color: var(--muted); letter-spacing: 0.02em; text-transform: none; font-family: var(--font-sans); }
.patch-node--split { border-color: rgba(242,169,59,0.35); box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 0 22px -12px rgba(242,169,59,0.6); }
.patch-node--split .jack { border-color: rgba(242,169,59,0.5); }

/* the two diverging outputs (host + guest) */
.patch-splits { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 14px; }
.patch-out { grid-column: 4 / 6; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.patch-out .patch-node--host { border-color: rgba(242,169,59,0.4); }
.patch-out .patch-node--host .pn-label { color: var(--amber); }
.patch-out .patch-node--host .jack { border-color: rgba(242,169,59,0.6); box-shadow: inset 0 2px 4px rgba(0,0,0,0.6), 0 0 12px -4px rgba(242,169,59,0.7); }
.patch-out .patch-node--guest { border-color: rgba(63,216,192,0.4); }
.patch-out .patch-node--guest .pn-label { color: var(--teal); }
.patch-out .patch-node--guest .jack { border-color: rgba(63,216,192,0.6); box-shadow: inset 0 2px 4px rgba(0,0,0,0.6), 0 0 12px -4px rgba(63,216,192,0.7); }

/* patch cables SVG overlay */
.patch-cables { position: absolute; inset: 0; z-index: 1; pointer-events: none; width: 100%; height: 100%; overflow: visible; }
.patch-cables path { fill: none; stroke-width: 2.5; stroke-linecap: round; }
.patch-cables .cable-host { stroke: var(--amber); opacity: 0.7; }
.patch-cables .cable-guest { stroke: var(--teal); opacity: 0.7; }
.patch-cables .cable-main { stroke: var(--muted); opacity: 0.5; }
/* signal pulse travelling the cables on reveal (dash animation) */
.patch-flow.is-visible .patch-cables .pulse { animation: cablePulse 2.4s linear infinite; }
.patch-cables .pulse { stroke-dasharray: 10 260; stroke-dashoffset: 270; }
@keyframes cablePulse { to { stroke-dashoffset: 0; } }

/* ===================== SIGNATURE 5: now-playing transport CTA ========= */
.transport {
  position: relative; overflow: hidden;
  border-radius: 18px; padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  background: linear-gradient(180deg, #232833, #14171E);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -40px rgba(0,0,0,0.9);
}
.transport::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 90% at 20% 0%, rgba(242,169,59,0.1), transparent 60%), radial-gradient(ellipse 60% 90% at 90% 100%, rgba(63,216,192,0.08), transparent 60%); }
.transport-inner { position: relative; z-index: 1; }
.transport-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.transport-now { display: flex; align-items: center; gap: 14px; }
.transport-play { width: 52px; height: 52px; border-radius: 50%; flex: none; display: grid; place-items: center; background: linear-gradient(180deg, #F2A93B, #D98E22); color: #16110A; box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 0 24px -8px rgba(242,169,59,0.7); }
.transport-play svg { width: 20px; height: 20px; }
.transport-meta .tm-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.transport-meta .tm-sub { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.transport-chans { display: flex; align-items: center; gap: 16px; }
.transport-chan { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.transport-chan .cd { width: 9px; height: 9px; border-radius: 50%; }
.transport-chan--host .cd { background: var(--amber); box-shadow: 0 0 8px rgba(242,169,59,0.7); }
.transport-chan--guest .cd { background: var(--teal); box-shadow: 0 0 8px rgba(63,216,192,0.7); }

/* scrubber (static; rests at ~62%, not faux-interactive to honour de-scope) */
.transport-scrub { position: relative; height: 8px; border-radius: 4px; background: #14171E; box-shadow: inset 0 1px 3px rgba(0,0,0,0.6); margin-bottom: 10px; }
.transport-scrub .scrub-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 62%; border-radius: 4px; background: linear-gradient(90deg, var(--amber), var(--amber-hi)); }
.transport-scrub .scrub-head { position: absolute; top: 50%; left: 62%; width: 16px; height: 16px; border-radius: 50%; transform: translate(-50%, -50%); background: var(--ink); box-shadow: 0 0 12px rgba(244,241,233,0.5), 0 2px 6px rgba(0,0,0,0.6); }
.transport-times { display: flex; justify-content: space-between; font-variant-numeric: tabular-nums; font-size: 0.74rem; color: var(--muted); letter-spacing: 0.06em; font-family: var(--font-display); margin-bottom: 26px; }
.transport-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.transport-cta h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); color: var(--ink); max-width: 20ch; }
.transport-cta p { color: var(--ink-soft); margin-top: 8px; max-width: 42ch; }

/* ===================== deliverables (console module grid) ============= */
.deck { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.deck-mod { padding: 26px; display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; }
.deck-mod .deck-icon { width: 48px; height: 48px; border-radius: 12px; flex: none; display: grid; place-items: center; color: var(--amber); background: rgba(242,169,59,0.1); border: 1px solid rgba(242,169,59,0.25); }
.deck-mod h3 { font-size: 1.06rem; margin-bottom: 7px; color: var(--ink); }
.deck-mod p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* ===================== takeaways strip ================================ */
.pod-takeaways { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.take {
  position: relative; padding: 22px 24px 22px 26px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line);
}
.take::before { content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--amber), var(--teal)); }
.take p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); line-height: 1.55; }

/* ===================== reused components, re-skinned ================== */
[data-vertical="podcasts"] .card { background: var(--surface); border-color: var(--line); }
[data-vertical="podcasts"] .card:hover { border-color: rgba(242,169,59,0.4); transform: translateY(-2px); }
[data-vertical="podcasts"] .card h3 { color: var(--ink); }
[data-vertical="podcasts"] .compare { background: var(--surface); }
[data-vertical="podcasts"] .compare-row { border-color: var(--line); }
[data-vertical="podcasts"] .compare-row .ours { background: rgba(242,169,59,0.09); color: var(--ink); }
[data-vertical="podcasts"] .compare-row.head > div { background: var(--bg-alt); color: var(--muted); font-family: var(--font-display); }
[data-vertical="podcasts"] .check-card h3 { color: var(--ink); font-family: var(--font-display); }
[data-vertical="podcasts"] .check-mark { background: rgba(242,169,59,0.14); color: var(--amber); }
[data-vertical="podcasts"] .check-mark--no { background: rgba(226,80,74,0.14); color: var(--peak); }
[data-vertical="podcasts"] .faq-item { background: var(--surface); border-color: var(--line); }
[data-vertical="podcasts"] .faq-item[open] { border-color: var(--amber); }
[data-vertical="podcasts"] .faq-item summary { color: var(--ink); font-family: var(--font-display); }
[data-vertical="podcasts"] .faq-item[open] summary { color: var(--amber); }
[data-vertical="podcasts"] .faq-item .answer { color: var(--ink-soft); }
[data-vertical="podcasts"] .section--alt { background: var(--bg-alt); }

/* fit/anti-fit column headers */
[data-vertical="podcasts"] .fit-head { font-family: var(--font-display); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
[data-vertical="podcasts"] .fit-head--yes { color: var(--amber); }
[data-vertical="podcasts"] .fit-head--no { color: var(--muted); }

/* ===================== responsive ===================================== */
@media (max-width: 960px) {
  .desk-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-stage { order: 2; }
  .engine { grid-template-columns: 1fr; }
  .t2c { grid-template-columns: 1fr; }
  .t2c-out { max-width: 300px; margin: 0 auto; }
  .t2c-connector { display: none; }
  .vu-rack { grid-template-columns: repeat(2, 1fr); }
  .patch-flow { grid-template-columns: 1fr; gap: 10px; }
  .patch-cables { display: none; }
  .patch-splits { grid-template-columns: 1fr; }
  .patch-out { grid-column: 1; grid-template-columns: 1fr 1fr; }
  .deck, .pod-takeaways { grid-template-columns: 1fr; }
  .tl-playhead { animation-name: playheadSweepSm; }
  @keyframes playheadSweepSm { 0% { transform: translateX(0); } 92%, 100% { transform: translateX(60vw); } }
}
@media (max-width: 560px) {
  .vu-rack { grid-template-columns: 1fr; }
  .tl-track { grid-template-columns: 50px 1fr; gap: 8px; }
  .tl-playhead { left: 50px; }
  .transport-top { flex-direction: column; align-items: flex-start; }
}

/* ===================== reduced motion ================================= */
@media (prefers-reduced-motion: reduce) {
  .tl-playhead {
    animation: none !important;
    transform: translateX(34vw) !important;
    opacity: 0.35 !important;
  }
  .tl-clip { animation: none !important; opacity: 1 !important; transform: none !important; }
  .rec-dot { animation: none !important; }
  .sb-switch .sb-knob, .sb-wave svg { transition: none !important; }
  .vu-fill { transition: none !important; }
  .vu-strip .vu-fill { width: var(--vu, 82%) !important; }
  .vu-strip--attack .vu-fill { width: 100% !important; }
  .patch-cables .pulse { animation: none !important; stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
}


/* =========================================================
   FINAL-SCAN FIXES (shared-shell chrome pinned to this world)
   Counters the homepage blue "cohesion" layer, theme-dependent
   logo/wordmark/curtain, and hover overlays from css/styles.css
   so the page renders identically under any saved data-theme.
   ========================================================= */
[data-vertical="podcasts"] img.logo { content: url("../assets/logo-dark.svg"); }
[data-vertical="podcasts"] .footer-mark { color: rgba(244,241,233,0.06); }
[data-vertical="podcasts"] { scrollbar-color: rgba(255,255,255,0.25) transparent; }
[data-vertical="podcasts"] .intro-curtain { background: #0E0F13; }
[data-vertical="podcasts"] .intro-curtain .ic-mark { color: var(--ink); }
[data-vertical="podcasts"] .intro-curtain .ic-tag { color: rgba(255,255,255,0.45); }

html[data-vertical="podcasts"] section:not(.hero) .eyebrow {
  background: rgba(242,169,59,0.08);
  border-color: rgba(242,169,59,0.25);
}
html[data-vertical="podcasts"] section:not(.hero) .eyebrow:has(+ h1)::before,
html[data-vertical="podcasts"] section:not(.hero) .eyebrow:has(+ h2)::before {
  box-shadow: 0 0 8px rgba(242,169,59,0.55);
}

[data-vertical="podcasts"] .card::before { background: linear-gradient(90deg, #F2A93B 0%, #FFC461 100%) !important; }
[data-vertical="podcasts"] .card:hover {
  border-color: rgba(242,169,59,0.45) !important;
  box-shadow: 0 18px 40px -20px rgba(242,169,59,0.32) !important;
}
[data-vertical="podcasts"] .card:hover .card-icon {
  background: linear-gradient(135deg, #F2A93B, #FFC461) !important;
  color: #16110A !important;
  box-shadow: 0 6px 16px -6px rgba(242,169,59,0.55);
}
[data-vertical="podcasts"] .card p { color: var(--ink-soft); }
[data-vertical="podcasts"] .step:hover { border-color: rgba(242,169,59,0.4); box-shadow: 0 14px 32px -18px rgba(242,169,59,0.35); }
[data-vertical="podcasts"] .faq-item[open] { border-color: rgba(242,169,59,0.4) !important; background: rgba(242,169,59,0.04); }
[data-vertical="podcasts"] .section--alt::before { background-image: radial-gradient(rgba(242,169,59,0.10) 1px, transparent 1px); }
[data-vertical="podcasts"] .footer-social a:hover { background: rgba(242,169,59,0.1); border-color: rgba(242,169,59,0.45); }
[data-vertical="podcasts"] .glow-card::after {
  background: radial-gradient(300px circle at var(--gx, 50%) var(--gy, 50%), rgba(242,169,59,0.5), rgba(242,169,59,0.1) 45%, transparent 70%);
}
[data-vertical="podcasts"] .compare-row:not(.head):hover { background: rgba(255,255,255,0.03); }
[data-vertical="podcasts"] .compare-row:not(.head):hover .ours { background: rgba(242,169,59,0.14); }
[data-vertical="podcasts"] .btn--ghost::before { background: transparent; }
[data-vertical="podcasts"] .btn--ghost:hover { color: var(--ink); }
[data-vertical="podcasts"] .btn--primary::before { content: none; }
[data-vertical="podcasts"] .btn--primary:hover { color: #16110A; }
[data-vertical="podcasts"] .check-mark--no { color: #e57373; }
body.has-curtain .tl-playhead { animation-play-state: paused; }
