/* ================================================================
   DX TODAY — SHARED DESIGN SYSTEM
   Used by all pages. Single source of truth for the visual language.
   Colors: Navy 700 + Gold 500. Type: Fraunces (display) + Inter (body).
   ================================================================ */

:root {
  --navy-900: #15224A;
  --navy-800: #1B2A56;
  --navy-700: #1E2D5F;
  --navy-600: #2A3E7C;
  --navy-500: #3B5099;
  --gold-700: #B8923A;
  --gold-600: #C9A961;
  --gold-500: #D4B062;
  --gold-400: #E0C788;
  --gold-300: #EDD9AB;
  --cream: #F8F6F1;
  --cream-2: #F1EEE5;
  --white: #FFFFFF;
  --ink: #0A0F1F;
  --ink-soft: #2D2F3A;
  --grey-warm: #6B6E7A;
  --grey-soft: #A8ABB5;
  --line: rgba(30, 45, 95, 0.12);
  --line-soft: rgba(30, 45, 95, 0.06);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* ============ TAGLINE BAND ============ */
.tagline-band {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(212, 176, 98, 0.15);
  padding: 11px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.tagline-band-text {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}
.tagline-band-text em {
  color: var(--gold-500);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 14px;
  margin: 0 4px;
}
.tagline-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: 0.6;
}

/* ============ MAIN NAV ============ */
.main-nav {
  background: rgba(248, 246, 241, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--navy-900);
}
.nav-wordmark em {
  color: var(--gold-700);
  font-style: italic;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: 9px 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  transition: all 0.2s;
  position: relative;
}
.nav-link:hover {
  color: var(--navy-900);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
}
.nav-link.active {
  color: var(--cream);
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.nav-link.active:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ============ COMMON SECTION ELEMENTS ============ */
.eyebrow-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 176, 98, 0.2);
  animation: pulse 2s infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 176, 98, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(212, 176, 98, 0.05); }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header-left h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.section-header-left h2 em {
  color: var(--gold-700);
  font-style: italic;
}
.section-header-left p {
  font-size: 14px;
  color: var(--grey-warm);
}
.section-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.section-link::after { content: '→'; color: var(--gold-700); }
.section-link:hover { gap: 10px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--cream);
}
.btn-arrow { transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============ PAGE HERO (for non-homepage pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-800) 100%);
  color: var(--cream);
  padding: 88px 48px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 176, 98, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(59, 80, 153, 0.25) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 176, 98, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 176, 98, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.page-hero-eyebrow .eyebrow-label {
  color: var(--gold-400);
}
.page-hero-eyebrow .eyebrow-meta {
  font-size: 12px;
  color: rgba(248, 246, 241, 0.6);
  font-weight: 500;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 20px;
  max-width: 1100px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 400;
}
.page-hero-summary {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(248, 246, 241, 0.78);
  max-width: 720px;
  font-weight: 300;
}

/* ============ EMBED FRAME (for news + briefing pages) ============ */
.embed-section {
  background: var(--cream);
  padding: 0;
}
.embed-frame {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.embed-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  z-index: 3;
}
.embed-iframe-wrapper {
  position: relative;
  width: 100%;
  background: var(--white);
}
.embed-iframe {
  width: 100%;
  border: none;
  display: block;
  background: var(--white);
  transition: height 0.3s ease;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(248, 246, 241, 0.1);
}
.footer-brand {
  max-width: 320px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.footer-brand-name em {
  color: var(--gold-500);
  font-style: italic;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-500);
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(248, 246, 241, 0.55);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(248, 246, 241, 0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(248, 246, 241, 0.4);
}
.footer-tagline-stamp {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-500);
}

