:root {
  --ink: #f2ead8;
  --ink-soft: #c8c1b2;
  --ink-dim: #8f948f;
  --void: #04080a;
  --night: #071117;
  --night-blue: #0c1d28;
  --iron: #171d20;
  --steel: #aeb9bb;
  --bronze: #b9833f;
  --ember: #e5903b;
  --ember-bright: #ffc270;
  --line: rgba(205, 222, 221, 0.19);
  --line-warm: rgba(229, 144, 59, 0.36);
  --glass: rgba(5, 11, 15, 0.42);
  --glass-deep: rgba(3, 8, 11, 0.62);
  --shadow: 0 26px 72px rgba(0, 0, 0, 0.4);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --display: "Copperplate", "Copperplate Gothic Light", "Iowan Old Style",
    Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  color-scheme: dark;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--void);
}

body {
  isolation: isolate;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--void);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(1, 4, 6, 0.16), rgba(1, 4, 6, 0.5)),
    url("/assets/classic-plus-world.webp") center 44% / cover no-repeat;
  transform: scale(1.015);
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.7;
  background:
    radial-gradient(circle at 50% 12%, rgba(23, 58, 75, 0.06), transparent 39%),
    radial-gradient(circle at 11% 80%, rgba(213, 129, 45, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(1, 4, 6, 0.31), transparent 21%, transparent 79%, rgba(1, 4, 6, 0.31));
}

a {
  color: inherit;
}

button {
  font: inherit;
}

button:not([disabled]),
a[href] {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--ember-bright);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.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;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--void);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.world-scrim {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 7, 10, 0.2) 0%, rgba(2, 7, 10, 0.04) 28%, rgba(2, 7, 10, 0.36) 100%),
    radial-gradient(ellipse at center, transparent 28%, rgba(0, 0, 0, 0.42) 100%);
}

.site-shell {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 2.5vw, 2.2rem) 0 2rem;
}

.masthead {
  display: grid;
  justify-items: center;
  min-height: clamp(210px, 30vw, 350px);
  padding-top: clamp(0.4rem, 2vw, 1.3rem);
  text-align: center;
}

.masthead__marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: rgba(225, 232, 228, 0.76);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px #000;
}

.masthead__marks span[aria-hidden="true"] {
  color: var(--bronze);
  font-size: 0.45rem;
}

.brand {
  display: block;
  width: min(770px, 82vw);
  max-width: 100%;
  margin: clamp(0.45rem, 1.5vw, 1rem) auto 0;
  text-decoration: none;
  filter:
    drop-shadow(0 5px 3px rgba(0, 0, 0, 0.58))
    drop-shadow(0 16px 35px rgba(0, 0, 0, 0.56));
  transition: filter 180ms ease, transform 180ms ease;
}

.brand:hover {
  filter:
    drop-shadow(0 5px 3px rgba(0, 0, 0, 0.66))
    drop-shadow(0 15px 38px rgba(229, 144, 59, 0.16));
  transform: translateY(-2px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.masthead__line {
  position: relative;
  max-width: 100%;
  margin: -0.1rem 0 0;
  color: rgba(241, 233, 216, 0.89);
  font-family: var(--display);
  font-size: clamp(0.75rem, 1.5vw, 0.93rem);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  text-shadow: 0 2px 15px #000;
}

.masthead__line::before,
.masthead__line::after {
  display: inline-block;
  width: clamp(22px, 5vw, 64px);
  height: 1px;
  margin: 0 0.75rem 0.28rem;
  content: "";
  background: linear-gradient(90deg, transparent, var(--bronze));
}

.masthead__line::after {
  background: linear-gradient(90deg, var(--bronze), transparent);
}

.chapter-nav {
  position: sticky;
  z-index: 20;
  top: max(0.65rem, env(safe-area-inset-top));
  margin-bottom: 1rem;
}

.chapter-tabs {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 1.35fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top-color: rgba(221, 230, 228, 0.28);
  border-bottom-color: rgba(229, 144, 59, 0.2);
  border-radius: 3px 16px 3px 16px;
  background:
    linear-gradient(180deg, rgba(190, 210, 211, 0.06), transparent 45%),
    rgba(3, 8, 11, 0.42);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.33),
    inset 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
}

.chapter-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 0.68rem;
  padding: 0.78rem 1rem 0.72rem;
  border: 0;
  border-right: 1px solid rgba(205, 222, 221, 0.11);
  color: rgba(223, 227, 221, 0.66);
  background: transparent;
  font-family: var(--display);
  font-size: clamp(0.68rem, 1.4vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #000;
  transition: color 160ms ease, background 160ms ease;
}

.chapter-tab:last-child {
  border-right: 0;
}

.chapter-tab::after {
  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--ember), transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.chapter-tab:hover {
  color: var(--ink);
  background: rgba(198, 214, 213, 0.04);
}

.chapter-tab[aria-selected="true"] {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(229, 144, 59, 0.1), transparent 90%),
    rgba(196, 213, 211, 0.04);
}

