:root {
  color-scheme: light dark;
  --paper: #f4f6f2;
  --ink: #171c19;
  --muted: #58645e;
  --faint: #66716b;
  --rule: #d3dad4;
  --surface: #fbfcf9;
  --surface-strong: #ffffff;
  --green: #18703a;
  --green-soft: #dfece2;
  --orange: #ad512d;
  --orange-soft: #f2e5df;
  --blue: #266681;
  --blue-soft: #dfebef;
  --highlight: #f1d66c;
  --highlight-strong: #d5aa24;
  --mark: rgb(24 112 58 / 14%);
  --mark-strong: rgb(24 112 58 / 30%);
  --shadow: 0 18px 55px rgb(19 28 22 / 14%);
  --serif: "Charter", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --display: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --data: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --topbar: 64px;
  --returnbar: 45px;
  --rail: 252px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #111613;
    --ink: #e7ece7;
    --muted: #aab5ae;
    --faint: #88938c;
    --rule: #303a33;
    --surface: #171e19;
    --surface-strong: #1b231d;
    --green: #55ce78;
    --green-soft: #183824;
    --orange: #ef936c;
    --orange-soft: #3a251d;
    --blue: #79bdd7;
    --blue-soft: #18313b;
    --highlight: #7a6320;
    --highlight-strong: #b99931;
    --mark: rgb(85 206 120 / 17%);
    --mark-strong: rgb(85 206 120 / 34%);
    --shadow: 0 18px 55px rgb(0 0 0 / 36%);
  }
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--topbar) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.panel-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

main:focus-visible {
  outline: 0;
}

::selection {
  background: var(--green-soft);
}

.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;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ui);
  font-size: 14px;
  transform: translateY(-160%);
}

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

#readProgress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 3px;
  pointer-events: none;
}

#readProgress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: var(--rail) minmax(180px, 1fr) 36px 36px;
  align-items: center;
  min-height: var(--topbar);
  padding: 0 18px;
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(14px);
  font-family: var(--ui);
}

.topbar .wordmark {
  grid-column: 1;
}

.chapter-context {
  grid-column: 2;
}

.highlights-button {
  grid-column: 3;
  justify-self: end;
}

.top-search-button {
  grid-column: 4;
  justify-self: end;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.wordmark svg {
  width: 31px;
  height: 31px;
  overflow: visible;
}

.wordmark .teeth,
.wordmark .ring,
.wordmark .wave {
  fill: none;
  stroke: var(--green);
}

.wordmark .teeth {
  stroke-width: 3;
  stroke-dasharray: 2 3.3;
  transform-origin: 32px 32px;
  animation: spin 80s linear infinite reverse;
}

.wordmark .ring,
.wordmark .wave {
  stroke-width: 1.5;
}

.wordmark .hub {
  fill: var(--green);
}

.wordmark span {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.wordmark strong {
  font-size: 14px;
  font-weight: 650;
}

.wordmark small {
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
}

.chapter-context {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.chapter-context:hover {
  color: var(--ink);
}

body[data-doc="intro"] .chapter-context {
  display: none;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--rule);
  background: var(--surface);
}

.icon-button svg,
.search-field svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button .count {
  position: absolute;
  top: -2px;
  right: -2px;
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--ui);
  font-size: 9px;
  line-height: 1;
}

.reading-return {
  position: sticky;
  top: var(--topbar);
  z-index: 82;
  height: var(--returnbar);
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  backdrop-filter: blur(14px);
  font-family: var(--ui);
}

.reading-return a {
  display: grid;
  grid-template-columns: 16px max-content minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  width: min(100%, 720px);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}

.reading-return a > span:first-child {
  color: var(--orange);
  font-size: 16px;
}

.reading-return strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reading-return a:hover strong {
  color: var(--green);
}

.app-shell {
  display: block;
  min-height: calc(100vh - var(--topbar));
}

.contents-panel {
  position: fixed;
  top: var(--topbar);
  left: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: min(340px, calc(100vw - 40px));
  height: calc(100vh - var(--topbar));
  padding: 24px 18px 18px;
  overflow-y: auto;
  border-right: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: var(--shadow);
  font-family: var(--ui);
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform 220ms ease, visibility 0s linear 220ms;
}

.contents-panel.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 220ms ease, visibility 0s;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  color: var(--faint);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contents-panel .close-button {
  display: inline-grid;
}

.document-nav {
  margin: 4px 0 18px;
}

.document-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: start;
  padding: 8px 4px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
}