/* ============ HOMEPAGE-SPECIFIC ============ */
.hero-pub {
  background: var(--cream);
  padding: 64px 48px 56px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.hero-pub::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 40%, rgba(212, 176, 98, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-pub-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-pub-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.hero-pub-eyebrow .eyebrow-label {
  color: var(--navy-900);
}
.hero-pub-eyebrow .eyebrow-meta {
  font-size: 12px;
  color: var(--grey-warm);
  font-weight: 500;
}
.hero-pub-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin-bottom: 18px;
  max-width: 1100px;
}
.hero-pub-title em {
  font-style: italic;
  color: var(--gold-700);
  font-weight: 400;
}
.hero-pub-summary {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 36px;
  font-weight: 400;
}

/* Episode frame for podcast hero */
.episode-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30, 45, 95, 0.06);
  margin-bottom: 32px;
}
.episode-frame-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 28px 32px;
  color: var(--cream);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.episode-frame-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 176, 98, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 176, 98, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at right, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at right, black 0%, transparent 70%);
}
.episode-art-img {
  width: 96px;
  height: 96px;
  border-radius: 4px;
  border: 1px solid var(--gold-600);
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.episode-info { position: relative; z-index: 2; }
.episode-show-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.episode-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.episode-meta-row {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: rgba(248, 246, 241, 0.65);
  font-weight: 500;
  flex-wrap: wrap;
}
.episode-meta-row span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 50%;
  margin-left: 16px;
  opacity: 0.7;
}
.player-container {
  padding: 8px 16px 0;
  background: var(--white);
}

/* Subscribe row */
.subscribe-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding: 18px 32px;
  background: var(--cream-2);
  border-top: 1px solid var(--line-soft);
}
.subscribe-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 8px;
  flex-shrink: 0;
}
.subscribe-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
}
.subscribe-pill:hover {
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-1px);
}
.subscribe-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero-cta-pair {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Read teasers (homepage) */
.read-teasers {
  background: var(--white);
  padding: 96px 48px;
  border-bottom: 1px solid var(--line-soft);
}
.read-teasers-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.read-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.read-teaser-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.read-teaser-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.read-teaser-card:hover {
  border-color: var(--navy-700);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30, 45, 95, 0.08);
}
.read-teaser-card:hover::before { transform: scaleX(1); }
.read-teaser-card .eyebrow-label {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.read-teaser-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.read-teaser-card h3 em {
  color: var(--gold-700);
  font-style: italic;
}
.read-teaser-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex-grow: 1;
}
.read-teaser-meta {
  font-size: 12px;
  color: var(--grey-warm);
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.read-teaser-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 14px;
  color: var(--gold-600);
}
.read-teaser-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s;
}
.read-teaser-link::after { content: '→'; color: var(--gold-700); }
.read-teaser-card:hover .read-teaser-link { gap: 12px; }

/* Recent episodes */
.episodes {
  background: var(--cream);
  padding: 80px 48px;
}
.episodes-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.episodes-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(30, 45, 95, 0.04);
  overflow: hidden;
}
.episodes-frame-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 22px 32px;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.episodes-frame-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
}
.episodes-frame-title em {
  color: var(--gold-500);
  font-style: italic;
}
.episodes-frame-meta {
  font-size: 12px;
  color: rgba(248, 246, 241, 0.65);
  letter-spacing: 0.05em;
}
.episodes-player {
  padding: 16px 16px 8px;
  background: var(--white);
  max-height: 720px;
  overflow-y: auto;
}

/* Philosophy */
.philosophy {
  background: var(--white);
  padding: 96px 48px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.philosophy-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.philosophy-pre {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  color: var(--navy-900);
  letter-spacing: -0.015em;
}
.philosophy-pre em { color: var(--gold-700); }
.philosophy-pillars { display: grid; gap: 32px; }
.pillar {
  padding-left: 28px;
  border-left: 2px solid var(--gold-500);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--gold-700);
  margin-bottom: 6px;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.pillar-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Framework */
.framework {
  background: var(--cream-2);
  padding: 96px 48px;
}
.framework-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.framework-content > .eyebrow-label {
  margin-bottom: 16px;
  display: block;
}
.framework-content h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin-bottom: 20px;
}
.framework-content h3 em {
  color: var(--gold-700);
  font-style: italic;
}
.framework-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.framework-list {
  list-style: none;
  margin: 28px 0;
}
.framework-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.framework-list li::before {
  content: '◆';
  color: var(--gold-600);
  font-size: 11px;
}
.framework-visual {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.framework-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 176, 98, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 176, 98, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.framework-visual-inner {
  position: relative;
  text-align: center;
  color: var(--cream);
  z-index: 2;
  padding: 40px;
}
.framework-pillars-mini { display: grid; gap: 20px; margin-bottom: 32px; }
.framework-pillar-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.framework-pillar-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-500);
  min-width: 32px;
}
.framework-pillar-text {
  font-size: 14px;
  color: rgba(248, 246, 241, 0.85);
  font-weight: 500;
}
.framework-visual-tag {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold-500);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 176, 98, 0.25);
}

