/* ============================================================
   Financieel Perspectief — Podcast landing page
   Built on the Vector Asset Management design system.
   Shared (pp-) + variation-specific (va- / vb- / vc-) styles.
   ============================================================ */

* { box-sizing: border-box; }

.pp-page {
  width: 1280px;
  background: var(--paper);
  font-family: var(--font-body);
  color: var(--fg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  position: relative;
}
.pp-page img { display: block; }

/* ---------- shared type ---------- */
.pp-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  margin: 0;
  color: var(--blue-600);
}
.pp-eyebrow--cyan { color: var(--cyan-400); }
.pp-eyebrow--mute { color: var(--slate-400); }

.pp-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-800);
  margin: 0;
}
.pp-lead {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--slate-500);
  margin: 14px 0 0;
  text-wrap: pretty;
}

/* ---------- buttons ---------- */
.pp-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-sm);
  padding: 13px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all var(--dur) var(--ease-out);
  white-space: nowrap;
}
.pp-btn svg { width: 18px; height: 18px; }
.pp-btn--primary { background: var(--grad-blue); color: #fff; box-shadow: 0 8px 20px rgba(10,110,230,0.30); }
.pp-btn--primary:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(10,110,230,0.38); }
.pp-btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.24); }
.pp-btn--ghost:hover { background: rgba(255,255,255,0.16); }
.pp-btn--navy { background: var(--navy-800); color: #fff; }
.pp-btn--navy:hover { background: var(--navy-700); transform: translateY(-1px); }
.pp-btn--secondary { background: var(--white); color: var(--navy-800); border-color: var(--border-2); }
.pp-btn--secondary:hover { background: var(--mist); border-color: var(--silver); }

/* ---------- nav ---------- */
.pp-nav {
  display: flex; align-items: center; gap: 28px;
  height: 70px; padding: 0 56px;
}
.pp-nav--dark { background: transparent; }
.pp-brand { display: flex; align-items: center; gap: 11px; }
.pp-brand img { height: 30px; width: auto; }
.pp-brand-word { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.07em; font-size: 19px; }
.pp-brand-div { width: 1px; height: 20px; opacity: 0.4; }
.pp-brand-show { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.pp-nav-links { display: flex; gap: 26px; margin-left: 14px; }
.pp-nav-links a { font-size: 14.5px; font-weight: 500; cursor: pointer; transition: color var(--dur); }
.pp-nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.pp-lang { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; display: flex; align-items: center; gap: 7px; }
.pp-lang b { font-weight: 600; }
.pp-lang i { width: 1px; height: 11px; display: inline-block; opacity: 0.4; }

.pp-nav--on-dark .pp-brand-word { color: #fff; }
.pp-nav--on-dark .pp-brand-div { background: #fff; }
.pp-nav--on-dark .pp-brand-show { color: var(--cyan-400); }
.pp-nav--on-dark .pp-nav-links a { color: rgba(255,255,255,0.78); }
.pp-nav--on-dark .pp-nav-links a:hover { color: #fff; }
.pp-nav--on-dark .pp-lang { color: rgba(255,255,255,0.6); }
.pp-nav--on-dark .pp-lang i { background: #fff; }

.pp-nav--on-light .pp-brand-word { color: var(--navy-800); }
.pp-nav--on-light .pp-brand-div { background: var(--navy-800); }
.pp-nav--on-light .pp-brand-show { color: var(--slate-400); }
.pp-nav--on-light .pp-nav-links a { color: var(--slate-600); }
.pp-nav--on-light .pp-nav-links a:hover { color: var(--navy-800); }
.pp-nav--on-light .pp-lang { color: var(--slate-400); }
.pp-nav--on-light .pp-lang i { background: var(--silver); }

/* ---------- section frame ---------- */
.pp-section { padding: 76px 56px; }
.pp-section-head { max-width: 620px; }

/* ============================================================
   PLAYER — inline play button + scrubber
   ============================================================ */
.pp-play {
  flex: none;
  width: 54px; height: 54px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-2);
  background: var(--white);
  color: var(--navy-800);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.pp-play svg { width: 20px; height: 20px; }
.pp-play:hover { border-color: var(--blue-400); color: var(--blue-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.pp-play.is-active { background: var(--grad-blue); border-color: transparent; color: #fff; box-shadow: 0 8px 20px rgba(10,110,230,0.34); }
.pp-play--lg { width: 72px; height: 72px; }
.pp-play--lg svg { width: 26px; height: 26px; }
.pp-play--sm { width: 44px; height: 44px; }
.pp-play--sm svg { width: 17px; height: 17px; }

/* equalizer bars when actually playing */
.pp-eq { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 18px; }
.pp-eq span { width: 3px; background: currentColor; border-radius: 2px; animation: ppeq 0.9s var(--ease-in-out) infinite; }
.pp-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.pp-eq span:nth-child(2) { height: 90%; animation-delay: 0.18s; }
.pp-eq span:nth-child(3) { height: 60%; animation-delay: 0.36s; }
.pp-eq span:nth-child(4) { height: 100%; animation-delay: 0.12s; }
@keyframes ppeq { 0%,100% { transform: scaleY(0.45); } 50% { transform: scaleY(1); } }

/* scrubber */
.pp-scrub { display: flex; align-items: center; gap: 12px; }
.pp-scrub-time { font-family: var(--font-mono); font-size: 12.5px; font-variant-numeric: tabular-nums; color: var(--slate-500); flex: none; min-width: 42px; }
.pp-scrub-time--end { text-align: right; }
.pp-track {
  flex: 1; height: 6px; border-radius: var(--r-pill);
  background: var(--cloud); position: relative; cursor: pointer; overflow: hidden;
}
.pp-track-fill { position: absolute; inset: 0 auto 0 0; background: var(--grad-blue); border-radius: var(--r-pill); width: 0; }
.pp-track--ondark { background: rgba(255,255,255,0.16); }

/* ============================================================
   EPISODE LIST (shared list style)
   ============================================================ */
.pp-eplist { display: flex; flex-direction: column; }
.pp-ep {
  display: grid;
  grid-template-columns: auto 64px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px 8px;
  border-top: 1px solid var(--border-1);
  transition: background var(--dur);
}
.pp-ep:last-child { border-bottom: 1px solid var(--border-1); }
.pp-ep.is-active { background: var(--white); }
.pp-ep-num { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--slate-400); letter-spacing: 0.04em; width: 28px; }
.pp-ep-main { min-width: 0; }
.pp-ep-title { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; letter-spacing: -0.01em; color: var(--navy-800); margin: 0 0 5px; }
.pp-ep-desc { font-size: 0.97rem; line-height: 1.5; color: var(--slate-500); margin: 0; max-width: 620px; text-wrap: pretty; }
.pp-ep-meta { display: flex; align-items: center; gap: 10px; margin-top: 11px; }
.pp-chip {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--slate-500); background: var(--mist);
  padding: 4px 9px; border-radius: var(--r-xs);
}
.pp-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--silver); }
.pp-ep-date { font-family: var(--font-mono); font-size: 12.5px; color: var(--slate-400); }
.pp-ep-side { display: flex; align-items: center; gap: 14px; }
.pp-ep-dur { font-family: var(--font-mono); font-size: 13px; color: var(--slate-500); font-variant-numeric: tabular-nums; }

/* inline expanded scrubber row */
.pp-ep-player { grid-column: 3 / -1; padding-top: 16px; }

/* ============================================================
   HOSTS
   ============================================================ */
.pp-hosts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pp-host { display: flex; flex-direction: column; gap: 16px; }
.pp-host-card {
  background: var(--white); border: 1px solid var(--border-1); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: all var(--dur) var(--ease-out);
}
.pp-host-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-300); }
.pp-mono {
  width: 64px; height: 64px; border-radius: var(--r-pill);
  background: var(--grad-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: 0.02em;
  position: relative; overflow: hidden; box-shadow: var(--shadow-navy);
}
.pp-mono::after { content: ""; position: absolute; inset: 0; background: var(--grad-glow); opacity: 0.6; }
.pp-host-name { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; color: var(--navy-800); margin: 18px 0 4px; }
.pp-host-role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--blue-600); text-transform: uppercase; margin: 0 0 12px; }
.pp-host-bio { font-size: 0.95rem; line-height: 1.55; color: var(--slate-500); margin: 0; text-wrap: pretty; }

/* ============================================================
   FOOTER
   ============================================================ */
.pp-foot { position: relative; overflow: hidden; background: var(--navy-ink); color: var(--fg-on-dark-2); }
.pp-foot-glow { position: absolute; width: 640px; height: 460px; left: 50%; top: -280px; transform: translateX(-50%); background: var(--grad-glow); opacity: 0.4; pointer-events: none; }
.pp-foot-inner { position: relative; padding: 56px 56px 30px; }
.pp-foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.pp-foot-sub { max-width: 360px; }
.pp-foot-sub p { font-size: 0.96rem; line-height: 1.55; color: var(--fg-on-dark-2); margin: 12px 0 18px; }
.pp-subscribe { display: flex; gap: 10px; flex-wrap: wrap; }
.pp-plat {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: #fff;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  padding: 9px 15px; border-radius: var(--r-pill); cursor: pointer; transition: background var(--dur);
}
.pp-plat:hover { background: rgba(255,255,255,0.14); }
.pp-plat svg { width: 16px; height: 16px; }
.pp-foot-disc { font-size: 11.5px; line-height: 1.6; color: var(--slate-400); max-width: 760px; margin: 26px 0 16px; }
.pp-foot-legal { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--slate-400); }

/* ============================================================
   VARIATION A — full-bleed classic
   ============================================================ */
.va-hero { position: relative; min-height: 620px; display: flex; flex-direction: column; }
.va-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.va-hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(6,12,24,0.92) 0%, rgba(6,12,24,0.78) 38%, rgba(10,20,40,0.30) 70%, rgba(10,20,40,0.10) 100%); }
.va-hero-scrim2 { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,12,24,0.55), rgba(6,12,24,0) 40%); }
.va-hero-body { position: relative; padding: 64px 56px 72px; margin-top: auto; max-width: 720px; }
.va-hero-title { font-family: var(--font-display); font-weight: 800; font-size: 4.2rem; line-height: 0.98; letter-spacing: -0.03em; color: #fff; margin: 18px 0 0; }
.va-hero-sub { font-size: 1.18rem; line-height: 1.55; color: rgba(255,255,255,0.82); max-width: 500px; margin: 20px 0 30px; }
.va-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.va-about { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 56px; align-items: center; }
.va-stats { display: flex; flex-direction: column; gap: 2px; }
.va-stat { display: flex; align-items: baseline; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-1); }
.va-stat:first-child { border-top: 1px solid var(--border-1); }
.va-stat-n { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--navy-800); letter-spacing: -0.02em; min-width: 96px; }
.va-stat-n span { color: var(--blue-500); font-size: 1.2rem; }
.va-stat-l { font-size: 0.96rem; color: var(--slate-500); }

