:root {
  color-scheme: light;
  --chalk: #f6f8f3;
  --mist: #dcece7;
  --water-pale: #b8ddd7;
  --water: #0b7b83;
  --water-deep: #0b4650;
  --bone: #fffdf3;
  --ink: #10292d;
  --ink-soft: #38565a;
  --load: #b9412c;
  --load-pale: #f2c6b9;
  --line: rgba(16, 41, 45, 0.18);
  --shadow: rgba(11, 70, 80, 0.16);
  --compression: 0.8;
  --disc-height: 7.8px;
  --measure: min(1120px, calc(100vw - 40px));
  --display: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 23px, rgba(11, 123, 131, 0.08) 24px, transparent 25px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(220, 236, 231, 0.48)),
    var(--chalk);
  background-size: 48px 100%, 100% 100%, auto;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 7px;
  content: "";
  background: linear-gradient(180deg, var(--water), var(--water-deep) 62%, var(--load));
}

a {
  color: var(--water-deep);
  text-decoration-color: rgba(11, 70, 80, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

button,
input {
  font: inherit;
}

button,
.button {
  min-height: 46px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.72rem 1.08rem;
  color: var(--bone);
  background: var(--ink);
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
}

button:hover,
.button:hover {
  background: var(--water-deep);
}

button.secondary {
  color: var(--ink);
  background: transparent;
}

button.secondary:hover {
  color: var(--bone);
  background: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--load);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 243, 0.9);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--measure);
  min-height: 64px;
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand::before {
  width: 11px;
  height: 30px;
  border: 1px solid var(--water-deep);
  border-radius: 8px;
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    var(--water) 0 2px,
    transparent 2px 4px
  );
}

.header-nav,
.language-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.header-nav > a:not(.language-link) {
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
}

.language-nav {
  border-left: 1px solid var(--line);
  padding-left: 0.65rem;
}

.language-link {
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 760;
  text-decoration: none;
}

.language-link[aria-current="page"] {
  color: var(--bone);
  background: var(--water-deep);
}

main {
  overflow: clip;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  width: var(--measure);
  min-height: calc(100vh - 64px);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem) 0 4.5rem;
  gap: clamp(2.25rem, 7vw, 6rem);
  align-items: center;
}

.kicker,
.section-label {
  margin: 0 0 1rem;
  color: var(--water-deep);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 760;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.7rem, 7.8vw, 7.6rem);
  letter-spacing: -0.055em;
}

h1 .unit-line {
  display: block;
  color: var(--water);
  font-family: var(--mono);
  font-size: 0.26em;
  font-weight: 780;
  letter-spacing: 0.035em;
  line-height: 2.3;
  text-transform: uppercase;
}

.lede {
  max-width: 34rem;
  margin: 1.8rem 0 0;
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  line-height: 1.45;
}

.bounded-claim {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  border-left: 4px solid var(--load);
  padding: 0.1rem 0 0.1rem 1rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
  gap: 0.9rem;
}

.hero-actions .button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hero-actions .quiet-link {
  font-size: 0.9rem;
  font-weight: 730;
}

.column-lab {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 36px 36px 18px 18px;
  padding: 1rem 1.1rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 243, 0.82), rgba(184, 221, 215, 0.64)),
    var(--mist);
  box-shadow: 0 28px 70px var(--shadow);
}

.column-lab::before {
  position: absolute;
  inset: 20px 18px 150px auto;
  width: 12px;
  border-right: 1px solid rgba(16, 41, 45, 0.32);
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 9px,
    rgba(16, 41, 45, 0.5) 9px 10px
  );
}

.column-lab__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  gap: 1rem;
}

.column-lab__header p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.time-badge {
  border: 1px solid var(--water-deep);
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  color: var(--bone);
  background: var(--water-deep);
}

.disc-figure {
  margin: 0;
}

.disc-stack {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 1.25rem 2rem 1rem 0.4rem;
}

.disc-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 285px);
  margin: 0;
  padding: 0;
  gap: 3px;
  list-style: none;
}

.disc-list::before,
.disc-list::after {
  display: block;
  width: 56%;
  height: 9px;
  border: 1px solid rgba(16, 41, 45, 0.24);
  border-radius: 48% 48% 30% 30%;
  content: "";
  background: var(--bone);
  box-shadow: inset 0 -2px 0 rgba(11, 123, 131, 0.12);
}

.disc-list::after {
  width: 96%;
  border-radius: 30% 30% 48% 48%;
  box-shadow: inset 0 2px 0 rgba(11, 123, 131, 0.12);
}

.disc-list li {
  position: relative;
  width: 62%;
  height: var(--disc-height);
  min-height: 6px;
  border: 1px solid rgba(11, 70, 80, 0.42);
  border-radius: 48%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 24% 76%, rgba(255, 255, 255, 0.32)),
    var(--water-pale);
  box-shadow:
    0 4px 0 var(--bone),
    0 5px 0 rgba(16, 41, 45, 0.16);
  transition: height 260ms ease, width 260ms ease, background-color 260ms ease;
}