/* Tools */
.tools {
  background: var(--white);
  padding: 96px 48px;
}
.tools-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tool-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.tool-card:hover {
  border-color: var(--navy-700);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30, 45, 95, 0.08);
}
.tool-card:hover::before { transform: scaleX(1); }
.tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: 20px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.tool-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 10px;
}
.tool-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.tool-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex-grow: 1;
}
.tool-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.tool-link::after {
  content: '↗';
  color: var(--gold-700);
  font-size: 14px;
}
.tool-link:hover { gap: 10px; }

/* Newsletter */
.newsletter {
  background: var(--navy-900);
  color: var(--cream);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(212, 176, 98, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(59, 80, 153, 0.25) 0%, transparent 50%);
}
.newsletter::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 176, 98, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 176, 98, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.newsletter-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.newsletter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 24px;
}
.newsletter-eyebrow::before, .newsletter-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.5;
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.newsletter h2 em {
  color: var(--gold-500);
  font-style: italic;
}
.newsletter p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(248, 246, 241, 0.75);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(248, 246, 241, 0.04);
  padding: 8px;
  border-radius: 4px;
  border: 1px solid rgba(212, 176, 98, 0.2);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(248, 246, 241, 0.4); }
.newsletter-form button {
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.25s;
  flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--gold-400); }
.newsletter-meta {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(248, 246, 241, 0.5);
}

/* Operator */
.operator {
  background: var(--cream);
  padding: 80px 48px;
  border-bottom: 1px solid var(--line);
}
.operator-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}
.operator-portrait {
  width: 200px;
  height: 200px;
  border-radius: 4px;
  background: var(--navy-900);
  border: 1px solid var(--gold-600);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(30, 45, 95, 0.15);
}
.operator-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.operator-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(30, 45, 95, 0.15) 100%);
  pointer-events: none;
}
.operator-content > .eyebrow-label {
  margin-bottom: 12px;
  display: block;
}
.operator-content h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.operator-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.operator-stats {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.operator-stat-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-700);
  line-height: 1;
}
.operator-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-warm);
  margin-top: 4px;
}

/* ============ ARTICLE CONTENT (about / framework / etc) ============ */
.article-section {
  background: var(--cream);
  padding: 88px 48px;
}
.article-inner {
  max-width: 820px;
  margin: 0 auto;
}
.article-inner h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 20px;
  margin-top: 56px;
}
.article-inner h2:first-child { margin-top: 0; }
.article-inner h2 em {
  color: var(--gold-700);
  font-style: italic;
}
.article-inner h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--navy-900);
  margin-bottom: 12px;
  margin-top: 32px;
}
.article-inner p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.article-inner p strong {
  color: var(--navy-900);
  font-weight: 600;
}
.article-inner ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.article-inner ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.article-inner ul li::before {
  content: '◆';
  position: absolute;
  left: 4px;
  top: 10px;
  color: var(--gold-600);
  font-size: 11px;
}
.article-inner blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--gold-500);
  background: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy-900);
}

/* ============ REPORTS PAGE ============ */
.reports-section {
  background: var(--cream);
  padding: 64px 48px 96px;
}
.reports-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Filter chips */
.reports-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.reports-filters-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-warm);
  margin-right: 12px;
}
.reports-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.reports-filter-chip:hover {
  border-color: var(--navy-700);
  color: var(--navy-900);
}
.reports-filter-chip.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--cream);
}
.reports-filter-chip-count {
  font-size: 11px;
  opacity: 0.6;
  font-weight: 400;
}
.reports-filter-chip.active .reports-filter-chip-count {
  opacity: 0.7;
}