.document-nav a::before {
  content: attr(data-index);
  color: var(--faint);
  font-family: var(--data);
  font-size: 10px;
  line-height: 1.8;
}

.document-nav a small {
  color: var(--faint);
  font-family: var(--data);
  font-size: 9px;
  line-height: 1.8;
}

.document-nav a:hover,
.document-nav a[aria-current="page"] {
  color: var(--ink);
}

.document-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  top: 13px;
  left: -18px;
  width: 9px;
  height: 2px;
  background: var(--green);
}

.contents-tools {
  margin: 8px 0 20px;
  padding: 6px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.contents-action {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 5px 3px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.contents-action:hover {
  color: var(--ink);
}

.contents-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contents-action .count {
  color: var(--orange);
  font-family: var(--data);
  font-size: 10px;
}

.outline-block {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.outline-block > p {
  margin: 0 0 9px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.contents-label {
  margin: 18px 0 0;
  color: var(--faint);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

#documentOutline a {
  position: relative;
  display: block;
  padding: 5px 2px 5px 12px;
  color: var(--faint);
  text-decoration: none;
  font-size: 11px;
  line-height: 1.35;
}

#documentOutline a::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rule);
}

#documentOutline a.level-3 {
  padding-left: 24px;
}

#documentOutline a:hover,
#documentOutline a.active {
  color: var(--ink);
}

#documentOutline a.active::before {
  background: var(--orange);
}

.edition-stamp {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--faint);
  font-size: 9px;
  text-transform: uppercase;
}

.reading-column {
  width: 100%;
  min-width: 0;
}

main {
  width: min(100%, 720px);
  min-height: 70vh;
  margin: 0 auto;
  padding: 66px 28px 90px;
  overflow-wrap: break-word;
}

main > p,
main > ul,
.argument-section > p,
.argument-section > ul,
.evidence-flow > p,
.evidence-flow > ul {
  max-width: 66ch;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
}

h1 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.18;
  text-wrap: balance;
}

h3 {
  margin: 36px 0 10px;
  font-family: var(--ui);
  font-size: 18px;
  line-height: 1.3;
}

p {
  margin: 0 0 1.25em;
}

ul {
  margin: 0 0 1.4em;
  padding-left: 1.25em;
}

li {
  margin-bottom: 0.5em;
}

hr {
  width: 100%;
  margin: 32px 0;
  border: 0;
  border-top: 1px solid var(--rule);
}

code {
  padding: 1px 4px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--surface);
  font-family: var(--data);
  font-size: 0.82em;
}

p.meta {
  margin-bottom: 0;
  color: var(--faint);
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.5;
}

p.meta em {
  font-style: normal;
}

main a {
  text-decoration-color: color-mix(in srgb, var(--green) 42%, transparent);
}

main a:hover {
  text-decoration-color: var(--green);
}

.edition-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 46px;
  color: var(--faint);
  font-family: var(--ui);
  font-size: 11px;
  text-transform: uppercase;
}

.edition-mark svg {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.edition-mark .teeth,
.edition-mark .ring,
.edition-mark .wave {
  fill: none;
  stroke: var(--green);
}

.edition-mark .teeth {
  stroke-width: 2.7;
  stroke-dasharray: 2 3.2;
  transform-origin: 32px 32px;
  animation: spin 90s linear infinite reverse;
}

.edition-mark .ring,
.edition-mark .wave {
  stroke-width: 1.2;
}

.edition-mark .hub {
  fill: var(--green);
}

.opener {
  margin-bottom: 12px;
}

.opener > svg.art {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 0 28px;
}

.opener > svg .ln {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
}

.opener > svg .fd {
  fill: var(--green);
}

.opener > svg .faint {
  opacity: 0.35;
}

.opener .eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.opener .eyebrow .mins {
  color: var(--faint);
  font-weight: 450;
}

.opener .dek {
  max-width: 30em;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 23px;
  font-style: italic;
  line-height: 1.45;
  text-wrap: balance;
}

.intro-parts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--ui);
}