html.compression-0 { --disc-height: 9px; }
html.compression-5 { --disc-height: 8.93px; }
html.compression-10 { --disc-height: 8.85px; }
html.compression-15 { --disc-height: 8.78px; }
html.compression-20 { --disc-height: 8.7px; }
html.compression-25 { --disc-height: 8.63px; }
html.compression-30 { --disc-height: 8.55px; }
html.compression-35 { --disc-height: 8.48px; }
html.compression-40 { --disc-height: 8.4px; }
html.compression-45 { --disc-height: 8.33px; }
html.compression-50 { --disc-height: 8.25px; }
html.compression-55 { --disc-height: 8.18px; }
html.compression-60 { --disc-height: 8.1px; }
html.compression-65 { --disc-height: 8.03px; }
html.compression-70 { --disc-height: 7.95px; }
html.compression-75 { --disc-height: 7.88px; }
html.compression-80 { --disc-height: 7.8px; }
html.compression-85 { --disc-height: 7.73px; }
html.compression-90 { --disc-height: 7.65px; }
html.compression-95 { --disc-height: 7.58px; }
html.compression-100 { --disc-height: 7.5px; }
html.compression-105 { --disc-height: 7.43px; }
html.compression-110 { --disc-height: 7.35px; }
html.compression-115 { --disc-height: 7.28px; }
html.compression-120 { --disc-height: 7.2px; }
html.compression-125 { --disc-height: 7.13px; }

.disc-list li:nth-child(n + 3):nth-child(-n + 6) { width: 66%; }
.disc-list li:nth-child(n + 7):nth-child(-n + 10) { width: 72%; }
.disc-list li:nth-child(n + 11):nth-child(-n + 14) { width: 77%; }
.disc-list li:nth-child(n + 15):nth-child(-n + 18) { width: 82%; }
.disc-list li:nth-child(19) { width: 88%; }
.disc-list li:nth-child(20) { width: 91%; }
.disc-list li:nth-child(21) { width: 94%; }
.disc-list li:nth-child(22) { width: 97%; }
.disc-list li:nth-child(23) { width: 100%; }

.disc-list li:nth-child(6)::after,
.disc-list li:nth-child(18)::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 13px);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.58rem;
  content: "C6";
  transform: translateY(-50%);
}

.disc-list li:nth-child(18)::after {
  content: "T12";
}

.disc-list li:nth-child(23)::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 13px);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.58rem;
  content: "L5";
  transform: translateY(-50%);
}

.disc-figure figcaption {
  margin: -0.25rem 1.5rem 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-align: center;
}

.timeline-control {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.timeline-control label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.83rem;
  font-weight: 760;
}

.timeline-control output {
  color: var(--load);
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 820;
}

input[type="range"] {
  width: 100%;
  min-height: 34px;
  margin: 0.42rem 0 0;
  accent-color: var(--load);
  cursor: pointer;
}

.timeline-reading {
  min-height: 2.7em;
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.section-shell {
  width: var(--measure);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-shell + .section-shell {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  gap: 2rem;
  align-items: end;
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5.6vw, 5.4rem);
  letter-spacing: -0.045em;
}

.section-heading p:last-child {
  max-width: 38rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.mechanism-card {
  min-height: 330px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: rgba(255, 253, 243, 0.74);
}

.mechanism-card__mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 4rem;
  border: 1px solid var(--water-deep);
  border-radius: 50%;
  color: var(--water-deep);
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 820;
  background: var(--water-pale);
}

.mechanism-card:nth-child(2) .mechanism-card__mark {
  border-radius: 44% 56% 52% 48%;
  color: var(--bone);
  background: var(--water);
}

.mechanism-card:nth-child(3) .mechanism-card__mark {
  border-radius: 12px;
  color: var(--bone);
  background: var(--load);
  box-shadow: 0 12px 0 var(--load-pale);
}

.mechanism-card h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mechanism-card p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.91rem;
}

caption {
  padding: 1rem;
  color: var(--ink-soft);
  text-align: left;
}

th,
td {
  border-top: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

thead th {
  border-top: 0;
  color: var(--water-deep);
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody th {
  font-weight: 780;
}

.evidence-note {
  position: sticky;
  top: 96px;
  border: 1px solid var(--load);
  border-radius: 22px;
  padding: 1.5rem;
  background: var(--bone);
}

.evidence-note h3 {
  font-size: 1.7rem;
  line-height: 1.05;
}

.evidence-note p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.measure-section {
  color: var(--bone);
  background: var(--water-deep);
}

.measure-section .section-shell {
  padding-top: clamp(4.5rem, 9vw, 8rem);
}

.measure-section .section-label,
.measure-section .section-heading p:last-child {
  color: var(--water-pale);
}

.measure-section .section-shell + .section-shell {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.measure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.protocol {
  margin: 0;
  padding: 0;
  counter-reset: protocol;
  list-style: none;
}

.protocol li {
  position: relative;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.2rem 0 1.2rem 3.2rem;
  color: var(--mist);
  counter-increment: protocol;
}

.protocol li::before {
  position: absolute;
  top: 1.05rem;
  left: 0;
  color: var(--water-pale);
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 800;
  content: counter(protocol, decimal-leading-zero);
}

.protocol strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--bone);
}

.protocol-note {
  margin-top: 1.5rem;
  border-left: 3px solid var(--load-pale);
  padding-left: 1rem;
  color: var(--water-pale);
  font-size: 0.84rem;
}

.measure-form {
  border-radius: 28px;
  padding: clamp(1.2rem, 3.2vw, 2.2rem);
  color: var(--ink);
  background: var(--chalk);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.23);
}

