:root {
  --paper: #f5f3ed;
  --paper-bright: #fbfaf6;
  --ink: #16221d;
  --muted: #5a665f;
  --line: #ced5ce;
  --forest: #164f3a;
  --green: #398b5f;
  --mint: #cde8d8;
  --teal: #087d80;
  --cyan: #66bfc0;
  --coral: #df694f;
  --orange: #e79738;
  --yellow: #f2cf65;
  --white: #fff;
  --page: min(1240px, calc(100vw - 48px));
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}
body.is-locked { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
svg { width: 19px; height: 19px; stroke-width: 1.8; }

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.site-header.is-scrolled {
  border-color: rgba(22, 34, 29, 0.1);
  background: rgba(245, 243, 237, 0.93);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  color: var(--forest);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--forest);
  border-radius: 50%;
}
.brand-mark span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--forest);
}
.brand-mark span:nth-child(1) { transform: translate(0, -9px); }
.brand-mark span:nth-child(2) { transform: translate(8px, -2px); background: var(--teal); }
.brand-mark span:nth-child(3) { transform: translate(5px, 8px); }
.brand-mark span:nth-child(4) { transform: translate(-6px, 7px); background: var(--coral); }
.brand-mark span:nth-child(5) { transform: translate(-8px, -3px); }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a, .mobile-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--forest); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 9px; }
.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.icon-button:hover, .icon-button:focus-visible { background: rgba(22, 79, 58, 0.09); }
[data-tooltip]::after {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 5;
  padding: 5px 8px;
  border-radius: 4px;
  color: var(--white);
  background: var(--ink);
  content: attr(data-tooltip);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 120ms ease, transform 120ms ease;
  white-space: nowrap;
}
[data-tooltip]:hover::after, [data-tooltip]:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); border-color: var(--forest); background: var(--forest); }
.button-primary:hover { background: #0d3e2c; }
.button-secondary { color: var(--ink); background: rgba(255,255,255,0.55); }
.button-secondary:hover { background: var(--white); }
.button-compact { min-height: 38px; padding: 0 14px; color: var(--white); border-color: var(--forest); background: var(--forest); font-size: 12px; }
.button-compact svg { width: 16px; }
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: min(820px, 92vh);
  padding: 124px max(24px, calc((100vw - 1240px) / 2)) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(102, 191, 192, 0.18), transparent 27%),
    linear-gradient(118deg, var(--paper-bright) 0 63%, #e8f1ea 100%);
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--forest) 0 27%, var(--teal) 27% 52%, var(--coral) 52% 73%, var(--orange) 73% 100%);
  content: "";
}
.hero-inner { position: relative; z-index: 2; max-width: 990px; }
.eyebrow, .section-index, .result-stage, .step-label {
  color: var(--forest);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow { display: flex; gap: 10px; align-items: center; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 12px 0 0 var(--teal), 24px 0 0 var(--yellow); margin-right: 22px; }
.hero h1 {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(78px, 10vw, 150px);
  font-weight: 600;
  line-height: 0.82;
}
.hero h1 span { color: var(--forest); }
.hero-expansion { margin: 25px 0 0; color: var(--muted); font-family: var(--mono); font-size: 12px; }
.hero-expansion strong { color: var(--forest); }
.hero-title { max-width: 910px; margin: 25px 0 0; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.32; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; }
.authors { max-width: 920px; margin: 25px 0 35px; color: var(--muted); font-size: 13px; }
.expression-field {
  position: absolute;
  right: -50px;
  top: 80px;
  width: 42vw;
  height: 420px;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(22,79,58,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,79,58,0.10) 1px, transparent 1px),
    radial-gradient(circle, var(--teal) 0 2px, transparent 3px),
    radial-gradient(circle, var(--coral) 0 1px, transparent 2px);
  background-position: 0 0, 0 0, 17px 18px, 4px 9px;
  background-size: 30px 30px, 30px 30px, 30px 30px, 30px 30px;
  mask-image: linear-gradient(90deg, transparent, black 35%);
  transform: rotate(-5deg);
}
.section { width: var(--page); margin: 0 auto; padding: 118px 0; }
.section-lead { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 80px; align-items: end; }
.section-lead h2, .table-heading h2, .examples-heading h2, .resource-main h2 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.98;
}
.section-lead > p { max-width: 500px; margin: 0 0 5px; color: var(--muted); }
.intro { display: grid; grid-template-columns: 0.95fr 1.05fr; column-gap: 80px; }
.intro-copy { padding-top: 26px; }
.intro-copy p { color: var(--muted); }
.intro-copy .lede { margin-top: 0; color: var(--ink); font-family: var(--serif); font-size: 26px; line-height: 1.4; }
.workflow-figure { grid-column: 1 / -1; margin-top: 75px; }
.paper-figure { margin: 0; min-width: 0; }
.figure-open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  cursor: zoom-in;
}
.figure-open img { width: 100%; height: auto; transition: transform 300ms ease; }
.figure-open:hover img { transform: scale(1.008); }
.expand-control {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 8px 10px;
  color: var(--white);
  border-radius: 3px;
  background: rgba(22,34,29,0.88);
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 140ms ease;
}
.figure-open:hover .expand-control, .figure-open:focus-visible .expand-control { opacity: 1; }
.expand-control svg { width: 14px; height: 14px; }
.paper-figure figcaption, .trajectory-caption { margin-top: 13px; color: var(--muted); font-size: 12px; }
.paper-figure figcaption span, .trajectory-caption span { color: var(--ink); font-family: var(--mono); text-transform: uppercase; }
.method-steps { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 75px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.method-steps li { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 34px 34px 0 0; border-right: 1px solid var(--line); }
.method-steps li + li { padding-left: 34px; }
.method-steps li:last-child { border-right: 0; padding-right: 0; }
.step-number { color: var(--coral); font-family: var(--mono); font-size: 12px; }
.method-steps h3 { margin: 7px 0 12px; font-family: var(--serif); font-size: 25px; line-height: 1.17; }
.method-steps p:last-child { margin: 0; color: var(--muted); font-size: 13px; }

.results { width: 100%; padding: 112px max(24px, calc((100vw - 1240px) / 2)); color: var(--white); background: var(--ink); }
.results .section-index, .result-stage { color: var(--cyan); }
.results .section-lead { width: 100%; }
.results .section-lead > p { color: #b9c4bd; }
.result-story { display: grid; grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr); gap: 70px; padding: 100px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.result-story:last-child { border-bottom: 0; padding-bottom: 0; }
.result-copy h3 { margin: 11px 0 19px; font-family: var(--serif); font-size: 40px; font-weight: 500; line-height: 1.05; }
.result-copy > p { color: #b9c4bd; font-size: 14px; }
.metric-pair { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 32px; }
.metric-pair div { min-width: 125px; }
.metric-pair span { display: block; color: #9eaaa3; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.metric-pair strong { display: flex; align-items: center; gap: 8px; margin-top: 3px; color: var(--mint); font-family: var(--serif); font-size: 30px; font-weight: 500; white-space: nowrap; }
.metric-pair strong svg { width: 18px; }
.results .paper-figure figcaption, .results .trajectory-caption { color: #aab6af; }
.results .paper-figure figcaption span, .results .trajectory-caption span { color: var(--white); }
.unsupported-rate { display: flex; align-items: center; gap: 22px; margin-top: 35px; }
.unsupported-rate div { display: flex; flex-direction: column; }
.unsupported-rate span { color: var(--mint); font-family: var(--serif); font-size: 46px; line-height: 1; }
.unsupported-rate small { color: #9eaaa3; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.unsupported-rate svg { color: var(--coral); }
.metric-note { margin-top: 12px; font-family: var(--mono); font-size: 10px !important; text-transform: uppercase; }
.trajectory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.trajectory-caption { grid-column: 1 / -1; }

.orchestration-table { width: 100%; margin: 0; padding: 115px max(24px, calc((100vw - 1240px) / 2)); background: var(--paper-bright); }
.table-heading, .examples-heading { display: grid; grid-template-columns: 1fr 0.72fr; gap: 80px; align-items: end; }
.table-heading > p, .examples-heading > p { max-width: 500px; margin: 0; color: var(--muted); }
.table-layout { display: grid; grid-template-columns: 0.24fr 1.76fr; gap: 38px; align-items: start; margin-top: 55px; }
.table-context { position: sticky; top: 100px; padding: 25px; color: var(--white); background: var(--forest); }
.table-count { color: var(--mint); font-family: var(--serif); font-size: 58px; line-height: 1; }
.table-context > p { margin: 8px 0 22px; color: #c8d8ce; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.table-context dl { display: grid; gap: 10px; margin: 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.2); }
.table-context dl div { display: grid; grid-template-columns: 32px 1fr; align-items: baseline; }
.table-context dt { color: var(--mint); font-family: var(--serif); font-size: 21px; }
.table-context dd { margin: 0; color: #c8d8ce; font-size: 9px; text-transform: uppercase; }
.paper-table { min-width: 0; margin: 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 10px; }
th { color: var(--muted); font-family: var(--mono); font-size: 9px; font-weight: 500; text-align: right; text-transform: uppercase; }
th:first-child { text-align: left; }
th, td { padding: 10px 9px; border-bottom: 1px solid var(--line); }
th span { color: var(--coral); }
td { text-align: right; }
td:first-child { color: var(--forest); font-weight: 650; text-align: left; }
td:nth-child(2) { text-align: left; }
td[rowspan] { vertical-align: top; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
td small { display: block; color: var(--muted); font-family: var(--mono); font-size: 8px; }
.panel-row th { padding: 16px 9px 9px; color: var(--forest); border-bottom: 2px solid var(--forest); background: #e7f2eb; text-align: left; }
.panel-row th span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 8px; color: var(--white); background: var(--forest); }
.panel-row th small { margin-left: 7px; color: var(--muted); font-size: 8px; }
.scacorn-row { background: #f0f5f1; }
.best-row { background: #dcece3; }
.best-row strong { color: var(--forest); font-family: var(--serif); font-size: 15px; font-weight: 600; }
.paper-table figcaption { margin-top: 14px; color: var(--muted); font-size: 11px; }
.paper-table figcaption span { color: var(--forest); font-family: var(--mono); text-transform: uppercase; }

.examples { padding-bottom: 128px; }
.conversation-list { margin-top: 65px; border-bottom: 1px solid var(--line); }
.conversation { border-top: 1px solid var(--line); }
.conversation summary { position: relative; display: grid; grid-template-columns: 235px 1fr 36px; gap: 26px; align-items: center; min-height: 96px; padding: 20px 0; cursor: pointer; list-style: none; }
.conversation summary::-webkit-details-marker { display: none; }
.conversation summary span { color: var(--teal); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.conversation summary strong { font-family: var(--serif); font-size: 25px; font-weight: 500; }
.conversation summary svg { justify-self: end; transition: transform 180ms ease; }
.conversation[open] summary svg { transform: rotate(45deg); }
.conversation-body { padding: 8px 0 42px 261px; }
.message { display: grid; grid-template-columns: 125px 1fr; gap: 24px; padding: 24px 26px; border-top: 1px solid var(--line); }
.message:first-child { border-top: 0; }
.message > span { color: var(--muted); font-family: var(--mono); font-size: 10px; font-weight: 500; text-transform: uppercase; }
.message p { margin: 0; color: var(--muted); font-size: 13px; }
.message p + p { margin-top: 14px; }
.message strong { color: var(--ink); }
.message-user { background: #eef1ed; }
.message-agent { border-left: 3px solid var(--teal); background: var(--white); }
.message-agent > span { color: var(--teal); }
.message-reference { border-left: 3px solid var(--coral); background: #f4ede9; }
.message-reference > span { color: var(--coral); }

.paper-summary { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 80px; }
.summary-label { display: flex; flex-direction: column; justify-content: space-between; min-height: 380px; }
.summary-mark { display: grid; place-items: center; width: 72px; height: 72px; color: var(--white); border-radius: 50%; background: var(--coral); }
.summary-mark svg { width: 30px; height: 30px; }
.abstract p { margin: 0 0 25px; color: var(--muted); font-family: var(--serif); font-size: 25px; line-height: 1.5; }
.abstract p:first-child { color: var(--ink); font-size: 35px; line-height: 1.35; }

.resources { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; width: 100%; padding: 115px max(24px, calc((100vw - 1240px) / 2)); color: var(--white); background: var(--forest); }
.resources .section-index { color: var(--mint); }
.resource-main p { max-width: 500px; color: #c8d8ce; }
.resource-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.resources .button-primary { color: var(--forest); border-color: var(--white); background: var(--white); }
.resources .button-secondary { color: var(--white); border-color: #a8c4b3; background: transparent; }
.citation { min-width: 0; padding: 28px; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; background: rgba(0,0,0,0.1); }
.citation-heading { display: flex; justify-content: space-between; align-items: center; }
.citation h3, .people h3 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.icon-button-light { color: var(--white); }
.icon-button-light:hover, .icon-button-light:focus-visible { background: rgba(255,255,255,0.12); }
.citation pre { margin: 18px 0; overflow-x: auto; color: #dcebe2; font-family: var(--mono); font-size: 10px; line-height: 1.65; white-space: pre-wrap; }
.citation-status { margin: 0; color: #adc5b7; font-size: 10px; }
.people { grid-column: 1 / -1; display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 30px 80px; padding-top: 55px; border-top: 1px solid rgba(255,255,255,0.25); }
.author-list { margin: 0; color: #d9e7de; }
.author-list sup { color: var(--mint); font-family: var(--mono); }
.affiliations { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin: 0; padding: 0; color: #bdd0c4; font-size: 11px; list-style: none; }
.affiliations li { display: grid; grid-template-columns: 20px 1fr; }
.affiliations span { color: var(--mint); font-family: var(--mono); }
.contact-link { grid-column: 2; display: inline-flex; align-items: center; gap: 8px; width: fit-content; color: var(--white); font-size: 12px; }
.contact-link svg { width: 16px; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 120px;
  padding: 30px max(24px, calc((100vw - 1240px) / 2));
  color: #b4c0b9;
  background: #101915;
  font-size: 11px;
}
.brand-footer { color: var(--white); }
footer p { margin: 0; text-align: center; }
footer > a:last-child { display: inline-flex; justify-self: end; align-items: center; gap: 4px; color: var(--white); }
footer > a:last-child svg { width: 14px; }

.lightbox {
  width: calc(100vw - 40px);
  max-width: 1500px;
  height: calc(100vh - 40px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: var(--paper-bright);
}
.lightbox::backdrop { background: rgba(10,17,14,0.88); backdrop-filter: blur(5px); }
.lightbox-bar { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; min-height: 64px; padding: 10px 12px 10px 22px; border-bottom: 1px solid var(--line); }
.lightbox-bar p { margin: 0; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.lightbox-bar .icon-button-light { color: var(--ink); }
.lightbox-canvas { display: grid; place-items: center; height: calc(100% - 64px); padding: 20px; overflow: auto; }
.lightbox-canvas img { width: auto; max-width: 100%; height: auto; max-height: 100%; object-fit: contain; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 950px) {
  :root { --page: min(100% - 40px, 760px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 20px; }
  .desktop-nav { display: none; }
  .menu-button { display: inline-grid; }
  .mobile-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper-bright);
    box-shadow: 0 18px 45px rgba(22,34,29,0.14);
  }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { padding: 12px; }
  .hero { min-height: 820px; padding-top: 120px; }
  .expression-field { right: -100px; width: 70vw; }
  .intro, .section-lead, .table-heading, .examples-heading, .paper-summary, .resources { grid-template-columns: 1fr; }
  .section-lead, .table-heading, .examples-heading, .paper-summary, .resources { gap: 35px; }
  .intro-copy { padding-top: 45px; }
  .method-steps { grid-template-columns: 1fr; }
  .method-steps li, .method-steps li + li { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-steps li:last-child { border-bottom: 0; }
  .result-story { grid-template-columns: 1fr; gap: 45px; }
  .result-copy { max-width: 630px; }
  .table-layout { grid-template-columns: 1fr; gap: 28px; }
  .table-context { position: static; display: grid; grid-template-columns: auto 1fr auto; gap: 0 18px; align-items: center; }
  .table-context > p { margin: 0; }
  .table-context dl { grid-column: 3; grid-row: 1; display: flex; gap: 18px; padding: 0; border: 0; }
  .conversation-body { padding-left: 0; }
  .summary-label { min-height: auto; flex-direction: row; align-items: center; }
  .people { grid-template-columns: 1fr; }
  .affiliations, .contact-link { grid-column: 1; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 32px); }
  html { scroll-padding-top: 66px; }
  body { font-size: 14px; }
  .site-header { height: 64px; padding-inline: 16px; }
  .site-header .button-compact { display: none; }
  .mobile-nav { top: 64px; left: 16px; right: 16px; }
  .hero { min-height: 760px; padding: 105px 16px 0; }
  .hero h1 { font-size: 78px; overflow-wrap: anywhere; }
  .hero-title { font-size: 21px; }
  .hero-expansion { max-width: 350px; font-size: 10px; }
  .hero-actions, .resource-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .resource-actions .button { width: 100%; }
  .authors { font-size: 11px; }
  .section { padding-block: 82px; }
  .section-lead h2, .table-heading h2, .examples-heading h2, .resource-main h2 { font-size: 46px; }
  .intro-copy .lede { font-size: 23px; }
  .workflow-figure { margin-top: 50px; }
  .workflow-figure .figure-open { overflow-x: auto; }
  .workflow-figure img { width: 900px; max-width: none; }
  .figure-open .expand-control { display: none; }
  .paper-figure figcaption { line-height: 1.5; }
  .results, .orchestration-table, .resources { padding: 82px 16px; }
  .result-story { padding: 74px 0; }
  .result-copy h3 { font-size: 35px; }
  .trajectory-grid { grid-template-columns: 1fr; }
  .trajectory-caption { grid-column: 1; }
  .table-heading, .examples-heading { gap: 28px; }
  .table-layout { margin-top: 40px; }
  .table-count { font-size: 48px; }
  .table-context { grid-template-columns: auto 1fr; }
  .table-context dl { grid-column: 1 / -1; grid-row: 2; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.2); }
  .table-wrap { margin-right: -16px; padding-right: 16px; }
  table { min-width: 900px; }
  .conversation-list { margin-top: 42px; }
  .conversation summary { grid-template-columns: 1fr 30px; gap: 7px 16px; min-height: 108px; }
  .conversation summary span { grid-column: 1; }
  .conversation summary strong { grid-column: 1; font-size: 22px; }
  .conversation summary svg { grid-column: 2; grid-row: 1 / 3; }
  .conversation-body { padding-bottom: 28px; }
  .message { grid-template-columns: 1fr; gap: 9px; padding: 21px 18px; }
  .abstract p { font-size: 21px; }
  .abstract p:first-child { font-size: 29px; }
  .summary-mark { width: 54px; height: 54px; }
  .citation { padding: 20px; }
  .people { padding-top: 42px; }
  .affiliations { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr auto; gap: 20px; }
  footer p { display: none; }
  .lightbox { width: 100vw; height: 100vh; border-radius: 0; }
  .lightbox-canvas { display: block; padding: 12px; overflow: auto; }
  .lightbox-canvas img { max-width: none; width: 1100px; max-height: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
