:root {
  --ink: #0a2342;
  --ink-soft: #17375d;
  --paper: #f2efe7;
  --paper-bright: #fbfaf6;
  --paper-deep: #e3ded3;
  --line: #c4bfb3;
  --yellow: #f3c448;
  --orange: #e66c3b;
  --orange-deep: #b94c2b;
  --mint: #b8ded6;
  --blue: #2d78bd;
  --text: #14243a;
  --muted: #5e6875;
  --white: #fffefa;
  --display: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 18px 44px rgba(10, 35, 66, 0.12);
  --radius: 3px;
}

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

html {
  background: var(--paper);
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(10, 35, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 66, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  color: var(--text);
  font-family: var(--body);
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.page-width {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 9px 13px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 254, 250, 0.2);
  background: var(--ink);
  color: var(--white);
}

.site-header__inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-size: 1.15rem;
  line-height: 1;
}

.header-right,
.language-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-stamp,
.language-nav,
.eyebrow,
.section-index,
.machine__topline,
.machine__footer,
.lane-id,
.lane-marker,
.stat-card__label,
.readout-label,
.board__head,
.delivery-difference,
.source-list span {
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-stamp {
  color: rgba(255, 254, 250, 0.58);
  font-size: 0.65rem;
}

.language-nav {
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 254, 250, 0.28);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.language-nav a {
  padding: 5px 8px;
  color: rgba(255, 254, 250, 0.66);
  text-decoration: none;
}

.language-nav a:hover,
.language-nav a.is-current {
  background: var(--yellow);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: stretch;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 88px) clamp(40px, 6vw, 78px);
  background: var(--ink);
  color: var(--white);
  position: relative;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  background: var(--yellow);
  content: "";
}

.hero__copy {
  min-width: 0;
  align-self: center;
}

.eyebrow,
.section-index {
  margin: 0 0 17px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
}

.hero .eyebrow {
  color: var(--yellow);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 730px;
  overflow-wrap: anywhere;
  margin-bottom: 25px;
  font-size: clamp(3.2rem, 6.3vw, 6.3rem);
  line-height: 0.91;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--yellow);
}

.hero__dek {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 254, 250, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.45;
}

.hero__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.label-chip {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.label-chip--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.label-chip--paper {
  border-color: rgba(255, 254, 250, 0.35);
  color: var(--white);
}

.label-chip--orange {
  background: var(--orange);
  color: var(--white);
}

.hero__machine {
  align-self: center;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(10, 35, 66, 0.14);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 18px 18px 0 rgba(243, 196, 72, 0.32);
  transform: rotate(1.2deg);
}

.machine__topline,
.machine__footer,
.board__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
}

.machine__topline span,
.machine__footer span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.machine__barcode {
  height: 23px;
  margin: 17px 0 20px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 10px);
  opacity: 0.78;
}

.machine__lanes {
  display: grid;
  gap: 12px;
}