.measure-form fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.measure-form fieldset + fieldset {
  margin-top: 1.7rem;
  border-top: 1px solid var(--line);
  padding-top: 1.7rem;
}

.measure-form legend {
  width: 100%;
  margin-bottom: 0.2rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 760;
  line-height: 1.1;
}

.field-hint {
  margin: 0.3rem 0 0.9rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.reading-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.reading-field label {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 760;
}

.reading-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 41, 45, 0.38);
  border-radius: 9px;
  padding: 0.65rem 0.7rem;
  color: var(--ink);
  background: white;
  font-family: var(--mono);
  font-size: 1rem;
}

.reading-field input[aria-invalid="true"] {
  border-color: var(--load);
  box-shadow: 0 0 0 2px rgba(185, 65, 44, 0.2);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  gap: 0.65rem;
}

.form-error {
  min-height: 1.5em;
  margin: 0.8rem 0 0;
  color: var(--load);
  font-size: 0.82rem;
  font-weight: 720;
}

.result-ticket {
  margin-top: 1.6rem;
  border: 1px solid var(--water);
  border-radius: 18px;
  padding: 1.2rem;
  background:
    repeating-linear-gradient(to bottom, transparent 0 31px, rgba(11, 123, 131, 0.09) 31px 32px),
    white;
}

.result-ticket__lead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
  gap: 1rem;
}

.result-ticket__lead span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 760;
}

.result-ticket__lead output {
  color: var(--load);
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 840;
  line-height: 1;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.8rem;
  gap: 0.75rem;
}

.result-grid div {
  min-width: 0;
}

.result-grid span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 760;
  line-height: 1.25;
}

.result-grid output {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 0.2rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 820;
}

.result-interpretation {
  min-height: 4.7em;
  margin: 1rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.limits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.limits-grid article {
  border-top: 5px solid var(--water);
  padding-top: 1.2rem;
}

.limits-grid article:last-child {
  border-top-color: var(--load);
}

.limits-grid h3 {
  font-size: 2rem;
  line-height: 1.05;
}

.limits-grid p {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.source-list li {
  border: 1px solid var(--line);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.48);
}

.source-list a {
  font-weight: 760;
}

.source-list span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 5rem;
  background: rgba(255, 255, 255, 0.55);
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: var(--measure);
  margin: 0 auto;
  gap: 2rem;
}

.site-footer p {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.back-to-top {
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 760;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 700px;
  }

  .column-lab {
    width: min(100%, 520px);
    justify-self: center;
  }

  .section-heading,
  .evidence-layout,
  .measure-grid {
    grid-template-columns: 1fr;
  }

  .section-heading p:last-child {
    max-width: 46rem;
  }

  .evidence-note {
    position: static;
  }

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

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

  .mechanism-card__mark {
    margin-bottom: 2.2rem;
  }
}

@media (max-width: 660px) {
  :root {
    --measure: calc(100vw - 28px);
  }

  body {
    background-size: 40px 100%, 100% 100%, auto;
  }

  .site-header__inner {
    min-height: 58px;
  }

  .brand span {
    display: none;
  }

  .header-nav > a:not(.language-link) {
    display: none;
  }

  .language-nav {
    border-left: 0;
    padding-left: 0;
  }

  .hero {
    padding-top: 3.2rem;
    gap: 2.6rem;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .column-lab {
    border-radius: 26px 26px 14px 14px;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .disc-stack {
    min-height: 360px;
    padding-right: 1.65rem;
  }

  .disc-list {
    max-width: 235px;
  }

  .section-shell {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .section-heading h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .reading-row,
  .result-grid,
  .limits-grid,
  .source-list {
    grid-template-columns: 1fr;
  }

  .reading-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 116px;
    align-items: center;
    gap: 0.65rem;
  }

  .reading-field label {
    margin: 0;
  }

  .result-ticket__lead {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    flex-direction: column;
  }
}

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

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

@media print {
  .site-header,
  .hero-actions,
  .timeline-control,
  .form-actions,
  .back-to-top {
    display: none !important;
  }

  body {
    background: white;
  }

  .hero,
  .section-shell {
    width: 100%;
    padding: 2rem 0;
  }

  .hero {
    min-height: 0;
  }
}