.chapter-tab[aria-selected="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.chapter-tab__number {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 0.71rem;
  letter-spacing: 0;
}

.chapter-stage {
  scroll-margin-top: 6rem;
}

.chapter-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top-color: rgba(214, 228, 226, 0.25);
  border-bottom-color: rgba(229, 144, 59, 0.18);
  border-radius: 5px 27px 5px 27px;
  background:
    linear-gradient(145deg, rgba(192, 211, 211, 0.045), transparent 27%),
    linear-gradient(180deg, rgba(3, 9, 13, 0.28), rgba(3, 8, 11, 0.53)),
    var(--glass);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px) saturate(112%);
  -webkit-backdrop-filter: blur(14px) saturate(112%);
}

.chapter-panel::before,
.chapter-panel::after {
  position: absolute;
  z-index: 1;
  width: 76px;
  height: 76px;
  pointer-events: none;
  content: "";
  opacity: 0.45;
}

.chapter-panel::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--line-warm);
  border-left: 1px solid var(--line-warm);
  clip-path: polygon(0 0, 100% 0, 100% 2px, 16px 2px, 2px 16px, 2px 100%, 0 100%);
  background: rgba(229, 144, 59, 0.2);
}

.chapter-panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--line-warm);
  border-bottom: 1px solid var(--line-warm);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 calc(100% - 2px), calc(100% - 16px) calc(100% - 2px), calc(100% - 2px) calc(100% - 16px), calc(100% - 2px) 0);
  background: rgba(229, 144, 59, 0.2);
}

.chapter-hero,
.design-law,
.foundation-section,
.proposal-section,
.guardrail-section,
.questions-section {
  position: relative;
  z-index: 2;
}

.chapter-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2.4rem, 6vw, 6rem) clamp(1.3rem, 5vw, 5rem) clamp(2.2rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--ember-bright);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--display);
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.35rem;
  font-size: clamp(2.7rem, 6.4vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.42);
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 600;
}

.chapter-hero__lede {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.stance-list {
  align-self: end;
  margin: 0;
  border-left: 1px solid rgba(229, 144, 59, 0.25);
}

.stance-list div {
  padding: 0.85rem 0 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(205, 222, 221, 0.12);
}

.stance-list div:last-child {
  border-bottom: 0;
}

.stance-list dt {
  color: var(--bronze);
  font-family: var(--sans);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stance-list dd {
  margin: 0.15rem 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.3;
}

.design-law {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.7rem) clamp(1.3rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(229, 144, 59, 0.045), transparent 38%),
    rgba(3, 8, 11, 0.22);
}

.design-law .eyebrow {
  grid-column: 1;
}

.design-law h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.design-law > p:last-child {
  grid-row: 1 / span 2;
  grid-column: 2;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.foundation-section,
.proposal-section {
  padding: clamp(3.2rem, 6vw, 6rem) clamp(1.3rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 0.3rem;
  color: var(--ink-soft);
}

.foundation-grid {
  border-top: 1px solid var(--line);
}

.foundation-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.45rem, 3vw, 2.3rem) 0;
  border-bottom: 1px solid var(--line);
}

.foundation-row p {
  margin: 0;
  color: var(--ink-soft);
}

.foundation-row h3 {
  margin: 0;
}

.foundation-row__label {
  margin-bottom: 0.45rem !important;
  color: var(--bronze) !important;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.foundation-row__arrow {
  color: var(--ember);
  font-size: 0.72rem;
  text-align: center;
}

.proposal-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(193, 211, 210, 0.035), transparent 35%),
    rgba(2, 7, 10, 0.12);
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px 18px 3px 18px;
  background: var(--line);
}

.proposal-card {
  position: relative;
  min-height: 230px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at 100% 0, rgba(229, 144, 59, 0.08), transparent 37%),
    rgba(4, 10, 14, 0.78);
}

.proposal-card h3 {
  padding-right: 3rem;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.proposal-card p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
}

.proposal-card__index {
  position: absolute;
  top: 1.45rem;
  right: 1.55rem;
  color: rgba(229, 144, 59, 0.48);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.guardrail-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.3rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 12, 16, 0.32), rgba(5, 12, 16, 0.12)),
    rgba(2, 7, 10, 0.22);
}

.guardrail-section h2 {
  margin-bottom: 0;
}

.guardrail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guardrail-list li,
.future-badge {
  border: 1px solid rgba(206, 219, 217, 0.18);
  border-left-color: rgba(229, 144, 59, 0.55);
  border-radius: 2px 10px 2px 10px;
  color: rgba(238, 231, 217, 0.86);
  background: rgba(4, 10, 13, 0.38);
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.guardrail-list li {
  padding: 0.72rem 0.85rem 0.65rem;
}

.questions-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.2rem, 6vw, 6rem);
  padding: clamp(3.2rem, 6vw, 6rem) clamp(1.3rem, 5vw, 5rem);
}

.questions-section h2 {
  margin-bottom: 1.3rem;
}

.future-badge {
  display: inline-block;
  padding: 0.58rem 0.72rem 0.5rem;
  color: var(--ember-bright);
}

