:root {
  --black: #0b0b0b;
  --orange: #ff914d;
  --orange-soft: #fff0e7;
  --mutante-yellow: #ffd51f;
  --white: #ffffff;
  --gray: #5f5f5f;
  --gray-light: #f5f5f3;
  --line: #d9d9d5;
  --sidebar: 304px;
  --sans: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--black);
}
.skip-link:focus { transform: translateY(0); }

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: var(--sidebar);
  min-height: 100vh;
  padding: 34px 30px 25px;
  background: var(--white);
  border-right: 1px solid var(--black);
}
.sidebar::before {
  position: absolute;
  top: 0;
  right: -1px;
  width: 6px;
  height: 86px;
  content: "";
  background: var(--orange);
}

.identity {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--black);
}
.monogram {
  font-size: 29px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
}
.monogram span { color: var(--orange); }
.identity p {
  margin: 0;
  color: var(--gray);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wiki-nav {
  margin-top: 27px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.nav-label {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wiki-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 39px;
  border-bottom: 1px solid var(--line);
  color: #363636;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.2;
  transition: color 150ms ease, padding 150ms ease;
}
.wiki-nav a span {
  color: #a3a3a0;
  font-family: var(--mono);
  font-size: 9px;
}
.wiki-nav a:hover {
  padding-left: 5px;
  color: var(--orange);
}
.wiki-nav a.active {
  color: var(--black);
  font-weight: 800;
}
.wiki-nav a.active::after {
  position: absolute;
  right: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
}
.wiki-nav a.active span { color: var(--orange); }

.sidebar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid var(--black);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sidebar-footer a { color: var(--orange); font-weight: 750; }
.sidebar-footer span { color: var(--gray); }

.menu-button { display: none; }
.sidebar-scrim {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(3px);
}

.page-shell {
  width: calc(100% - var(--sidebar));
  min-height: 100vh;
  margin-left: var(--sidebar);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(32px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}
.topbar p,
.topbar a {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.topbar p { color: var(--gray); }
.topbar p > span:first-child,
.topbar a { color: var(--orange); }

.wiki-article {
  width: min(100%, 1320px);
  min-height: calc(100vh - 142px);
  margin: 0 auto;
  padding: clamp(68px, 8vw, 116px) clamp(32px, 6vw, 90px) 120px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 90ms ease, transform 90ms ease;
  outline: 0;
}
.wiki-article.changing {
  opacity: 0;
  transform: translateY(5px);
}

.article-kicker {
  margin-bottom: 29px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wiki-article > h1 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.065em;
}
.article-lede {
  max-width: 850px;
  margin: 38px 0 76px;
  color: var(--gray);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--black);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 150ms ease, background 150ms ease;
}
.button-dark { color: var(--white); background: var(--black); }
.button-dark:hover { color: var(--black); background: var(--orange); }
.button-light { color: var(--black); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--orange); }
.button span { color: var(--orange); }
.button-dark:hover span,
.button-light:hover span { color: currentColor; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
  min-height: calc(100vh - 250px);
}
.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(61px, 7.6vw, 114px);
  font-weight: 780;
  line-height: 0.84;
  letter-spacing: -0.075em;
}
.hero-copy h1 em {
  display: inline-block;
  margin: 19px 0 0 10px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: clamp(13px, 1.2vw, 18px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.03em;
  vertical-align: top;
  white-space: nowrap;
}
.hero-role {
  max-width: 730px;
  margin: 38px 0 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 680;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.hero-role span { color: var(--orange); }
.hero-thesis {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.hero-meta {
  display: grid;
  gap: 9px;
  margin-top: 48px;
  padding-top: 19px;
  border-top: 1px solid var(--black);
}
.hero-meta > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
}
.hero-meta span,
.hero-meta strong {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta span { color: var(--gray); }
.hero-meta strong { font-weight: 700; }
.hero-meta > .soulcaster-entry { align-items: start; padding-top: 3px; }

.hero-portrait { position: relative; margin: 0; padding: 18px 18px 0 0; }
.hero-portrait::before {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 28px);
  height: calc(100% - 32px);
  content: "";
  background: var(--orange);
}
.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--gray-light);
  border: 1px solid var(--black);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(0.92) contrast(1.02);
}
.hero-portrait figcaption {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-portrait figcaption span:first-child { color: var(--orange); }

.home-intro {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 45px;
  margin-top: 110px;
  padding-top: 27px;
  border-top: 1px solid var(--black);
}
.home-intro > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.home-intro > p {
  max-width: 850px;
  margin: 0;
  font-size: clamp(29px, 3.4vw, 48px);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: -0.045em;
}
.home-paths {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--line);
}
.home-paths a {
  position: relative;
  min-height: 170px;
  padding: 21px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.home-paths a:hover { background: var(--orange-soft); }
.home-paths span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
}
.home-paths strong {
  display: block;
  max-width: 160px;
  margin-top: 58px;
  font-size: 16px;
  line-height: 1.25;
}
.home-paths b {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--orange);
}