.intro-part-link {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: baseline;
  min-height: 58px;
  padding: 12px 10px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.intro-part-link:nth-child(n + 4) {
  border-top: 1px solid var(--rule);
}

.intro-part-link:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--rule);
}

.intro-part-link span,
.intro-part-link small {
  color: var(--faint);
  font-family: var(--data);
  font-size: 9px;
  line-height: 1.4;
  white-space: nowrap;
}

.intro-part-link span {
  color: var(--orange);
}

.intro-part-link strong {
  min-width: 0;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}

.intro-part-link:hover,
.intro-part-link:focus-visible {
  background: color-mix(in srgb, var(--green) 7%, transparent);
  color: var(--green);
  text-decoration: none;
}

.intro-parts + .keydata {
  margin-top: 18px;
}

.keydata {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 14px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--data);
  font-size: 11px;
  line-height: 1.5;
}

.keydata span {
  min-width: 0;
  padding: 12px 14px 12px 0;
  color: var(--muted);
}

.keydata span:nth-child(even) {
  padding-left: 14px;
  border-left: 1px solid var(--rule);
}

.keydata b {
  color: var(--green);
  font-weight: 750;
}

.heroscroll {
  --hero-width: min(940px, calc(100vw - 64px));
  position: relative;
  width: var(--hero-width);
  height: 155vh;
  margin: 16px 0 52px 50%;
  transform: translateX(-50%);
}

.heroscroll[data-stage-count="2"] {
  height: 195vh;
}

.heroscroll[data-stage-count="3"] {
  height: 245vh;
}

.hero-shell {
  position: sticky;
  top: calc(var(--topbar) + 22px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 228px;
  gap: 30px;
  align-items: start;
  height: calc(100vh - var(--topbar) - 44px);
  padding-top: clamp(18px, 3vh, 30px);
}

.hero-shell:not(:has(.hero-beats)) {
  grid-template-columns: minmax(0, 1fr);
}

.hero-shell:not(:has(.hero-beats)) .hero-meter {
  display: none;
}

.heroscene {
  --accent: var(--green);
  --bg: var(--paper);
  --sans: var(--ui);
  min-width: 0;
  margin: 0;
}

.scene,
.mfig {
  --accent: var(--green);
  --bg: var(--paper);
  --sans: var(--ui);
}

.heroscene svg,
.scene svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.heroscene svg.sysline {
  max-height: calc(100vh - 132px);
  margin: 0;
  overflow: hidden;
}

.heroscene .ln,
.scene .ln {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.4;
}

.heroscene .fd,
.scene .fd {
  fill: var(--green);
}

.heroscene .faint,
.scene .faint {
  opacity: 0.48;
}

.heroscene [data-isolate-stages] .hero-stage-inactive {
  opacity: 0 !important;
  transition: opacity 180ms ease-out;
}

.hero-static-stages {
  display: none;
}

.heroscene text,
.scene text {
  fill: var(--muted);
  font-family: var(--data);
}

.heroscene .sysline text.big,
.heroscene .sysline text.head,
.scene .sysline text.big,
.scene .sysline text.head {
  fill: var(--green);
}

.heroscene .sysline text.hero-kicker,
.scene .sysline text.hero-kicker {
  fill: var(--faint);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
}

.heroscene .sysline text.hero-metric,
.scene .sysline text.hero-metric {
  fill: var(--green);
  font-family: var(--data);
  font-size: 18px;
  font-weight: 750;
}

.heroscene .sysline text.hero-note,
.scene .sysline text.hero-note {
  fill: var(--faint);
  font-family: var(--ui);
  font-size: 8.5px;
}

.heroscene .sysline text.hero-date,
.scene .sysline text.hero-date {
  fill: var(--green);
  font-family: var(--data);
  font-size: 10px;
  font-weight: 750;
}

.heroscene .sysline text.hero-step,
.scene .sysline text.hero-step {
  fill: var(--muted);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
}

.heroscene .sysline text.hero-claim,
.scene .sysline text.hero-claim {
  fill: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}

.orb1,
.orb2,
.fw {
  transform-origin: 32px 32px;
}

.orb1 { animation: spin 9s linear infinite; }
.orb2 { animation: spin 16s linear infinite reverse; }
.fw { animation: spin 14s linear infinite; }
.fw2 { transform-origin: 7px 6px; animation: spin 9s linear infinite; }
.m-spin { transform-origin: 8px 8px; animation: spin 10s linear infinite; }
.m-spin.slow { animation-duration: 20s; }
.dm { animation: dim 3.2s ease-in-out infinite; }
.site { animation: dim 2.6s ease-in-out infinite; }
.flow { stroke-dasharray: 3 4.5; animation: flow 2.4s linear infinite; }
.gate { animation: flow 2.4s linear infinite, gate 5.2s ease-in-out infinite; }

.hero-beats {
  align-self: start;
  min-height: 188px;
  padding-left: 22px;
  border-left: 1px solid var(--rule);
}

.hero-beat {
  display: none;
  animation: beat-in 320ms ease both;
}

.hero-beat:first-child,
.hero-beat.is-active {
  display: block;
}

.hero-beats.has-active .hero-beat:first-child:not(.is-active) {
  display: none;
}

.hero-beat > span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--data);
  font-size: 11px;
}