.question-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: question;
  border-top: 1px solid var(--line);
}

.question-list li {
  position: relative;
  padding: 1.45rem 0 1.45rem 3.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  counter-increment: question;
  font-size: clamp(1rem, 1.7vw, 1.17rem);
}

.question-list li::before {
  position: absolute;
  top: 1.45rem;
  left: 0;
  color: var(--bronze);
  content: "0" counter(question);
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.chapter-panel--placeholder {
  display: grid;
  justify-items: center;
  min-height: min(620px, calc(100vh - 8rem));
  padding: clamp(4rem, 12vw, 9rem) clamp(1.5rem, 8vw, 8rem);
  text-align: center;
  place-content: center;
}

.chapter-panel--placeholder .placeholder-mark {
  margin-bottom: 0.6rem;
  color: rgba(229, 144, 59, 0.25);
  font-family: var(--display);
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.8;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.chapter-panel--placeholder h1 {
  max-width: 850px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
}

.chapter-panel--placeholder > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.back-control {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 0.82rem 1.1rem 0.74rem;
  border: 1px solid var(--line);
  border-left-color: var(--line-warm);
  border-radius: 2px 11px 2px 11px;
  color: var(--ink);
  background: rgba(4, 10, 14, 0.44);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.back-control:hover {
  border-color: rgba(229, 144, 59, 0.6);
  background: rgba(229, 144, 59, 0.09);
  transform: translateX(-2px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem 0 0;
  color: rgba(218, 222, 215, 0.62);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.site-footer p {
  max-width: 660px;
  margin: 0;
}

.site-footer p:last-child {
  flex: none;
  color: rgba(229, 144, 59, 0.72);
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .site-shell {
    width: min(100% - 1rem, 760px);
  }

  .masthead {
    min-height: 205px;
  }

  .brand {
    width: min(650px, 100%);
  }

  .chapter-tabs {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .chapter-tabs::-webkit-scrollbar {
    display: none;
  }

  .chapter-tab {
    min-width: 150px;
  }

  .chapter-hero,
  .design-law,
  .section-heading,
  .guardrail-section,
  .questions-section {
    grid-template-columns: 1fr;
  }

  .chapter-hero {
    gap: 2.2rem;
  }

  .stance-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(229, 144, 59, 0.25);
    border-left: 0;
  }

  .stance-list div {
    padding: 0.9rem 0.9rem 0.2rem 0;
    border-right: 1px solid rgba(205, 222, 221, 0.12);
    border-bottom: 0;
  }

  .stance-list div:not(:first-child) {
    padding-left: 0.9rem;
  }

  .stance-list div:last-child {
    border-right: 0;
  }

  .design-law .eyebrow,
  .design-law h2,
  .design-law > p:last-child {
    grid-row: auto;
    grid-column: 1;
  }

  .design-law > p:last-child {
    margin-top: 1.2rem;
  }

  .section-heading {
    gap: 1rem;
  }

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

  .guardrail-section,
  .questions-section {
    gap: 2rem;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  body::before {
    background-position: 53% center;
  }

  .site-shell {
    width: calc(100% - 0.75rem);
    padding-top: 0.7rem;
  }

  .masthead {
    min-height: 172px;
  }

  .masthead__marks {
    gap: 0.48rem;
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }

  .masthead__line {
    padding-inline: 0.2rem;
    font-size: 0.65rem;
    letter-spacing: 0.13em;
  }

  .masthead__line::before,
  .masthead__line::after {
    width: 12px;
    margin-right: 0.3rem;
    margin-left: 0.3rem;
  }

  .chapter-nav {
    top: max(0.4rem, env(safe-area-inset-top));
  }

  .chapter-tabs {
    border-radius: 2px 11px 2px 11px;
  }

  .chapter-tab {
    min-height: 52px;
    min-width: 135px;
    padding-inline: 0.7rem;
  }

  .chapter-panel {
    border-radius: 3px 18px 3px 18px;
  }

  .chapter-hero {
    padding-top: 2.8rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 4.3rem);
  }

  .stance-list {
    grid-template-columns: 1fr;
  }

  .stance-list div,
  .stance-list div:not(:first-child) {
    padding: 0.75rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(205, 222, 221, 0.12);
  }

  .stance-list div:last-child {
    border-bottom: 0;
  }

  .foundation-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .foundation-row__arrow {
    text-align: left;
    transform: rotate(90deg);
    transform-origin: 0 50%;
  }

  .proposal-card {
    min-height: 0;
  }

  .site-footer {
    display: grid;
    gap: 0.75rem;
    padding-inline: 0.3rem;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}

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

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

@media (prefers-contrast: more) {
  :root {
    --line: rgba(231, 239, 237, 0.42);
  }

  .chapter-tabs,
  .chapter-panel {
    background-color: rgba(2, 7, 10, 0.84);
  }

  .chapter-hero__lede,
  .section-heading > p,
  .foundation-row p,
  .proposal-card p,
  .chapter-panel--placeholder > p:not(.eyebrow) {
    color: #e1ded6;
  }
}