/* Reports count display */
.reports-count {
  font-size: 13px;
  color: var(--grey-warm);
  margin-bottom: 28px;
}
.reports-count strong {
  color: var(--navy-900);
  font-weight: 600;
}

/* Card grid */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Individual report card */
.report-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.report-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.report-card:hover {
  border-color: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 45, 95, 0.08);
}
.report-card:hover::before {
  transform: scaleX(1);
}
.report-card.is-hidden {
  display: none;
}
.report-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 14px;
}
.report-card-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.report-card-summary {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Single Download action row */
.report-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.report-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--line);
}
.report-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.report-btn-download {
  background: var(--navy-900);
  color: var(--cream);
  border-color: var(--navy-900);
}
.report-btn-download:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 45, 95, 0.15);
}

/* Empty state */
.reports-empty {
  display: none;
  text-align: center;
  padding: 80px 32px;
  color: var(--grey-warm);
  font-size: 15px;
  font-style: italic;
  font-family: var(--serif);
}
.reports-empty.is-visible {
  display: block;
}

/* ============ WATCH PAGE (live video) ============ */
.watch-section {
  background: var(--cream);
  padding: 48px 48px 64px;
  border-bottom: 1px solid var(--line-soft);
}
.watch-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Video frame — same architectural language as podcast players */
.video-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(30, 45, 95, 0.08);
  position: relative;
}
.video-frame-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 22px 32px;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.video-frame-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 176, 98, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 176, 98, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at right, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at right, black 0%, transparent 70%);
}
.video-frame-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  z-index: 2;
}
.video-frame-title em {
  color: var(--gold-500);
  font-style: italic;
}
.video-frame-meta {
  font-size: 12px;
  color: rgba(248, 246, 241, 0.65);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.video-frame-meta .live-dot-small {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 176, 98, 0.2);
  animation: pulse 2s infinite;
}

/* Video container — 16:9 aspect ratio, black background for the video itself */
.video-container {
  position: relative;
  width: 100%;
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-container #player,
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-container iframe {
  pointer-events: none !important;
}

/* Click shield — prevents direct interaction with YouTube iframe */
.video-overlay-shield {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: transparent;
}

/* Video controls — DX Today button style, floating bottom-center */
.video-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 50;
}
.video-control-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(10, 15, 31, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 176, 98, 0.3);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.video-control-btn:hover {
  background: var(--navy-700);
  border-color: var(--gold-500);
  color: var(--cream);
}
.video-control-btn:active {
  transform: scale(0.97);
}
.video-control-btn svg {
  width: 14px;
  height: 14px;
}

/* AIXF credit line below video frame */
.video-credit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: var(--cream-2);
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
  gap: 12px;
}
.video-credit-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-warm);
}
.video-credit-text a {
  color: var(--navy-900);
  border-bottom: 1px solid var(--gold-500);
  font-weight: 600;
}
.video-credit-text a:hover {
  color: var(--gold-700);
}
.video-credit-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-700);
}

/* Reconnect notification — subtle, gold-toned */
.reconnect-badge {
  position: absolute;
  top: 80px;
  right: 24px;
  z-index: 30;
  background: rgba(10, 15, 31, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 176, 98, 0.4);
  color: var(--gold-400);
  padding: 10px 16px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reconnect-badge.hide {
  display: none;
}
.reconnect-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulse 1.5s infinite;
}

/* Ticker section */
.ticker-section {
  background: var(--navy-900);
  padding: 0;
  border-top: 1px solid rgba(212, 176, 98, 0.2);
  border-bottom: 1px solid rgba(212, 176, 98, 0.2);
}
.ticker-frame {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0;
}
.ticker-label {
  background: var(--navy-900);
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(212, 176, 98, 0.2);
  white-space: nowrap;
}
.ticker-label .live-dot-small {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 176, 98, 0.2);
  animation: pulse 2s infinite;
}
.ticker-feed {
  padding: 8px 16px;
  overflow: hidden;
}
/* Force the rss.app ticker to inherit our colors */
.ticker-feed rssapp-ticker {
  --rssapp-text-color: var(--cream);
  --rssapp-background: transparent;
}