.hero-beat strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.2;
}

.hero-beat p {
  margin: 0;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1.55;
}

.hero-meter {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 228px;
  height: 2px;
  background: var(--rule);
}

.hero-meter i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.scene {
  width: min(100%, 620px);
  margin: 36px auto 44px;
}

.scene figcaption {
  max-width: 54ch;
  margin: 12px auto 0;
  color: var(--faint);
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.chapmark {
  width: 46px;
  height: 46px;
  margin: 0;
}

.chapmark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.chapmark .ln {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
}

.chapmark .fd {
  fill: var(--green);
}

.chapmark .faint {
  opacity: 0.35;
}

.mfig {
  float: right;
  width: 126px;
  margin: 7px -152px 12px 24px;
  font-family: var(--ui);
}

.mfig .mv {
  display: block;
  color: var(--green);
  font-family: var(--data);
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.mfig .ml {
  display: block;
  margin-top: 6px;
  color: var(--faint);
  font-size: 10px;
  line-height: 1.45;
}

.argument-map {
  width: min(900px, calc(100vw - 64px));
  margin: 66px 0 58px 50%;
  transform: translateX(-50%);
  font-family: var(--ui);
}

.argument-map-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 4px 12px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.argument-map-head span:last-child {
  font-family: var(--data);
  font-weight: 500;
}

.argument-map ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--rule);
  list-style: none;
}

.argument-map li {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.argument-map li:nth-child(even) {
  border-left: 1px solid var(--rule);
}

.argument-map a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 118px;
  padding: 17px 16px;
  color: var(--ink);
  text-decoration: none;
  transition: background 160ms ease;
}

.argument-map a:hover {
  background: color-mix(in srgb, var(--surface) 64%, transparent);
  text-decoration: none;
}

.argument-number {
  color: var(--orange);
  font-family: var(--data);
  font-size: 11px;
  line-height: 1.7;
}

.argument-copy {
  min-width: 0;
}

.argument-copy strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.argument-copy > span {
  display: block;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.5;
}

.argument-evidence {
  grid-column: 2;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) auto;
  gap: 6px;
  align-items: baseline;
  margin-top: 8px;
  text-align: left;
}

.argument-evidence strong,
.argument-evidence span,
.argument-evidence small {
  display: block;
}

.argument-evidence strong {
  color: var(--green);
  font-family: var(--data);
  font-size: 12px;
  line-height: 1.35;
}

.argument-evidence span {
  color: var(--faint);
  font-family: var(--ui);
  font-size: 10px;
  line-height: 1.4;
}

.argument-evidence small {
  color: var(--orange);
  font-family: var(--data);
  font-size: 10px;
  text-transform: uppercase;
}

.argument-section {
  position: relative;
  margin-top: 108px;
  padding-top: 2px;
}

.argument-map + .heroscroll,
.argument-map + .argument-section {
  margin-top: 34px;
}

.section-heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  margin-bottom: 18px;
}

.section-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 46px;
  margin: 0;
  padding: 7px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--faint);
  font-family: var(--data);
  font-size: 10px;
  text-transform: uppercase;
}

