/* ── TOKENS ── */
:root {
  --ink:    #0d1520;
  --paper:  #f5f2ec;
  --mid:    #c8d0dc;
  --muted:  #6b8299;
  --accent: #3a7ab5;
  --white:  #fdfcfa;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
.dir-a-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 1.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dir-a-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.dir-a-nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.dir-a-nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.dir-a-nav-links a:hover { color: #fff; }
.dir-a-nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  padding: 0.6rem 1.75rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.dir-a-nav-cta:hover { opacity: 0.88; }

/* ── HERO ── */
.dir-a-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.dir-a-photo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 72% 32%, #1a3a5a 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 18% 72%, #1a3a10 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 88% 68%, #3a1a08 0%, transparent 45%),
    linear-gradient(160deg, #0a0e18 0%, #0d1520 40%, #0f1a10 70%, #0c1008 100%);
}
.dir-a-scene {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.dir-a-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,12,8,0.92) 0%,
    rgba(10,12,8,0.45) 38%,
    transparent 68%);
}
.dir-a-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw 5vh;
}
.dir-a-edition {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.dir-a-edition span { display: flex; align-items: center; gap: 0.6rem; }
.dir-a-edition span::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.dir-a-edition span:first-child::before { display: none; }
.dir-a-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(5rem, 12.5vw, 13.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2.5rem;
}
.dir-a-headline .line2 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
}
.dir-a-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
.dir-a-tagline {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.dir-a-roles {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  line-height: 2;
}
.dir-a-cta-group { display: flex; gap: 1rem; flex-shrink: 0; }
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  padding: 1rem 2.75rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 1rem 1.75rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-condensed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.section-label.light { color: rgba(255,255,255,0.3); }

/* ── ABOUT (cream) ── */
.dir-a-body { background: var(--paper); color: var(--ink); }
.dir-a-about {
  padding: 7rem 5vw;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}
.dir-a-intro-left h2 {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.dir-a-intro-left h2 em { font-style: italic; }
.dir-a-intro-left p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}
.dir-a-fact-stack {}
.dir-a-fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--mid);
  align-items: baseline;
}
.dir-a-fact:first-child { border-top: 1px solid var(--mid); }
.dir-a-fact-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dir-a-fact-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: #777;
  line-height: 1.55;
}
.dir-a-fact-text strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

/* ── TRACKS (dark) ── */
.dir-a-tracks-section {
  background: var(--ink);
  padding: 7rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.dir-a-tracks-inner { max-width: 1300px; margin: 0 auto; }
.dir-a-tracks-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dir-a-tracks-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #fff;
}
.dir-a-tracks-title .ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}
.dir-a-tracks-note {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  max-width: 320px;
  line-height: 1.65;
  text-align: right;
}
.dir-a-track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.dir-a-track {
  background: var(--ink);
  padding: 2.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.dir-a-track:hover { background: #121d2a; }
.dir-a-track::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.dir-a-track:hover::before { transform: scaleX(1); }
.dir-a-track-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.dir-a-track-title {
  font-family: 'Newsreader', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.dir-a-track-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

/* ── THREE-TIER (cream) ── */
.tiers-section {
  background: var(--paper);
  color: var(--ink);
  padding: 7rem 5vw;
  border-top: 1px solid var(--mid);
}
.tiers-inner { max-width: 1300px; margin: 0 auto; }
.tiers-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--mid);
}
.tiers-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}
.tiers-title em { font-style: italic; color: var(--accent); }
.tiers-note {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.75;
  text-align: right;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mid);
}
.tier-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.2s;
}
.tier-card:hover { background: var(--paper); }
.tier-card.featured { background: var(--ink); }
.tier-card.featured:hover { background: #121d2a; }
.tier-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--mid);
  position: absolute;
  top: 1.5rem; right: 2rem;
  letter-spacing: -0.03em;
  user-select: none;
}
.tier-card.featured .tier-num { color: rgba(255,255,255,0.05); }
.tier-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.tier-name {
  font-family: 'Newsreader', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.tier-card.featured .tier-name { color: #fff; }
.tier-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.tier-card.featured .tier-sub { color: rgba(255,255,255,0.3); }
.tier-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
  margin-bottom: 1.75rem;
}
.tier-card.featured .tier-desc { color: rgba(255,255,255,0.45); }
.tier-facts {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid var(--mid);
  padding-top: 1.5rem;
}
.tier-card.featured .tier-facts { border-color: rgba(255,255,255,0.08); }
.tier-fact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
}
.tier-card.featured .tier-fact { color: rgba(255,255,255,0.3); }
.tier-fact strong {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.75rem;
}
.tier-card.featured .tier-fact strong { color: rgba(255,255,255,0.75); }