/* Watch page hero context section — sits below the video, above the ticker */
.watch-context {
  background: var(--cream);
  padding: 48px 48px 32px;
}
.watch-context-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.watch-context h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 14px;
}
.watch-context h2 em {
  color: var(--gold-700);
  font-style: italic;
}
.watch-context p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 22px;
}
.watch-context p:last-child {
  margin-bottom: 0;
}

/* Fullscreen handling */
:fullscreen .video-container,
:-webkit-full-screen .video-container {
  aspect-ratio: auto;
  width: 100vw;
  height: 100vh;
}

/* ============ END WATCH PAGE ============ */

/* ============ LEGAL PAGE ============ */
.legal-section {
  background: var(--cream);
  padding: 56px 48px 96px;
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 48px;
  font-size: 12px;
  color: var(--grey-warm);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 12px;
}
.legal-meta strong {
  color: var(--navy-900);
  font-weight: 600;
}
.legal-section h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 56px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-500);
}
.legal-section h2:first-of-type {
  margin-top: 0;
}
.legal-section h2 em {
  color: var(--gold-700);
  font-style: italic;
}
.legal-section h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 32px 0 12px;
}
.legal-section h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 24px 0 8px;
}
.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal-section ul {
  margin: 0 0 20px 0;
  padding-left: 20px;
}
.legal-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 8px;
  padding-left: 8px;
}
.legal-section ul li::marker {
  color: var(--gold-500);
}
.legal-section a {
  color: var(--navy-900);
  border-bottom: 1px solid var(--gold-500);
  font-weight: 500;
}
.legal-section a:hover {
  color: var(--gold-700);
}
.legal-section .legal-divider {
  height: 1px;
  background: var(--line);
  margin: 64px 0 48px;
  border: none;
}
.legal-section blockquote.legal-callout {
  background: var(--white);
  border-left: 3px solid var(--gold-500);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--ink);
  border-radius: 0 4px 4px 0;
}
.legal-section blockquote.legal-callout strong {
  color: var(--navy-900);
}
.legal-section .legal-uppercase {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--ink-soft);
}
.legal-section address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy-900);
  background: var(--white);
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin: 16px 0 24px;
}

/* Legal footer link — small, low-promotion */
.footer-bottom-legal {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.footer-bottom-legal a {
  color: rgba(248, 246, 241, 0.6);
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px dotted rgba(248, 246, 241, 0.3);
  padding-bottom: 1px;
}
.footer-bottom-legal a:hover {
  color: var(--gold-500);
  border-bottom-color: var(--gold-500);
}
.footer-bottom-legal .legal-sep {
  color: rgba(248, 246, 241, 0.3);
}

/* ============ END LEGAL PAGE ============ */

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .tools-grid { grid-template-columns: 1fr; }
  .read-teaser-grid { grid-template-columns: 1fr; }
  .reports-grid { grid-template-columns: 1fr; }
  .philosophy-inner, .framework-inner, .operator-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .episode-frame-header {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  .episode-art-img { width: 80px; height: 80px; }
  .operator-portrait { margin: 0 auto; }
}
@media (max-width: 640px) {
  .tagline-band { padding: 10px 20px; gap: 8px; }
  .tagline-band-text { font-size: 10px; letter-spacing: 0.18em; }
  .tagline-band-text em { font-size: 12px; }
  .main-nav { padding: 14px 20px; }
  .hero-pub, .episodes, .philosophy, .framework, .tools, .newsletter, .operator, .read-teasers, .article-section, .page-hero, .reports-section, .watch-section, .watch-context, .legal-section { padding: 56px 20px; }
  .ticker-frame { grid-template-columns: 1fr; }
  .ticker-label { border-right: none; border-bottom: 1px solid rgba(212, 176, 98, 0.2); padding: 12px 20px; }
  .video-controls { bottom: 14px; gap: 6px; }
  .video-control-btn { padding: 9px 14px; font-size: 11px; letter-spacing: 0.05em; }
  .video-credit { padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer { padding: 56px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .episode-frame-header { padding: 22px 20px; }
  .subscribe-row { padding: 16px 20px; }
  .episodes-frame-header { padding: 18px 20px; }
  .episodes-player { padding: 12px 8px; }
}
