.interior-page {
  background: var(--paper);
  color: var(--ink);
  color-scheme: light;
}

.interior-page .site-header {
  background: rgba(17,24,33,.96);
}

.page-hero {
  position: relative;
  min-height: 74svh;
  padding: 180px var(--pad) 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(50,92,255,.24), transparent 27%),
    linear-gradient(140deg, var(--ink), #17243a);
  color: var(--paper);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -20vw;
  bottom: -34vw;
  width: 72vw;
  aspect-ratio: 1;
  border: 1px solid rgba(248,244,237,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(248,244,237,.018), 0 0 0 18vw rgba(248,244,237,.01);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.page-title {
  max-width: 1120px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(68px, 10vw, 150px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .88;
}

.page-title em {
  color: var(--system-blue-bright);
  font-style: italic;
  font-weight: 400;
}

.page-dek {
  max-width: 690px;
  margin: 46px 0 0;
  color: rgba(248,244,237,.68);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.6;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 150px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 160px) var(--pad);
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 110px;
}

.article-aside nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-aside a {
  color: var(--meta);
  font-size: 12px;
  transition: color .2s ease;
}

.article-aside a:hover,
.article-aside a:focus-visible {
  color: var(--system-blue);
}

.article {
  min-width: 0;
}

.article-section {
  scroll-margin-top: 110px;
  padding: 0 0 90px;
}

.article-section + .article-section {
  padding-top: 90px;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  max-width: 880px;
  margin-bottom: 34px;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(45px, 5.6vw, 82px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
}

.article-section h3 {
  margin: 52px 0 18px;
  color: var(--ink-soft);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
}

.article-section p,
.article-section li {
  color: var(--body);
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
}

.article-section p {
  max-width: 820px;
}

.article-section ul,
.article-section ol {
  max-width: 820px;
  padding-left: 24px;
}

.article-section a {
  color: var(--system-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.anchor-quote {
  margin: 54px 0;
  padding: 36px 0 38px clamp(26px, 4vw, 60px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--system-blue);
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 4.3vw, 64px);
  font-style: italic;
  line-height: 1.04;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 280px;
  padding: 28px 30px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card span {
  color: var(--system-blue);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.value-card h3 {
  margin: 64px 0 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.value-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.channel-card {
  min-height: 320px;
  padding: 28px 30px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}

.channel-card:hover {
  background: var(--soft);
}

.channel-card .eyebrow {
  margin-bottom: 72px;
}

.channel-card h3 {
  margin: 0 0 18px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
}

.channel-card p {
  font-size: 14px;
  line-height: 1.65;
}

.channel-card strong {
  display: inline-flex;
  margin-top: 22px;
  color: var(--system-blue);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.interior-page .site-footer {
  color: var(--paper);
}

.redirect-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 30px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.redirect-card {
  max-width: 720px;
}

.redirect-card h1 {
  margin: 0 0 24px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(54px, 9vw, 100px);
  font-weight: 400;
  line-height: .95;
}

.redirect-card p {
  color: rgba(248,244,237,.65);
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
}

.redirect-card .button {
  margin-top: 20px;
}

@media (max-width: 820px) {
  .page-hero {
    min-height: 66svh;
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .page-title {
    font-size: clamp(62px, 19vw, 90px);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .article-aside nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .channel-card {
    min-height: 0;
  }
}