/* ── THREE-DAY FORMAT (dark) ── */
.format-section {
  background: var(--ink);
  padding: 7rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.format-inner { max-width: 1300px; margin: 0 auto; }
.format-header { margin-bottom: 4rem; }
.format-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.75rem;
}
.format-title em { font-style: italic; color: var(--accent); }
.format-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  max-width: 500px;
  line-height: 1.75;
}
.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1px;
}
.day-card {
  background: #0f1822;
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.day-card:hover { background: #141f2c; }
.day-card.global { background: #1a2838; border-top: 2px solid var(--accent); }
.day-card.global:hover { background: #1e2e40; }
.day-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.day-title {
  font-family: 'Newsreader', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.day-timezone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.25rem;
}
.day-desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.25rem;
}
.day-sessions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
}
.day-session {
  display: flex;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  align-items: baseline;
}
.day-session-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
}
/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 3rem;
}
.stat-box {
  background: #0f1822;
  padding: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-num .a { color: var(--accent); }
.stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── PROOF TRACK (cream) ── */
.proof-section {
  background: var(--paper);
  color: var(--ink);
  padding: 7rem 5vw;
  border-top: 1px solid var(--mid);
}
.proof-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: stretch;
}
.proof-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.proof-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.proof-intro {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.proof-steps { display: flex; flex-direction: column; }
.proof-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--mid);
  align-items: flex-start;
}
.proof-step:last-child { border-bottom: none; }
.proof-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 0.15rem;
  width: 24px;
}
.proof-step-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: #666;
  line-height: 1.65;
}
.proof-step-text strong {
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.92rem;
}
.proof-right {
  background: var(--ink);
  color: var(--paper);
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.proof-card-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.proof-stat {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.proof-stat:last-of-type { border-bottom: none; }
.proof-stat-label {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.3rem;
}
.proof-stat-value {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
.proof-cta {
  margin-top: 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  padding: 0.9rem 2rem;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: opacity 0.2s;
}
.proof-cta:hover { opacity: 0.88; }

/* ── APPLY (dark) ── */
.apply-section {
  background: var(--ink);
  padding: 8rem 5vw;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.apply-inner { max-width: 640px; margin: 0 auto; }
.apply-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 2rem;
}
.apply-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
}
.apply-title em { font-style: italic; }
.apply-sub {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 3rem;
}
/* Apply form - type toggle */
.apply-type-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.apply-type-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.apply-type-btn:first-child { border-right: none; }
.apply-type-btn.active {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}
.apply-type-btn:not(.active):hover {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.25);
}
/* Apply form - fields */
.apply-form {
  max-width: 440px;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.apply-input {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  padding: 0.9rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.apply-input:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.1); }
.apply-input::placeholder { color: rgba(255,255,255,0.2); }
.apply-input:focus { border-color: rgba(255,255,255,0.3); z-index: 1; position: relative; }
.apply-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border: none;
  padding: 1rem 1.75rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  width: 100%;
  margin-top: 1rem;
}
.apply-btn:hover { opacity: 0.88; }
.apply-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.apply-note {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.08em;
}
.apply-success {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 1.5rem;
}
.apply-error {
  font-size: 0.75rem;
  color: #e05555;
  margin-top: 0.75rem;
}