.section-meta span:first-child {
  margin-right: auto;
  color: var(--orange);
}

.section-evidence {
  max-width: 330px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.section-evidence b {
  color: var(--green);
}

.thesis-line {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: none;
  margin: 0 0 54px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.thesis-line > span {
  color: var(--orange);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.thesis-line > strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.argument-section > p:first-of-type {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.56;
}

.evidence-flow {
  margin-top: 8px;
}

#the-parts {
  margin-top: 110px;
}

.part-index {
  width: min(800px, calc(100vw - 64px));
  margin: 42px 0 0 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--rule);
}

.part-entry {
  --tone: var(--green);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: start;
  padding: 28px 4px;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
}

.part-entry.tone-1 {
  --tone: var(--orange);
}

.part-entry.tone-2 {
  --tone: var(--blue);
}

.part-entry:hover {
  background: color-mix(in srgb, var(--surface) 60%, transparent);
  text-decoration: none;
}

.part-no {
  color: var(--tone);
  font-family: var(--display);
  font-size: 31px;
  line-height: 1;
}

.part-copy {
  display: block;
}

.part-meta {
  display: block;
  margin-bottom: 5px;
  color: var(--tone);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.part-copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.2;
}

.part-summary {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.part-arrow {
  color: var(--tone);
  font-family: var(--ui);
  font-size: 20px;
  transition: transform 180ms ease;
}

.part-entry:hover .part-arrow {
  transform: translateX(4px);
}

.registry-tools {
  position: sticky;
  top: calc(var(--topbar) + 12px);
  z-index: 5;
  margin: 24px 0 54px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  font-family: var(--ui);
}

body.has-reading-return .registry-tools {
  top: calc(var(--topbar) + var(--returnbar) + 12px);
}

.registry-tools > label {
  display: block;
  margin-bottom: 7px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.registry-filter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.registry-filter input {
  min-width: 0;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  outline: 0;
}

.registry-filter span {
  color: var(--faint);
  font-family: var(--data);
  font-size: 10px;
}

.registry-entry {
  padding: 20px 0 16px;
  border-top: 1px solid var(--rule);
  scroll-margin-top: calc(var(--topbar) + var(--returnbar) + 132px);
}

.registry-entry.source-target {
  border-top-color: var(--orange);
}

.return-target {
  border-radius: 2px;
  box-shadow: 0 0 0 4px var(--orange-soft);
}

.registry-entry h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.registry-entry p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.registry-entry[hidden],
.registry-category-empty {
  display: none;
}

.document-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(calc(100% - 56px), 720px);
  margin: 0 auto 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--ui);
}

.document-footer a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 20px 0;
  color: var(--ink);
  text-decoration: none;
}

.document-footer a + a {
  padding-left: 22px;
  border-left: 1px solid var(--rule);
  text-align: right;
}

.document-footer a:first-child:not(:last-child) {
  padding-right: 22px;
}

.document-footer small {
  color: var(--faint);
  font-size: 9px;
  text-transform: uppercase;
}

.document-footer span {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-scrim {
  position: fixed;
  inset: var(--topbar) 0 0;
  z-index: 70;
  background: rgb(10 15 12 / 36%);
}

.empty-state {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  color: var(--faint);
  font-size: 13px;
}

dialog {
  color: var(--ink);
}

dialog::backdrop {
  background: rgb(10 15 12 / 48%);
  backdrop-filter: blur(2px);
}

.search-dialog {
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.search-dialog {
  width: min(720px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 40px));
}

.search-dialog form {
  display: flex;
  flex-direction: column;
  max-height: inherit;
}

.highlights-dialog {
  width: min(620px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 40px));
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.highlights-dialog form {
  display: flex;
  flex-direction: column;
  max-height: inherit;
}

.highlights-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 10px 14px 10px 18px;
  border-bottom: 1px solid var(--rule);
}

.highlights-head h2 {
  margin: 0;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 700;
}

.highlights-list {
  min-height: 150px;
  padding: 6px 18px 18px;
  overflow-y: auto;
  font-family: var(--ui);
}

.highlight-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: stretch;
  border-bottom: 1px solid var(--rule);
}

