:root {
  color-scheme: light dark;
  --page: light-dark(#f7f8fa, #111317);
  --surface: light-dark(#ffffff, #17191d);
  --text: light-dark(#17191d, #f3f5f7);
  --muted: light-dark(#626974, #a7aeb8);
  --border: light-dark(#d7dbe2, #34383f);
  --accent: light-dark(#5d50dc, #aaa2ff);
  --accent-soft: light-dark(#eeecff, #262240);
  --shadow: light-dark(rgb(21 24 31 / 18%), rgb(0 0 0 / 60%));
  --content: 1280px;
  --reading: 880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  z-index: 20;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--page);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.header-inner,
.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
}

.brand-accent {
  color: var(--accent);
}

.header-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover {
  color: var(--accent);
}

.home-main {
  padding: 78px 0 96px;
}

.hero {
  max-width: 850px;
  padding-bottom: 54px;
}

.eyebrow,
.section-label,
.profile-pattern,
.article-meta {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 780px;
  margin: 14px 0 22px;
  font-size: clamp(48px, 7.2vw, 88px);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.collection-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}

.collection-heading h2 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.collection-heading span {
  color: var(--muted);
  font-size: 13px;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 26px;
}

.podcast-card {
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.cover-frame {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 12px 30px var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cover-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-card:hover .cover-frame {
  transform: translateY(-5px);
  box-shadow: 0 19px 40px var(--shadow);
}

.card-copy {
  display: block;
  padding-top: 15px;
}

.card-title {
  display: block;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.card-host {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.card-action {
  display: inline-block;
  min-height: 44px;
  padding-top: 11px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  padding: 52px 0 58px;
}

.footer-title {
  max-width: 700px;
  margin: 10px 0 30px;
  font-size: clamp(27px, 4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.disclosure-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: disclosure;
}

.disclosure-list li {
  min-width: 0;
  padding-top: 17px;
  border-top: 3px solid var(--accent);
  counter-increment: disclosure;
  color: var(--muted);
  font-size: 13px;
}

.disclosure-list li::before {
  content: "0" counter(disclosure);
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.disclosure-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 15px;
}

.footer-note {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.profile-main {
  padding-bottom: 90px;
}

.breadcrumb {
  padding: 22px 0;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 700;
  text-underline-offset: 3px;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(230px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
  padding: 38px 0 64px;
}

.profile-cover {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 16px 38px var(--shadow);
}

.profile-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-copy h1 {
  margin: 12px 0 10px;
  font-size: clamp(44px, 6.2vw, 76px);
  font-weight: 740;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.profile-host {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
}

.profile-pattern {
  margin-bottom: 12px;
}

.profile-verdict {
  max-width: 790px;
  margin: 0;
  font-size: clamp(19px, 2.4vw, 27px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.profile-scope {
  max-width: 790px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.article-meta {
  margin-top: 15px;
  color: var(--muted);
  letter-spacing: 0.09em;
}

.analysis,
.sources,
.more-analysis {
  width: min(100%, var(--reading));
  margin-inline: auto;
}

.analysis {
  border-top: 1px solid var(--border);
}

.topic {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.topic h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.7vw, 42px);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.topic ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic li {
  position: relative;
  max-width: 820px;
  padding-left: 23px;
  font-size: 15px;
  line-height: 1.62;
}

.topic li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.sources {
  padding: 34px 0 50px;
}

.sources h2,
.more-analysis h2 {
  margin-bottom: 16px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.sources-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
}

.sources-list a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.sources-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.more-analysis {
  padding-top: 38px;
  border-top: 1px solid var(--border);
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.more-link {
  display: block;
  min-height: 104px;
  padding: 17px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
}

.more-link:hover {
  border-color: var(--accent);
}

.more-link strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
}

.more-link span {
  color: var(--muted);
  font-size: 12px;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-page h1 {
  margin: 10px 0 15px;
  font-size: clamp(54px, 10vw, 110px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.error-page p {
  color: var(--muted);
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  text-underline-offset: 4px;
}

@media (max-width: 1020px) {
  .podcast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .disclosure-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .home-main {
    padding: 54px 0 72px;
  }

  .hero {
    padding-bottom: 44px;
  }

  .podcast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .profile-hero {
    grid-template-columns: 126px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    padding-top: 26px;
  }

  .profile-copy h1 {
    margin-top: 8px;
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: -0.05em;
  }

  .profile-host {
    margin-bottom: 0;
  }

  .profile-pattern,
  .profile-verdict,
  .profile-scope,
  .article-meta {
    grid-column: 1 / -1;
  }

  .profile-copy {
    display: contents;
  }

  .profile-pattern {
    margin-top: 8px;
  }

  .more-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .header-link {
    display: none;
  }

  .hero h1 {
    font-size: clamp(45px, 15vw, 66px);
  }

  .collection-heading {
    display: block;
  }

  .collection-heading span {
    display: block;
    margin-top: 6px;
  }

  .podcast-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .card-title {
    font-size: 20px;
  }

  .profile-hero {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
  }

  .profile-copy h1 {
    font-size: 31px;
  }

  .topic {
    padding: 29px 0;
  }

  .topic li {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cover-frame {
    transition: none;
  }
}

@media print {
  .site-header,
  .more-analysis,
  .site-footer {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .profile-main {
    padding-bottom: 0;
  }
}