.machine-lane {
  display: grid;
  grid-template-columns: 36px minmax(88px, 0.7fr) minmax(70px, 1fr) auto auto;
  gap: 9px;
  min-width: 0;
  align-items: center;
  padding: 12px 10px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.machine-lane--parcels {
  border-left: 7px solid var(--orange);
}

.machine-lane--letters {
  border-left: 7px solid var(--blue);
}

.lane-id {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.1;
}

.lane-id span {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}

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

.lane-copy strong,
.lane-total {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1;
}

.lane-copy small,
.lane-unit {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lane-line {
  height: 11px;
  overflow: hidden;
  background: var(--paper-deep);
}

.lane-line i {
  display: block;
  height: 100%;
  background: var(--orange);
}

.machine-lane--letters .lane-line i {
  background: var(--blue);
}

.lane-total {
  font-size: 1.35rem;
  text-align: right;
}

.lane-unit {
  font-family: var(--mono);
  font-size: 0.58rem;
}

.machine__footer {
  align-items: center;
  margin-top: 20px;
  color: var(--ink-soft);
}

.machine-arrow {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 0.5;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
}

.stat-card {
  min-height: 188px;
  padding: 22px 23px 20px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--ink);
  background: var(--paper-bright);
}

.stat-card--accent {
  border-color: var(--orange);
  border-top-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.stat-card__label {
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.stat-card--accent .stat-card__label,
.stat-card--accent .stat-card__text {
  color: rgba(255, 254, 250, 0.78);
}

.stat-card__number {
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.stat-card__number span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.stat-card__text {
  max-width: 260px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.35;
}

.story,
.delivery,
.shift,
.sources {
  padding-top: clamp(82px, 11vw, 144px);
}

.story__grid,
.delivery__grid,
.sources__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 7vw, 120px);
}

h2 {
  max-width: 650px;
  margin-bottom: 19px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.4vw, 4.45rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.story__copy,
.delivery__copy,
.sources__grid > div {
  max-width: 610px;
}

.story__copy p,
.delivery__copy p,
.sources__grid p {
  margin-bottom: 19px;
  color: #394858;
  font-size: 1rem;
  line-height: 1.65;
}

.instrument {
  margin-top: clamp(82px, 11vw, 144px);
  padding: clamp(26px, 4vw, 54px);
  border-top: 10px solid var(--yellow);
  background: var(--mint);
  box-shadow: var(--shadow);
}

.instrument .section-index {
  color: var(--ink-soft);
}

.instrument__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.instrument h2 {
  margin-bottom: 10px;
  font-size: clamp(2.15rem, 4.5vw, 4.2rem);
}

.instrument__head p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.year-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 5px;
  padding: 5px;
  background: var(--ink);
}

.year-controls button {
  min-width: 58px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.year-controls button:hover,
.year-controls button[aria-pressed="true"] {
  background: var(--yellow);
  color: var(--ink);
}

.instrument__body {
  padding: clamp(19px, 3vw, 35px);
  background: var(--ink);
  color: var(--white);
}

.instrument__status {
  display: flex;
  align-items: baseline;
  gap: 17px;
  min-height: 47px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 254, 250, 0.25);
}

.status-year {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.status-message {
  color: rgba(255, 254, 250, 0.78);
  font-size: 0.92rem;
}

.data-lanes {
  display: grid;
  gap: 18px;
  padding: 26px 0;
}

.data-lane {
  min-width: 0;
  padding: 19px;
  border: 1px solid rgba(255, 254, 250, 0.25);
  background: rgba(255, 254, 250, 0.07);
}

.data-lane--parcels {
  border-left: 7px solid var(--orange);
}

.data-lane--correspondence {
  border-left: 7px solid var(--blue);
}

.data-lane__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.lane-marker {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.6rem;
  font-weight: 700;
}

.data-lane h3 {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.data-lane__value {
  flex: 0 0 auto;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.bar-track {
  height: 22px;
  margin: 19px 0 11px;
  overflow: hidden;
  background: rgba(255, 254, 250, 0.18);
}

.bar-fill {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 420ms cubic-bezier(0.22, 0.8, 0.3, 1);
}

.data-lane--correspondence .bar-fill {
  background: var(--blue);
}

.data-lane__note,
.instrument__note {
  margin-bottom: 0;
  color: rgba(255, 254, 250, 0.68);
  font-size: 0.75rem;
}

.instrument__readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 254, 250, 0.25);
}

.instrument__readout > div {
  min-width: 0;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 254, 250, 0.25);
}

.instrument__readout > div:last-child {
  border-right: 0;
}

.readout-label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 254, 250, 0.55);
  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.35;
}

.instrument__readout strong {
  display: block;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.instrument__note {
  margin-top: 21px;
  color: rgba(255, 254, 250, 0.85);
}

.table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid rgba(10, 35, 66, 0.28);
  background: var(--paper-bright);
}

table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
  font-size: 0.76rem;
  text-align: left;
}

caption {
  padding: 16px 17px 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

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

thead th {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

tbody th {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
}

.delivery__grid {
  align-items: center;
}

.delivery-board {
  max-width: 530px;
  justify-self: end;
  width: 100%;
  padding: 22px;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  box-shadow: 14px 14px 0 var(--yellow);
}

.board__head {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
}

.delivery-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 700;
}

.delivery-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.delivery-row strong {
  color: var(--ink);
  font-size: 2.5rem;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.delivery-row small {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot--parcel {
  background: var(--orange);
}

.dot--letter {
  background: var(--blue);
}

.delivery-difference {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 19px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.delivery-difference strong {
  color: var(--orange-deep);
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  text-transform: none;
}

.delivery-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 19px;
}

.delivery-scale span {
  height: 5px;
  background: var(--blue);
}

.delivery-scale span:first-child,
.delivery-scale span:last-child {
  background: var(--orange);
}

.shift__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.shift__head h2 {
  margin-bottom: 0;
}

.shift__head p {
  max-width: 350px;
  margin-bottom: 4px;
  color: var(--muted);
}

.shift-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
  background: var(--paper-bright);
}

.shift-stop {
  position: relative;
  min-height: 167px;
  padding: 22px;
  border-right: 1px solid var(--ink);
}

.shift-stop:last-child {
  border-right: 0;
}

.shift-stop::after {
  position: absolute;
  top: 50%;
  right: -10px;
  width: 19px;
  height: 19px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-bright);
  content: "";
  transform: translateY(-50%);
}

.shift-stop:last-child::after {
  display: none;
}

.shift-stop span {
  display: block;
  margin-bottom: 25px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.shift-stop strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.65rem;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.shift-stop small {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.71rem;
}

.shift-stop--middle {
  background: var(--paper-deep);
}

.shift-stop--active {
  background: var(--orange);
  color: var(--white);
}

.shift-stop--active span,
.shift-stop--active strong,
.shift-stop--active small {
  color: var(--white);
}

.sources {
  padding-bottom: clamp(82px, 11vw, 144px);
}

.sources__grid {
  align-items: start;
}

.source-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: source;
}

.source-list li {
  position: relative;
  padding: 0 0 18px 42px;
  border-bottom: 1px solid var(--line);
  counter-increment: source;
}

.source-list li + li {
  padding-top: 18px;
}

.source-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange);
  content: "0" counter(source);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.source-list li + li::before {
  top: 18px;
}