.highlight-entry-main,
.highlight-entry-remove {
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.highlight-entry-main {
  min-width: 0;
  padding: 12px 12px 12px 0;
  text-align: left;
}

.highlight-entry-main small {
  display: block;
  margin-bottom: 3px;
  overflow: hidden;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.highlight-entry-main span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.highlight-entry-remove {
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--faint);
  font-size: 18px;
}

.highlight-entry-main:hover,
.highlight-entry-remove:hover {
  background: color-mix(in srgb, var(--surface-strong) 76%, transparent);
}

mark.reader-highlight {
  margin: 0 -0.02em;
  padding: 0 0.02em;
  border-radius: 2px;
  background: color-mix(in srgb, var(--highlight) 72%, transparent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: inherit;
  cursor: pointer;
}

mark.reader-highlight:hover,
mark.reader-highlight.is-active,
mark.reader-highlight:focus-visible {
  background: color-mix(in srgb, var(--highlight-strong) 74%, transparent);
}

.highlight-toolbar {
  position: fixed;
  z-index: 160;
  display: flex;
  gap: 1px;
  min-height: 44px;
  padding: 3px;
  border: 1px solid var(--rule);
  border-radius: 7px;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-family: var(--ui);
}

.highlight-toolbar button {
  min-width: 88px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.highlight-toolbar button:hover,
.highlight-toolbar button:focus-visible {
  background: color-mix(in srgb, var(--paper) 14%, transparent);
}

.highlight-toolbar[data-mode="remove"] {
  background: var(--surface-strong);
}

.highlight-toolbar[data-mode="remove"] button {
  color: var(--ink);
}

.search-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--faint);
}

.search-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
}

.search-results {
  min-height: 150px;
  padding: 10px 14px 16px;
  overflow-y: auto;
}

.search-result {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
}

.search-result:hover {
  text-decoration: none;
}

.search-result > span:first-child {
  color: var(--green);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
}

.search-result strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--ui);
  font-size: 13px;
}

.search-result p {
  margin: 0;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.45;
}

.loading-mark {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 22vh;
}

.loading-mark i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 900ms ease infinite alternate;
}

.loading-mark i:nth-child(2) {
  animation-delay: 160ms;
}

.loading-mark i:nth-child(3) {
  animation-delay: 320ms;
}

.route-error {
  padding-top: 20vh;
  text-align: center;
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  from { opacity: 0.25; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(-2px); }
}

@keyframes beat-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dim {
  0%, 100% { opacity: 0.22; }
  50% { opacity: 0.8; }
}

@keyframes flow {
  to { stroke-dashoffset: -30; }
}