/* ── APPLY MODAL ── */
.apply-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5,8,14,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.apply-modal-overlay.visible {
  display: flex;
}
.apply-modal {
  background: #0d1520;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 460px;
  width: 100%;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
}
.apply-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.apply-modal-close:hover { color: #fff; }
.apply-modal-title {
  font-family: 'Newsreader', serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 2rem;
}
.apply-modal .apply-type-toggle {
  margin-bottom: 1.5rem;
  justify-content: center;
}
.apply-modal .apply-form {
  max-width: 100%;
  margin: 0 0 0.75rem;
}
.apply-modal .apply-input {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.apply-modal .apply-input:focus {
  border-color: var(--accent);
}

/* ── FOOTER ── */
.dir-a-footer {
  background: #080d14;
  padding: 2.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.dir-a-footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.dir-a-footer-cities {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  text-align: center;
  white-space: nowrap;
}
.dir-a-footer-right {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  text-align: right;
}
.dir-a-footer-link {
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.dir-a-footer-link:hover { color: rgba(255,255,255,0.6); }

/* ── PODCAST PAGE ── */

/* Hero */
.podcast-hero {
  position: relative;
  min-height: 70vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.podcast-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 12rem 5vw 6rem;
}
.podcast-hero-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
}
.podcast-hero-title em { font-style: italic; }
.podcast-hero-sub {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.podcast-hero-platforms {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}
.podcast-hero-platforms a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.podcast-hero-platforms a:hover { color: rgba(255,255,255,0.7); }
.podcast-hero-platforms svg { flex-shrink: 0; }
.podcast-hero-status {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.podcast-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: podcastPulse 2s ease-in-out infinite;
}
@keyframes podcastPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* About (cream) */
.podcast-about {
  background: var(--paper);
  color: var(--ink);
  padding: 7rem 5vw;
}
.podcast-about-inner {
  max-width: 900px;
  margin: 0 auto;
}
.podcast-about-text {
  max-width: 680px;
}
.podcast-about-text p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  margin-bottom: 1rem;
}
.podcast-about-text p.lead {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.podcast-about-text p.intro {
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
}
.podcast-about-text p.sign-off {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mid);
}
.podcast-about-text .functions {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 1.5rem;
}

/* Episodes (dark) */
.podcast-episodes {
  background: var(--ink);
  padding: 7rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.podcast-episodes-inner {
  max-width: 900px;
  margin: 0 auto;
}
.podcast-episodes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.podcast-episodes-header h2 {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
}
.podcast-episodes-header h2 em { font-style: italic; }
.podcast-episodes-count {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.episode-list { list-style: none; }
.episode-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
  cursor: pointer;
}
.episode-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.episode-item:hover { background: rgba(255,255,255,0.02); }
.episode-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  text-align: center;
  line-height: 1;
}
.episode-content { min-width: 0; }
.episode-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.episode-desc {
  font-family: 'Newsreader', serif;
  font-size: 0.88rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.episode-meta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.episode-meta span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.episode-meta span.episode-tag {
  color: var(--accent);
  font-weight: 500;
}
.episode-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.episode-item:hover .episode-play {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}
.episode-play svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.4);
  margin-left: 2px;
}
.episode-play svg.icon-pause { margin-left: 0; }
.episode-item:hover .episode-play svg { fill: rgba(255,255,255,0.7); }
.episode-shownotes-link {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.episode-shownotes-link:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.4);
}
.episode-player { margin-top: 0.75rem; }
.episode-player:empty { display: none; }
.episode-inline-audio {
  width: 100%;
  max-width: 520px;
  height: 36px;
  filter: invert(0.85) hue-rotate(180deg);
}
.episode-source { display: none; }
.episode-empty {
  text-align: center;
  padding: 4rem 0;
}
.episode-empty p {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.25);
}

/* Subscribe (cream) */
.podcast-subscribe {
  background: var(--paper);
  color: var(--ink);
  padding: 7rem 5vw;
  text-align: center;
}
.podcast-subscribe-inner {
  max-width: 640px;
  margin: 0 auto;
}
.podcast-subscribe-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 2rem;
}
.podcast-subscribe-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.podcast-subscribe-title em { font-style: italic; }
.podcast-subscribe-sub {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: #777;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.podcast-subscribe-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.podcast-subscribe-links .btn-platform {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: opacity 0.2s, transform 0.15s, border-color 0.2s;
}
.btn-platform.apple {
  background: var(--ink);
  color: #fff;
}
.btn-platform.apple:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-platform.spotify {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--mid);
}
.btn-platform.spotify:hover { border-color: var(--ink); }
.btn-platform svg { flex-shrink: 0; }
.podcast-subscribe-note {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.podcast-subscribe-site { margin-top: 1.5rem; }
.podcast-subscribe-site a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(58,122,181,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.podcast-subscribe-site a:hover { border-color: var(--accent); }

@media (max-width: 960px) {
  .dir-a-about, .proof-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dir-a-track-grid, .day-grid, .tier-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .dir-a-sub-row { flex-direction: column; align-items: flex-start; }
  .dir-a-cta-group { flex-direction: column; }
  .tiers-header, .dir-a-tracks-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .dir-a-nav-links { display: none; }
  .dir-a-footer { flex-direction: column; text-align: left; }
  .dir-a-footer-right { text-align: left; }
  .podcast-episodes-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .episode-item { grid-template-columns: 40px 1fr auto; gap: 1rem; }
  .episode-num { font-size: 1.2rem; }
  .podcast-subscribe-links { flex-direction: column; align-items: center; }
}

/* ── GHOST KOENIG EDITOR ── */
.kg-width-wide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.kg-width-full { max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.kg-width-wide img, .kg-width-full img { width: 100%; }