.source-list a {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.source-list a:hover {
  color: var(--orange-deep);
}

.source-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.59rem;
  letter-spacing: 0.03em;
}

.site-footer {
  padding: 27px 0;
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.71rem;
}

.site-footer a {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer span {
  color: rgba(255, 254, 250, 0.6);
}

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

  .hero__machine {
    max-width: 720px;
  }

  .story__grid,
  .delivery__grid,
  .sources__grid {
    gap: 30px;
  }

  .instrument__head,
  .shift__head {
    align-items: start;
    flex-direction: column;
  }

  .delivery-board {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  html {
    font-size: 17px;
  }

  .page-width {
    width: calc(100% - 32px);
  }

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

  .header-stamp {
    display: none;
  }

  .hero {
    width: 100%;
    padding: 45px 16px 40px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero__dek {
    font-size: 1rem;
  }

  .hero__machine {
    margin: 0 7px 5px 0;
    padding: 15px;
    box-shadow: 9px 9px 0 rgba(243, 196, 72, 0.32);
  }

  .machine-lane {
    grid-template-columns: 27px minmax(71px, 0.8fr) minmax(40px, 1fr) auto auto;
    gap: 6px;
    padding: 10px 7px;
  }

  .lane-copy strong,
  .lane-total {
    font-size: 0.92rem;
  }

  .lane-copy small,
  .lane-unit {
    font-size: 0.55rem;
  }

  .machine__footer {
    font-size: 0.51rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .stat-card {
    min-height: 0;
    padding: 18px;
  }

  .stat-card__label {
    margin-bottom: 13px;
  }

  .stat-card__number {
    font-size: 3.25rem;
  }

  .story,
  .delivery,
  .shift,
  .sources {
    padding-top: 80px;
  }

  .story__grid,
  .delivery__grid,
  .sources__grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .instrument {
    width: 100%;
    margin-top: 80px;
    padding: 25px 16px;
  }

  .instrument__head {
    gap: 21px;
    margin-bottom: 25px;
  }

  .year-controls {
    width: 100%;
  }

  .year-controls button {
    flex: 1;
  }

  .instrument__body {
    padding: 16px;
  }

  .instrument__status {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .status-year {
    font-size: 2.2rem;
  }

  .status-message {
    font-size: 0.84rem;
  }

  .data-lane {
    padding: 15px;
  }

  .data-lane__head {
    align-items: start;
  }

  .data-lane h3 {
    font-size: 1rem;
  }

  .data-lane__value {
    font-size: 2.05rem;
  }

  .instrument__readout {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .instrument__readout > div {
    padding: 0 0 13px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 254, 250, 0.25);
  }

  .instrument__readout > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .instrument__readout strong {
    font-size: 1.65rem;
  }

  .delivery-board {
    padding: 17px;
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .delivery-row {
    font-size: 1.1rem;
  }

  .delivery-row strong {
    font-size: 2.1rem;
  }

  .shift-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shift-stop {
    min-height: 139px;
    padding: 14px 10px;
  }

  .shift-stop span {
    margin-bottom: 18px;
    font-size: 0.58rem;
  }

  .shift-stop strong {
    font-size: clamp(1.75rem, 8vw, 2.65rem);
  }

  .shift-stop small {
    font-size: 0.6rem;
    line-height: 1.25;
  }

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

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

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