.prose-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(35px, 6vw, 90px);
  padding-top: 28px;
  border-top: 1px solid var(--black);
}
.prose-label {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.long-copy { max-width: 830px; }
.long-copy p {
  margin: 0 0 25px;
  color: #3f3f3f;
  font-size: 18px;
  line-height: 1.72;
}
.long-copy p:first-child {
  color: var(--black);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.off-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: clamp(35px, 6vw, 90px);
  margin-top: 78px;
  padding: 32px;
  color: var(--white);
  background: var(--black);
}
.off-grid > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.off-grid > div { display: flex; flex-wrap: wrap; gap: 9px; }
.off-grid strong {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.topic-grid,
.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--black);
  background: var(--black);
}
.topic-grid article,
.ai-grid article {
  min-height: 270px;
  padding: 29px;
  background: var(--white);
}
.topic-grid article:last-child { grid-column: 1 / -1; min-height: 230px; }
.topic-grid span,
.ai-grid span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.topic-grid h2,
.ai-grid h2 {
  max-width: 500px;
  margin: 72px 0 14px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.topic-grid p,
.ai-grid p {
  max-width: 550px;
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}
.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding: 28px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--line);
}
.section-cta p { margin: 0; font-size: 18px; font-weight: 650; }
.section-cta a {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.education-list,
.publication-list,
.media-stack,
.resource-list {
  border-top: 1px solid var(--black);
}
.education-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 45px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.education-list time {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
}
.education-list span {
  color: var(--gray);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}
.education-list h2 {
  margin: 10px 0;
  font-size: clamp(28px, 3.4vw, 43px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.education-list p { margin: 0; color: var(--gray); font-size: 14px; }
.learning-cloud {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 45px;
  margin-top: 65px;
  padding: 32px;
  background: var(--orange);
}
.learning-cloud p {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.learning-cloud > div { display: flex; flex-wrap: wrap; gap: 8px; }
.learning-cloud span {
  padding: 9px 11px;
  border: 1px solid var(--black);
  font-size: 12px;
  font-weight: 650;
}

.story { border-top: 1px solid var(--black); }
.story article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(35px, 6vw, 82px);
  padding: 55px 0;
  border-bottom: 1px solid var(--line);
}
.story-index { display: flex; flex-direction: column; gap: 15px; }
.story-index span,
.story-index b,
.story-company {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.story-index span { color: var(--orange); }
.story-index b { color: #aaa; }
.story-company { margin: 0 0 12px; color: var(--orange); letter-spacing: 0.08em; }
.story h2 {
  max-width: 760px;
  margin: 0 0 21px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.story article > div:last-child > p:last-child {
  max-width: 800px;
  margin: 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
}
.pull-quote {
  max-width: 960px;
  margin: 90px 0;
  padding-left: 30px;
  border-left: 7px solid var(--orange);
  font-size: clamp(31px, 4vw, 53px);
  font-weight: 670;
  line-height: 1.16;
  letter-spacing: -0.045em;
}
.pull-quote.orange {
  padding: 40px;
  border: 0;
  color: var(--black);
  background: var(--orange);
}

.mutante-manifesto {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) 1.2fr;
  gap: clamp(35px, 6vw, 90px);
  align-items: center;
  padding: clamp(34px, 5vw, 68px);
  color: var(--white);
  background: var(--black);
}
.mutante-word span {
  display: block;
  color: var(--mutante-yellow);
  font-size: clamp(74px, 9vw, 132px);
  font-weight: 850;
  line-height: 0.68;
  letter-spacing: -0.09em;
}
.mutante-word span:nth-child(2) { color: var(--white); }
.mutante-manifesto .long-copy p { color: rgba(255, 255, 255, 0.67); }
.mutante-manifesto .long-copy p:first-child { color: var(--white); }
.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--black);
  border-top: 0;
}
.two-paths article { display: flex; flex-direction: column; min-height: 430px; padding: 35px; }
.two-paths article:first-child { border-right: 1px solid var(--black); }
.two-paths article:nth-child(2) { background: var(--orange-soft); }
.two-paths article > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.two-paths h2 {
  margin: 70px 0 18px;
  font-size: clamp(32px, 3.7vw, 49px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.two-paths p { margin: 0; color: var(--gray); font-size: 15px; line-height: 1.7; }
.two-paths a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--black);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.two-paths a b { color: var(--orange); }

.publication-list > a {
  display: grid;
  grid-template-columns: 125px 1fr 28px;
  gap: 35px;
  align-items: start;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}
.publication-list time,
.publication-list span,
.media-stack small {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.publication-list h2,
.media-stack h2 {
  margin: 10px 0 12px;
  font-size: clamp(29px, 3.6vw, 47px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  transition: color 150ms ease;
}
.publication-list p,
.media-stack p {
  max-width: 720px;
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}
.publication-list b,
.media-stack b { color: var(--orange); }
.publication-list > a:hover h2,
.media-stack > a:hover h2 { color: var(--orange); }

.media-stack > a {
  display: grid;
  grid-template-columns: 110px 1fr 30px;
  gap: 35px;
  align-items: center;
  min-height: 185px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.media-year {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 29px;
  font-weight: 650;
}

.article-sources {
  margin-top: 90px;
  padding-top: 23px;
  border-top: 1px solid var(--black);
}
.article-sources > p {
  margin: 0 0 18px;
  color: var(--gray);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-sources a {
  display: grid;
  grid-template-columns: 34px 1fr 190px 20px;
  gap: 15px;
  align-items: center;
  min-height: 53px;
  border-top: 1px solid var(--line);
}
.article-sources a:hover strong { color: var(--orange); }
.article-sources a > span,
.article-sources b { color: var(--orange); font-family: var(--mono); font-size: 10px; }
.article-sources strong { font-size: 12px; }
.article-sources small { color: var(--gray); font-size: 10px; }

.ai-grid { grid-template-columns: repeat(3, 1fr); }
.ai-grid article { min-height: 330px; }
.ai-grid h2 { margin-top: 70px; font-size: clamp(25px, 2.7vw, 36px); }
.scope-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 45px;
  margin-top: 55px;
  padding: 28px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--line);
}
.scope-note span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.scope-note p { max-width: 800px; margin: 0; color: var(--gray); font-size: 14px; line-height: 1.7; }

.idea-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--black);
  background: var(--black);
}
.idea-map > * { min-height: 280px; padding: 34px; background: var(--white); }
.idea-core {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 370px;
  color: var(--white);
  background: var(--black);
}
.idea-core span,
.idea-map article > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.idea-core strong {
  max-width: 940px;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.idea-map h2 {
  margin: 85px 0 15px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.idea-map p { margin: 0; color: var(--gray); font-size: 14px; line-height: 1.65; }

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--black);
}
.newsletter-grid article {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: clamp(30px, 4vw, 48px);
}
.newsletter-grid article:first-child {
  color: var(--white);
  background: var(--black);
}
.newsletter-grid article:last-child {
  color: var(--black);
  background: var(--orange);
}
.newsletter-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}
.newsletter-grid h2 {
  margin: 75px 0 18px;
  font-size: clamp(36px, 4.3vw, 59px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.newsletter-grid article > p {
  margin: 0;
  color: inherit;
  opacity: 0.68;
  font-size: 15px;
  line-height: 1.65;
}
.newsletter-grid ul { margin: 28px 0; padding: 0; list-style: none; }
.newsletter-grid li {
  padding: 9px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.72;
}
.newsletter-grid article > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.subscribe-note {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 35px;
  margin-top: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.subscribe-note span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.subscribe-note p { margin: 0; color: var(--gray); font-size: 13px; line-height: 1.6; }

.resource-list > a {
  display: grid;
  grid-template-columns: 180px 1fr 30px;
  gap: 45px;
  padding: 43px 0;
  border-bottom: 1px solid var(--line);
}
.resource-list > a > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.resource-list h2 {
  margin: 0 0 13px;
  font-size: clamp(33px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.resource-list p { max-width: 770px; margin: 0; color: var(--gray); font-size: 15px; line-height: 1.68; }
.resource-list b { color: var(--orange); }
.resource-list a:hover h2 { color: var(--orange); }

.contact-panel {
  padding: clamp(36px, 6vw, 78px);
  color: var(--white);
  background: var(--black);
  border-bottom: 12px solid var(--orange);
}
.contact-panel > p {
  margin: 0 0 55px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}
.contact-panel h1 {
  max-width: 990px;
  margin: 0;
  font-size: clamp(48px, 7.2vw, 98px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}
.contact-panel > a {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 75px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: clamp(12px, 1.4vw, 17px);
}
.contact-panel > a span { color: var(--orange); }
.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  border-left: 1px solid var(--black);
}
.contact-meta > div { min-height: 150px; padding: 24px; border-right: 1px solid var(--line); }
.contact-meta > div:last-child { border-right: 0; }
.contact-meta span {
  display: block;
  margin-bottom: 66px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}
.contact-meta strong,
.contact-meta a { font-size: 13px; font-weight: 700; }
.contact-meta a:hover { color: var(--orange); }

.page-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 27px clamp(32px, 5vw, 80px);
  border-top: 1px solid var(--line);
}
.page-footer p {
  margin: 0;
  color: var(--gray);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 0;
  height: 4px;
  background: var(--orange);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  :root { --sidebar: 278px; }
  .hero-grid { grid-template-columns: 1fr 0.78fr; gap: 38px; }
  .hero-copy h1 { font-size: clamp(58px, 7vw, 90px); }
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .article-sources a { grid-template-columns: 30px 1fr 20px; }
  .article-sources small { display: none; }
}

@media (max-width: 820px) {
  body.menu-open { overflow: hidden; }
  .sidebar {
    width: min(330px, 88vw);
    transform: translateX(-105%);
    transition: transform 210ms ease;
    box-shadow: 18px 0 55px rgba(0, 0, 0, 0.18);
  }
  .sidebar.open { transform: translateX(0); }
  .menu-button {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 40;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid var(--black);
    background: var(--white);
  }
  .menu-button span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 1px;
    background: var(--black);
  }
  .page-shell { width: 100%; margin-left: 0; }
  .topbar { min-height: 72px; padding: 0 20px 0 72px; }
  .wiki-article { padding: 65px 22px 85px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy h1 { font-size: clamp(60px, 16vw, 94px); }
  .hero-portrait { max-width: 560px; margin-top: 25px; }
  .home-intro { grid-template-columns: 1fr; gap: 22px; margin-top: 80px; }
  .home-paths { grid-column: auto; }
  .prose-layout,
  .off-grid,
  .learning-cloud,
  .scope-note,
  .subscribe-note { grid-template-columns: 1fr; gap: 22px; }
  .mutante-manifesto { grid-template-columns: 0.7fr 1.3fr; }
  .two-paths,
  .newsletter-grid { grid-template-columns: 1fr; }
  .two-paths article:first-child { border-right: 0; border-bottom: 1px solid var(--black); }
  .newsletter-grid article { min-height: 500px; }
  .contact-meta { grid-template-columns: 1fr; }
  .contact-meta > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-meta > div:last-child { border-bottom: 0; }
  .contact-meta span { margin-bottom: 28px; }
}

@media (max-width: 580px) {
  .topbar a { display: none; }
  .topbar p { max-width: calc(100vw - 98px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .wiki-article > h1 { font-size: clamp(48px, 15vw, 70px); }
  .article-lede { margin-bottom: 52px; font-size: 17px; }
  .hero-copy h1 { font-size: clamp(55px, 17vw, 76px); }
  .hero-copy h1 em { display: block; margin: 20px 0 0; }
  .hero-role { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-meta > div { grid-template-columns: 76px 1fr; }
  .home-paths { grid-template-columns: 1fr; }
  .home-paths a { min-height: 135px; }
  .home-paths strong { margin-top: 34px; }
  .topic-grid,
  .ai-grid,
  .idea-map { grid-template-columns: 1fr; }
  .topic-grid article:last-child,
  .idea-core { grid-column: auto; }
  .topic-grid article,
  .ai-grid article { min-height: 245px; }
  .education-list article,
  .story article,
  .publication-list > a,
  .media-stack > a,
  .resource-list > a { grid-template-columns: 1fr; gap: 18px; }
  .education-list h2,
  .story h2 { font-size: 32px; }
  .mutante-manifesto { grid-template-columns: 1fr; }
  .mutante-word { display: flex; gap: 7px; }
  .mutante-word span { font-size: 70px; line-height: 0.9; }
  .two-paths article { min-height: 390px; padding: 28px; }
  .publication-list > a,
  .media-stack > a { position: relative; }
  .publication-list > a > b,
  .media-stack > a > b,
  .resource-list > a > b { position: absolute; right: 3px; top: 34px; }
  .resource-list > a { position: relative; }
  .idea-map > * { min-height: 245px; padding: 27px; }
  .idea-core { min-height: 320px; }
  .idea-map h2 { margin-top: 55px; }
  .newsletter-grid article { min-height: 470px; }
  .contact-panel { padding: 34px 25px; }
  .contact-panel h1 { font-size: clamp(47px, 14vw, 68px); }
  .contact-panel > a { overflow-wrap: anywhere; }
  .page-footer { align-items: flex-start; flex-direction: column; padding-inline: 22px; }
}