@keyframes gate {
  0%, 55%, 100% { opacity: 1; }
  65%, 85% { opacity: 0.15; }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: minmax(190px, 1fr) minmax(0, auto) 36px 36px;
  }

  .chapter-context {
    justify-self: end;
  }

  .contents-panel {
    width: min(320px, calc(100vw - 40px));
  }

  .heroscroll {
    --hero-width: min(940px, calc(100vw - 48px));
  }

  .argument-map {
    width: min(840px, calc(100vw - 48px));
  }

  .part-index {
    width: min(800px, calc(100vw - 48px));
  }

  .mfig {
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --topbar: 58px;
  }

  body {
    font-size: 17px;
    line-height: 1.66;
  }

  .topbar {
    grid-template-columns: max-content minmax(0, 1fr) 36px 36px;
    gap: 5px;
    padding: 0 10px;
  }

  .reading-return a {
    padding: 0 20px;
  }

  .wordmark {
    gap: 7px;
  }

  .wordmark svg {
    width: 27px;
    height: 27px;
  }

  .wordmark strong {
    font-size: 12px;
  }

  .wordmark small {
    display: none;
  }

  .chapter-context {
    justify-self: stretch;
    justify-content: flex-end;
    width: auto;
    max-width: 100%;
    height: 36px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
  }

  .chapter-context span {
    display: block;
    min-width: 0;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  main {
    padding: 42px 20px 72px;
  }

  h1 {
    font-size: 37px;
    line-height: 1.08;
  }

  h2 {
    font-size: 27px;
  }

  .edition-mark {
    margin-bottom: 34px;
  }

  .edition-mark span {
    max-width: 190px;
    line-height: 1.35;
  }

  .opener .dek {
    font-size: 21px;
  }

  .intro-parts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-parts .intro-part-link {
    grid-template-columns: 18px minmax(0, 1fr);
    min-height: 68px;
    border-left: 0;
  }

  .intro-parts .intro-part-link:nth-child(n + 3) {
    border-top: 1px solid var(--rule);
  }

  .intro-parts .intro-part-link:nth-child(even) {
    border-left: 1px solid var(--rule);
  }

  .intro-part-link small {
    grid-column: 2;
  }

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

  .keydata span {
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
  }

  .keydata span:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .keydata span:last-child {
    border-bottom: 0;
  }

  .heroscroll,
  .heroscroll[data-stage-count="2"],
  .heroscroll[data-stage-count="3"] {
    width: 100%;
    height: auto;
    margin: 28px 0 54px;
    transform: none;
  }

  .hero-shell {
    position: static;
    display: block;
    height: auto;
    padding-top: 0;
  }

  .heroscene svg.sysline {
    max-height: none;
    overflow: visible;
  }

  .heroscroll.has-static-frames .heroscene > svg {
    display: none;
  }

  .hero-static-stages {
    display: grid;
    gap: 18px;
  }

  .hero-static-frame {
    padding: 4px 0 18px;
    border-bottom: 1px solid var(--rule);
  }

  .hero-static-frame:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .hero-static-frame svg.sysline {
    width: 100%;
    aspect-ratio: 1.45;
    overflow: hidden;
  }

  .hero-static-stages[data-prebuilt] .hero-static-frame svg.sysline {
    height: auto;
    aspect-ratio: auto;
  }

  .hero-static-stages[data-prebuilt] .sysline text {
    font-size: 12px;
  }

  .hero-static-stages[data-prebuilt] .sysline text.hero-kicker {
    font-size: 10px;
  }

  .hero-static-stages[data-prebuilt] .sysline text.hero-metric {
    font-size: 18px;
  }

  .hero-static-stages[data-prebuilt] .sysline text.hero-note {
    font-size: 12px;
  }

  .hero-static-stages[data-prebuilt] .sysline text.hero-claim {
    font-size: 16px;
  }

  .hero-static-stages[data-prebuilt] .sysline text.hero-date {
    fill: var(--green);
    font-size: 12px;
    font-weight: 750;
  }

  .hero-static-stages[data-prebuilt] .sysline text.hero-step {
    font-size: 12px;
  }

  .hero-static-frame .sysline text.hero-kicker {
    font-size: 11px;
  }

  .hero-static-frame .sysline text.hero-metric {
    font-size: 20px;
  }

  .hero-static-frame .sysline text.hero-note {
    font-size: 12px;
  }

  .hero-static-frame .sysline text.hero-claim {
    font-size: 18px;
  }

  .heroscene .sysline text.hero-kicker {
    font-size: 16px;
  }

  .heroscene .sysline text.hero-metric {
    font-size: 22px;
  }

  .heroscene .sysline text.hero-note {
    font-size: 16px;
  }

  .heroscene .sysline text.hero-claim {
    font-size: 20px;
  }

  .heroscene .sysline text,
  .scene .sysline text {
    font-size: 18px;
  }

  .heroscene .sysline .ta,
  .heroscene .sysline .te,
  .scene .sysline .ta,
  .scene .sysline .te {
    font-size: 16px;
  }

  .heroscene .sysline text.big,
  .scene .sysline text.big {
    font-size: 19px;
  }

  .hero-beats {
    min-height: 0;
    margin-top: 24px;
    padding: 0;
    border: 0;
  }

  .hero-beat,
  .hero-beat:first-child,
  .hero-beat.is-active,
  .hero-beats.has-active .hero-beat:first-child:not(.is-active) {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 4px 10px;
    padding: 15px 0;
    border-top: 1px solid var(--rule);
    animation: none;
  }

  .hero-beat > span {
    grid-row: 1 / 3;
    margin: 2px 0 0;
  }

  .hero-beat strong {
    margin: 0;
    font-size: 18px;
  }

  .hero-beat p {
    grid-column: 2;
  }

  .hero-meter {
    display: none;
  }

  .mfig {
    float: none;
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    width: 100%;
    margin: 8px 0 16px;
    padding: 11px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .mfig .mv {
    font-size: 19px;
  }

  .mfig .ml {
    margin: 0;
  }

  .argument-map {
    width: 100%;
    margin: 50px 0 48px;
    transform: none;
  }

  .argument-map-head {
    padding-right: 0;
    padding-left: 0;
  }

  .argument-map ol {
    grid-template-columns: 1fr;
  }

  .argument-map li:nth-child(even) {
    border-left: 0;
  }

  .argument-map a {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 16px 0;
  }

  .argument-copy strong {
    font-size: 18px;
  }

  .argument-copy > span {
    font-size: 13px;
  }

  .argument-evidence {
    grid-column: 2;
    text-align: left;
  }

  .argument-section {
    margin-top: 88px;
  }

  .argument-section > p:first-of-type {
    font-size: 18px;
  }

  .section-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .section-heading {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .section-heading .chapmark {
    width: 40px;
    height: 40px;
  }

  .section-evidence {
    flex-basis: 100%;
    max-width: none;
    white-space: normal;
  }

  .thesis-line {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 42px;
  }

  .thesis-line > strong {
    font-size: 18px;
  }

  #the-parts {
    margin-top: 86px;
  }

  .part-index {
    width: 100%;
    margin: 34px 0 0;
    transform: none;
  }

  .part-entry {
    grid-template-columns: 37px minmax(0, 1fr) 18px;
    gap: 12px;
    padding: 23px 0;
  }

  .part-no {
    font-size: 24px;
  }

  .part-copy strong {
    font-size: 21px;
  }

  .part-summary {
    font-size: 14px;
  }

  .registry-tools {
    top: calc(var(--topbar) + 8px);
  }

  body.has-reading-return .registry-tools {
    top: calc(var(--topbar) + var(--returnbar) + 8px);
  }

  .registry-filter {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .search-result {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .highlight-toolbar {
    inset: auto 12px calc(12px + env(safe-area-inset-bottom)) !important;
    justify-content: center;
    transform: none !important;
  }

  .highlight-toolbar button {
    min-height: 44px;
  }

  .document-footer {
    width: calc(100% - 40px);
  }
}

@media (max-width: 390px) {
  .topbar {
    grid-template-columns: max-content minmax(0, 1fr) 34px 34px;
  }

  .wordmark strong {
    font-size: 11px;
    white-space: nowrap;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 34px;
  }
}

@media (max-width: 350px) {
  .wordmark strong {
    font-size: 0;
  }

  .wordmark strong::after {
    content: "GAT";
    font-size: 12px;
  }

}

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

  .orb1,
  .orb2,
  .fw,
  .fw2,
  .m-spin,
  .dm,
  .site,
  .flow,
  .gate {
    animation: none !important;
  }

  .heroscroll,
  .heroscroll[data-stage-count="2"],
  .heroscroll[data-stage-count="3"] {
    height: auto;
  }

  .hero-shell {
    position: static;
    height: auto;
    padding-top: 0;
  }

  .hero-meter {
    display: none;
  }
}

@media print {
  :root {
    --paper: #fff;
    --ink: #111;
    --muted: #444;
    --faint: #666;
    --rule: #bbb;
  }

  .topbar,
  #readProgress,
  .contents-panel,
  dialog,
  .document-footer,
  .hero-beats,
  .hero-meter,
  .reading-return,
  .highlight-toolbar {
    display: none !important;
  }

  mark.reader-highlight {
    background: #ddd !important;
    color: #000 !important;
  }

  .app-shell,
  .reading-column {
    display: block;
  }

  main {
    width: 100%;
    max-width: 72ch;
    padding: 0;
  }

  .heroscroll,
  .heroscroll[data-stage-count="3"] {
    width: 100%;
    height: auto;
    margin: 24px 0;
    transform: none;
  }

  .hero-shell {
    position: static;
    display: block;
    height: auto;
    padding-top: 0;
  }

  main [data-motion-ready] {
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }

  main .heroscene [data-isolate-stages] .hero-stage-inactive {
    opacity: 1 !important;
    transition: none !important;
  }

  a {
    color: inherit;
  }
}
