:root {
  --ink: #10110e;
  --ink-soft: #1a1c17;
  --paper: #f3f0e6;
  --paper-deep: #e7e2d5;
  --acid: #dfff3f;
  --acid-dark: #bedb24;
  --red: #e32636;
  --line-dark: rgba(243, 240, 230, 0.2);
  --line-light: rgba(16, 17, 14, 0.23);
  --muted-dark: rgba(243, 240, 230, 0.65);
  --muted-light: rgba(16, 17, 14, 0.64);
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --section-y: clamp(5.5rem, 10vw, 10rem);
  --max: 1600px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--acid);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 1.15rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5.1rem;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  background: rgba(16, 17, 14, 0);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.archive-header {
  border-bottom-color: var(--line-dark);
  background: rgba(16, 17, 14, 0.96);
}

.archive-header {
  color: var(--paper);
}

.wordmark {
  justify-self: start;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.wordmark span {
  color: var(--acid);
}

.site-header nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header nav a,
.footer-links a,
.bio-sources a {
  text-decoration: none;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.42rem;
  height: 1px;
  background: var(--acid);
  transition: right 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a[aria-current="page"]::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  padding: 0.7rem 0 0.55rem;
  border-bottom: 1px solid var(--acid);
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(960px, 100svh);
  overflow: hidden;
  padding: clamp(8.6rem, 14vh, 11rem) var(--gutter) clamp(18rem, 36vh, 24rem);
  background: var(--ink);
}

.hero-copy,
.hero-proof,
.hero-index {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-kicker {
  color: var(--acid);
  animation: hero-enter 600ms 100ms both;
}

.hero-kicker span {
  padding-inline: 0.45rem;
  color: var(--muted-dark);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(4.6rem, 13.2vw, 13.5rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.75;
  animation: hero-enter 700ms 150ms both;
}

.hero h1 span {
  display: block;
  color: var(--paper);
  font-size: 0.55em;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero-deck {
  width: min(690px, 78%);
  margin: 2.4rem 0 2rem auto;
  font-size: clamp(1.35rem, 2.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  animation: hero-enter 700ms 230ms both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  animation: hero-enter 700ms 300ms both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 10.6rem;
  padding: 1rem 1.15rem;
  border: 1px solid currentColor;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-accent {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.button-accent:hover,
.button-accent:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--acid-dark);
  background: var(--acid-dark);
  color: var(--ink);
}

.button-large {
  min-width: 15rem;
  padding: 1.25rem 1.4rem;
}

.text-link {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link-dark {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(860px, 71%);
  margin-top: clamp(3.5rem, 7vh, 6rem);
  margin-right: 0;
  animation: hero-enter 700ms 380ms both;
}

.hero-proof > div {
  padding: 0.85rem 1.25rem 0.2rem 0;
  border-top: 1px solid var(--line-dark);
}

.hero-proof > div + div {
  padding-left: 1.25rem;
  border-left: 1px solid var(--line-dark);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-proof span {
  color: var(--muted-dark);
  font-size: 0.75rem;
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: clamp(15rem, 33vh, 22rem);
  margin: 0;
  overflow: hidden;
  background: #45473f;
  animation: image-enter 900ms 120ms both;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 17, 14, 0.65), transparent 42%, rgba(16, 17, 14, 0.22));
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  filter: saturate(0.8) contrast(1.04);
  transform: scale(1.035);
  will-change: transform;
}

.hero-index {
  position: absolute;
  right: var(--gutter);
  bottom: 1.2rem;
  z-index: 4;
  width: auto;
  color: var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(1.4rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes image-enter {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

.opening-statement,
.record-section,
.topic-section,
.publisher-section,
.appearance-preview,
.hosted-section,
.bio-section,
.booking-section,
.archive-hosted,
.archive-note {
  padding: var(--section-y) var(--gutter);
}

.opening-statement {
  display: grid;
  grid-template-columns: 0.35fr 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  background: var(--paper);
  color: var(--ink);
}

.section-number {
  padding-top: 0.4rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.statement-main h2,
.record-heading h2,
.section-heading h2,
.publisher-heading h2,
.hosted-intro h2,
.bio-title h2,
.booking-section h2,
.archive-hosted h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 6.4vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.record-section {
  position: relative;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
}

.record-section::after {
  content: "PROOF";
  position: absolute;
  right: -0.08em;
  top: -0.26em;
  color: rgba(16, 17, 14, 0.055);
  font-size: clamp(10rem, 28vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.11em;
  line-height: 1;
  pointer-events: none;
}

.record-heading,
.record-ledger,
.conversation-profile {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.record-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.8fr;
  gap: clamp(2rem, 7vw, 9rem);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.record-heading .eyebrow,
.publisher-heading .eyebrow {
  align-self: start;
}

.record-heading h2 {
  max-width: 1040px;
}

.record-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(16, 17, 14, 0.34);
  border-bottom: 1px solid rgba(16, 17, 14, 0.34);
}

.record-stat {
  min-height: 11rem;
  padding: 1.3rem clamp(1rem, 2.5vw, 2.4rem);
}

.record-stat:first-child {
  padding-left: 0;
}

.record-stat + .record-stat {
  border-left: 1px solid rgba(16, 17, 14, 0.34);
}

.record-stat strong,
.record-stat span {
  display: block;
}

.record-stat strong {
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 5.3vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.record-stat span {
  max-width: 13rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.conversation-profile {
  margin-top: 3.25rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(16, 17, 14, 0.34);
}

.conversation-profile-title {
  margin: 0 0 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversation-profile > div {
  display: grid;
  grid-template-columns: minmax(9rem, 0.55fr) minmax(10rem, 2fr) 3.3rem;
  gap: 1.5rem;
  align-items: center;
  padding: 0.65rem 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.conversation-profile strong {
  font-size: 0.78rem;
  text-align: right;
}

.profile-line {
  height: 2px;
  background: rgba(16, 17, 14, 0.2);
}

.profile-line i {
  display: block;
  width: var(--profile-width);
  height: 100%;
  background: var(--ink);
}

.statement-detail {
  align-self: end;
}

.statement-detail > p {
  color: var(--muted-light);
  font-size: 1.03rem;
}

blockquote {
  margin: 3rem 0 0;
  padding: 1.3rem 0 0;
  border-top: 1px solid var(--line-light);
}

blockquote p {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

blockquote cite {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topic-section {
  background: var(--ink-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.55fr 0.72fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading .eyebrow {
  align-self: start;
  color: var(--acid);
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.topic-list {
  border-top: 1px solid var(--line-dark);
}

.topic-row {
  border-bottom: 1px solid var(--line-dark);
}

.topic-row summary {
  display: grid;
  grid-template-columns: 0.3fr 2.3fr auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 6.2rem;
  cursor: pointer;
  list-style: none;
}

.topic-row summary::-webkit-details-marker {
  display: none;
}

.topic-number,
.hosted-year,
.appearance-date,
.appearance-topic {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topic-number {
  color: var(--acid);
}

.topic-name {
  font-size: clamp(1.4rem, 2.8vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.topic-toggle {
  position: relative;
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.topic-toggle::before,
.topic-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.6rem;
  height: 1px;
  background: var(--paper);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.topic-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.topic-row[open] .topic-toggle {
  border-color: var(--acid);
  background: var(--acid);
}

.topic-row[open] .topic-toggle::before,
.topic-row[open] .topic-toggle::after {
  background: var(--ink);
}

.topic-row[open] .topic-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.topic-answer {
  display: grid;
  grid-template-columns: 0.3fr 2.3fr auto;
  gap: 1.5rem;
}

.topic-answer p {
  grid-column: 2;
  max-width: 820px;
  margin: -0.4rem 0 2.2rem;
  color: var(--muted-dark);
  font-size: 1rem;
}

.tedx-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) 1.8fr;
  min-height: 43rem;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
}

.tedx-image {
  min-height: 100%;
  background: #d7dfad;
}

.tedx-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: grayscale(1) contrast(1.06);
}

.tedx-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}

.tedx-copy h2 {
  max-width: 970px;
  margin-bottom: 2rem;
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.tedx-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-left: auto;
  font-size: 1.05rem;
}

.tedx-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 2.5rem;
}

.tedx-mark {
  position: absolute;
  right: -0.06em;
  bottom: -0.3em;
  color: rgba(16, 17, 14, 0.07);
  font-size: clamp(9rem, 23vw, 24rem);
  font-weight: 700;
  letter-spacing: -0.11em;
  line-height: 1;
  pointer-events: none;
}

.publisher-section {
  background: var(--ink);
  color: var(--paper);
}

.publisher-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.8fr;
  gap: clamp(2rem, 7vw, 9rem);
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}

.publisher-heading .eyebrow {
  color: var(--acid);
}

.publisher-heading h2 {
  max-width: 1080px;
}

.publisher-list {
  width: min(100%, var(--max));
  margin-inline: auto;
  border-top: 1px solid var(--line-dark);
}

.publisher-row {
  display: grid;
  grid-template-columns: 0.35fr 0.8fr 1.8fr auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 6.4rem;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease;
}

.publisher-row:hover,
.publisher-row:focus-visible {
  padding-inline: 1rem;
  color: var(--acid);
  outline: none;
}

.publisher-year,
.publisher-row em {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.publisher-year,
.publisher-row > span:nth-child(3) {
  color: var(--muted-dark);
}

.publisher-row strong {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.publisher-row > span:nth-child(3) {
  font-size: 0.9rem;
}

.publisher-row:hover .publisher-year,
.publisher-row:focus-visible .publisher-year,
.publisher-row:hover > span:nth-child(3),
.publisher-row:focus-visible > span:nth-child(3) {
  color: currentColor;
}

.appearance-preview {
  background: var(--paper);
  color: var(--ink);
}

.section-heading-light .eyebrow {
  color: var(--ink);
}

.section-heading-light > p:last-child {
  color: var(--muted-light);
}

.featured-appearances,
.archive-results {
  border-top: 1px solid var(--line-light);
}

.appearance-row {
  display: grid;
  grid-template-columns: 0.55fr 2fr 0.7fr auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 7.2rem;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  transition: background-color 160ms ease, padding 160ms ease;
}

.appearance-row:hover,
.appearance-row:focus-visible {
  padding-inline: 1rem;
  background: var(--acid);
  outline: none;
}

.appearance-date,
.appearance-topic {
  color: var(--muted-light);
}

.appearance-copy span,
.appearance-copy strong {
  display: block;
}

.appearance-show {
  margin-bottom: 0.35rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appearance-copy strong {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.appearance-open {
  font-size: 1.5rem;
}

.archive-link {
  margin-top: 3rem;
}

.archive-link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  border-bottom: 2px solid var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.archive-link strong {
  font-size: 2rem;
  font-weight: 400;
}

.hosted-section {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(3rem, 8vw, 10rem);
  background: var(--ink-soft);
}

.hosted-intro {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.hosted-intro .eyebrow,
.archive-hosted .eyebrow {
  color: var(--acid);
}

.hosted-intro > p:last-child {
  max-width: 480px;
  margin: 2rem 0 0 auto;
  color: var(--muted-dark);
}

.hosted-shows {
  border-top: 1px solid var(--line-dark);
}

.hosted-show {
  position: relative;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 1rem 2rem;
  padding: 2rem 3.5rem 2rem 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.hosted-show h3,
.hosted-show p {
  grid-column: 2;
}

.hosted-year {
  grid-row: 1 / span 2;
  padding-top: 0.35rem;
  color: var(--acid);
}

.hosted-show h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hosted-show p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.hosted-arrow {
  position: absolute;
  right: 0;
  top: 2rem;
  color: var(--acid);
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.hosted-show:hover .hosted-arrow,
.hosted-show:focus-visible .hosted-arrow {
  transform: translate(0.25rem, -0.25rem);
}

.bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 10rem);
  background: var(--paper);
  color: var(--ink);
}

.bio-copy {
  padding-top: 1.8rem;
}

.bio-copy > p {
  color: var(--muted-light);
}

.bio-copy .bio-lead {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.35vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.beyond-search {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.6rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.beyond-search > div {
  padding: 1rem 1rem 1rem 0;
}

.beyond-search > div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--line-light);
}

.beyond-search strong,
.beyond-search span {
  display: block;
}

.beyond-search strong {
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}

.beyond-search span {
  color: var(--muted-light);
  font-size: 0.7rem;
  line-height: 1.35;
}

.bio-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
  margin-top: 2.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bio-sources span {
  color: var(--muted-light);
}

.bio-sources a {
  border-bottom: 1px solid var(--line-light);
}

.booking-section {
  background: var(--ink);
}

.booking-section .eyebrow {
  color: var(--acid);
}

.booking-section h2 {
  max-width: 1120px;
}

.booking-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.booking-bottom p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: end;
  padding: 2rem var(--gutter);
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-name {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-note {
  justify-self: end;
  color: var(--muted-dark);
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Appearance archive */
.archive-page {
  background: var(--paper);
  color: var(--ink);
}

.archive-hero {
  min-height: 35rem;
  padding: clamp(10rem, 18vh, 13rem) var(--gutter) 5rem;
  background: var(--ink);
  color: var(--paper);
}

.archive-hero > * {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.archive-hero h1 {
  max-width: 12ch;
  margin-bottom: 3rem;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.archive-intro {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
  margin-left: auto;
}

.archive-intro p {
  margin: 0;
  color: var(--muted-dark);
}

.archive-intro p:first-child {
  color: var(--paper);
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.archive-intro strong {
  color: var(--acid);
  font-size: 2.4rem;
  letter-spacing: -0.05em;
}

.archive-tools {
  position: sticky;
  top: 5.05rem;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--line-light);
  background: rgba(243, 240, 230, 0.96);
}

.filter-group {
  display: flex;
  gap: 0.45rem;
}

.filter-button {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--acid);
}

.archive-search {
  display: flex;
  align-items: center;
  width: min(22rem, 38vw);
  border-bottom: 1px solid var(--ink);
}

.archive-search input {
  width: 100%;
  padding: 0.55rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.archive-search input::placeholder {
  color: var(--muted-light);
}

.archive-results {
  margin: 4rem var(--gutter) var(--section-y);
}

.archive-columns {
  display: grid;
  grid-template-columns: 0.55fr 2fr 0.7fr auto;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-empty {
  padding: 4rem 0;
  font-size: 1.2rem;
}

.archive-hosted {
  background: var(--ink-soft);
  color: var(--paper);
}

.archive-hosted h2 {
  margin-bottom: 4rem;
}

.archive-hosted .hosted-shows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 0;
}

.archive-hosted .hosted-show:nth-child(odd) {
  padding-right: 3rem;
  border-right: 1px solid var(--line-dark);
}

.archive-hosted .hosted-show:nth-child(even) {
  padding-left: 3rem;
}

.archive-note {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: start;
  background: var(--paper-deep);
  color: var(--ink);
}

.archive-note p {
  max-width: 800px;
  color: var(--muted-light);
}

.archive-note a {
  flex: 0 0 auto;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.archive-booking {
  color: var(--paper);
}

@media (max-width: 980px) {
  .opening-statement {
    grid-template-columns: 0.2fr 1fr;
  }

  .statement-detail {
    grid-column: 2;
  }

  .section-heading {
    grid-template-columns: 1fr 1.7fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .record-ledger {
    grid-template-columns: repeat(2, 1fr);
  }

  .record-stat:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(16, 17, 14, 0.34);
  }

  .record-stat:nth-child(4) {
    border-top: 1px solid rgba(16, 17, 14, 0.34);
  }

  .hosted-section {
    grid-template-columns: 1fr;
  }

  .hosted-intro {
    position: static;
  }

  .bio-section {
    gap: 4rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-self: end;
  }

  .footer-note {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  :root {
    --section-y: 5rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.5rem;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 880px;
    padding-top: 8.1rem;
    padding-bottom: 18rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(4rem, 20vw, 7.8rem);
    line-height: 0.78;
  }

  .hero-deck {
    width: 100%;
    margin: 2.5rem 0 0;
    font-size: 1.6rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 3rem;
  }

  .hero-proof > div {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 1rem;
    padding: 0.7rem 0;
  }

  .hero-proof > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .hero-proof strong {
    margin: 0;
  }

  .hero-portrait {
    height: 15.5rem;
  }

  .opening-statement,
  .record-heading,
  .section-heading,
  .publisher-heading,
  .bio-section {
    display: block;
  }

  .section-number {
    margin-bottom: 3rem;
  }

  .statement-main,
  .bio-title {
    margin-bottom: 3rem;
  }

  .section-heading .eyebrow {
    margin-bottom: 3rem;
  }

  .record-heading .eyebrow,
  .publisher-heading .eyebrow {
    margin-bottom: 3rem;
  }

  .section-heading h2,
  .statement-main h2,
  .record-heading h2,
  .publisher-heading h2,
  .hosted-intro h2,
  .bio-title h2,
  .booking-section h2,
  .archive-hosted h2 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .section-heading > p:last-child {
    max-width: 30rem;
    margin-top: 2rem;
  }

  .topic-row summary {
    grid-template-columns: 2.1rem 1fr auto;
    min-height: 5.5rem;
  }

  .topic-name {
    font-size: 1.3rem;
  }

  .topic-answer {
    display: block;
    padding-left: 3.6rem;
  }

  .record-stat {
    min-height: 9rem;
  }

  .record-stat strong {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .conversation-profile > div {
    grid-template-columns: 8.5rem 1fr 3rem;
    gap: 0.8rem;
  }

  .tedx-section {
    display: block;
  }

  .tedx-image {
    height: 23rem;
  }

  .tedx-copy {
    padding: 4rem var(--gutter) 6rem;
  }

  .tedx-copy h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .tedx-copy > p:not(.eyebrow) {
    margin-left: 0;
  }

  .tedx-links {
    align-items: stretch;
    flex-direction: column;
  }

  .tedx-links .text-link {
    align-self: flex-start;
  }

  .publisher-row {
    grid-template-columns: 4.5rem 1fr auto;
    gap: 0.8rem 1rem;
    padding-block: 1.2rem;
  }

  .publisher-row > span:nth-child(3) {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .publisher-row em {
    grid-column: 3;
    grid-row: 1;
  }

  .appearance-row,
  .archive-columns {
    grid-template-columns: 5.2rem 1fr auto;
  }

  .appearance-row {
    gap: 1rem;
    padding-block: 1.2rem;
  }

  .appearance-topic {
    display: none;
  }

  .archive-columns span:nth-child(3) {
    display: none;
  }

  .archive-columns span:last-child {
    text-align: right;
  }

  .hosted-show {
    grid-template-columns: 1fr;
  }

  .hosted-show h3,
  .hosted-show p,
  .hosted-year {
    grid-column: 1;
    grid-row: auto;
  }

  .bio-section {
    padding-bottom: 6rem;
  }

  .beyond-search {
    grid-template-columns: 1fr;
  }

  .beyond-search > div,
  .beyond-search > div + div {
    padding: 0.9rem 0;
    border-left: 0;
  }

  .beyond-search > div + div {
    border-top: 1px solid var(--line-light);
  }

  .booking-bottom,
  .archive-note {
    align-items: stretch;
    flex-direction: column;
  }

  .button-large {
    width: 100%;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-self: start;
  }

  .archive-hero {
    min-height: 37rem;
    padding-top: 9.5rem;
  }

  .archive-hero h1 {
    font-size: clamp(3.6rem, 16vw, 6rem);
  }

  .archive-intro {
    display: block;
  }

  .archive-intro p + p {
    margin-top: 2rem;
  }

  .archive-tools {
    top: 4.45rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .filter-group {
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .archive-search {
    width: 100%;
  }

  .archive-results {
    margin-top: 3rem;
  }

  .archive-hosted .hosted-shows {
    display: block;
  }

  .archive-hosted .hosted-show:nth-child(odd),
  .archive-hosted .hosted-show:nth-child(even) {
    padding-left: 0;
    padding-right: 3.5rem;
    border-right: 0;
  }
}

@media (max-width: 430px) {
  .hero-kicker span {
    display: none;
  }

  .appearance-row,
  .archive-columns {
    grid-template-columns: 1fr auto;
  }

  .appearance-date,
  .archive-columns span:first-child {
    display: none;
  }

  .record-ledger {
    grid-template-columns: 1fr;
  }

  .record-stat,
  .record-stat:first-child,
  .record-stat:nth-child(3) {
    min-height: 0;
    padding: 1.25rem 0;
    border-left: 0;
    border-top: 1px solid rgba(16, 17, 14, 0.34);
  }

  .record-stat:first-child {
    border-top: 0;
  }

  .conversation-profile > div {
    grid-template-columns: 1fr 3rem;
  }

  .profile-line {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .publisher-row {
    grid-template-columns: 3.2rem 1fr;
  }

  .publisher-row em {
    display: none;
  }

  .publisher-row > span:nth-child(3) {
    grid-column: 2;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.not-found {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 100svh;
  padding: 7rem var(--gutter);
}

.not-found .eyebrow {
  color: var(--acid);
}

.not-found h1 {
  max-width: 10ch;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.not-found > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--muted-dark);
  font-size: 1.2rem;
}

.not-found .hero-actions {
  justify-content: flex-start;
  margin-top: 2rem;
}