/* ============================================================
   VARIATION B — split editorial
   ============================================================ */
.vb-hero { background: var(--grad-navy); position: relative; overflow: hidden; }
.vb-hero-glow { position: absolute; width: 620px; height: 620px; right: -180px; top: -200px; background: var(--grad-glow); pointer-events: none; }
.vb-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; position: relative; min-height: 560px; }
.vb-hero-copy { padding: 72px 48px 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.vb-hero-title { font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; line-height: 1.0; letter-spacing: -0.03em; color: #fff; margin: 16px 0 0; }
.vb-hero-sub { font-size: 1.1rem; line-height: 1.6; color: var(--fg-on-dark-2); margin: 18px 0 26px; max-width: 440px; }
.vb-hero-media { position: relative; }
.vb-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vb-hero-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 60px 0 60px -30px rgba(10,20,40,0.6); }
/* mini now-playing card */
.vb-now {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg); padding: 18px; display: flex; align-items: center; gap: 16px;
  max-width: 460px; backdrop-filter: blur(8px);
}
.vb-now-info { min-width: 0; flex: 1; }
.vb-now-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan-400); margin: 0 0 4px; }
.vb-now-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: #fff; margin: 0 0 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vb-feature { display: grid; grid-template-columns: 1fr; }
.vb-eptable { border-top: 1px solid var(--border-1); }

/* ============================================================
   VARIATION C — navy panel + featured episode
   ============================================================ */
.vc-hero { background: var(--grad-navy); position: relative; overflow: hidden; padding: 64px 56px 0; }
.vc-hero-glow { position: absolute; width: 700px; height: 700px; left: 50%; top: -300px; transform: translateX(-50%); background: var(--grad-glow); opacity: 0.7; pointer-events: none; }
.vc-hero-head { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.vc-hero-title { font-family: var(--font-display); font-weight: 800; font-size: 3.8rem; line-height: 1.0; letter-spacing: -0.03em; color: #fff; margin: 16px 0 14px; }
.vc-hero-sub { font-size: 1.12rem; line-height: 1.55; color: var(--fg-on-dark-2); margin: 0 auto; max-width: 520px; }
.vc-hero-frame { position: relative; max-width: 880px; margin: 40px auto 0; border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; box-shadow: var(--shadow-navy); border: 1px solid rgba(255,255,255,0.12); border-bottom: 0; }
.vc-hero-frame img { width: 100%; display: block; }
/* featured episode card */
.vc-feature {
  position: relative; margin: -64px 56px 0; z-index: 2;
  background: var(--white); border: 1px solid var(--border-1); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: 32px 36px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.vc-feature-main { min-width: 0; }
.vc-feature-title { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: -0.02em; color: var(--navy-800); margin: 8px 0 8px; }
.vc-feature-desc { font-size: 1rem; line-height: 1.55; color: var(--slate-500); margin: 0 0 18px; max-width: 560px; }
.vc-archive { display: flex; flex-direction: column; }
.vc-host-band { background: var(--grad-navy); position: relative; overflow: hidden; }
.vc-host-glow { position: absolute; width: 520px; height: 420px; right: -120px; bottom: -160px; background: var(--grad-glow); opacity: 0.5; }
.vc-host-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 26px; transition: all var(--dur) var(--ease-out); }
.vc-host-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.vc-host-card .pp-host-name { color: #fff; }
.vc-host-card .pp-host-role { color: var(--cyan-400); }
.vc-host-card .pp-host-bio { color: var(--fg-on-dark-2); }
.vc-host-card .pp-mono { background: rgba(255,255,255,0.1); box-shadow: none; }
.vc-host-card .pp-mono::after { opacity: 0.4; }
