:root {
  --page: #f4f4f1;
  --ink: #161616;
  --muted: #686866;
  --rule: #d6d6d1;
  --rule-dark: #a8a8a2;
  --surface: #fbfbf9;
  --accent: #3f5668;
  --label: #e9e9e4;
  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(84px, 11vw, 144px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--accent);
}

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

p,
h1,
h2,
h3,
h4,
dl,
dd,
figure,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 580;
}

h1 {
  max-width: 11ch;
  margin-bottom: 36px;
  font-size: clamp(46px, 6.6vw, 82px);
}

h2 {
  max-width: 18ch;
  margin-bottom: 20px;
  font-size: clamp(31px, 4vw, 50px);
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

h4 {
  margin-bottom: 14px;
  font-size: 24px;
}

.shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--max));
  margin-inline: auto;
}

.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: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

.eyebrow,
.section-index,
.record-label,
.flow-step,
.stage-number,
.place,
.production-key,
.finance-timeline time {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--rule);
  background: var(--page);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.desktop-nav,
.footer-inner nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.desktop-nav a,
.footer-inner nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 540;
  text-decoration: none;
}

.desktop-nav a:hover,
.footer-inner nav a:hover {
  color: var(--ink);
}

.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  padding-top: clamp(82px, 10vw, 132px);
  padding-bottom: 56px;
}

.hero-copy {
  grid-column: 1 / span 7;
}

.hero-copy .eyebrow {
  margin-bottom: 23px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 65ch;
  color: #464644;
  font-size: clamp(17px, 1.45vw, 20px);
}

.hero-copy .hero-lede {
  color: var(--ink);
  font-size: clamp(19px, 1.8vw, 24px);
}

.fact-list {
  grid-column: 9 / -1;
  align-self: end;
  margin-bottom: 26px;
  border-top: 1px solid var(--ink);
}

.fact-list div {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr;
  gap: 16px;
  padding: 15px 0 17px;
  border-bottom: 1px solid var(--rule);
}

.fact-list dt {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.hero-timeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: clamp(66px, 8vw, 104px) 0 0;
  border-top: 1px solid var(--rule-dark);
  list-style: none;
}

.hero-timeline li {
  position: relative;
  padding: 21px 24px 0 0;
}

.hero-timeline li::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.hero-timeline time {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.hero-timeline span {
  font-size: 14px;
}

.section {
  scroll-margin-top: 64px;
  padding-top: var(--section-space);
  padding-bottom: 12px;
}

.section-header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: clamp(52px, 7vw, 86px);
}

.section-index {
  grid-column: 1 / span 3;
  padding-top: 12px;
}

.section-header > div {
  grid-column: 4 / -1;
}

.section-header > div > p {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
}

.system-figure {
  padding: clamp(24px, 4vw, 48px);
  margin-bottom: 42px;
  border: 1px solid var(--rule);
  background: var(--surface);
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.system-flow li {
  position: relative;
  min-height: 156px;
  padding: 0 18px 12px;
  border-left: 1px solid var(--rule);
}

.system-flow li:first-child {
  padding-left: 0;
  border-left: 0;
}

.system-flow li:last-child {
  padding-right: 0;
}

.system-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 68px;
  right: -7px;
  width: 13px;
  height: 13px;
  border-top: 1px solid var(--rule-dark);
  border-right: 1px solid var(--rule-dark);
  background: var(--surface);
  content: "";
  transform: rotate(45deg);
}

.flow-step {
  display: block;
  margin-bottom: 42px;
}

.system-flow strong,
.system-flow span:last-child {
  display: block;
}

.system-flow strong {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.28;
}

.system-flow span:last-child {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.table-wrap {
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

caption {
  padding: 0 0 15px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 620;
  text-align: left;
}

thead {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule-dark);
}

th,
td {
  padding: 17px 16px 18px 0;
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

tbody tr {
  border-bottom: 1px solid var(--rule);
}

tbody th {
  font-weight: 590;
}

.system-table-wrap table th:first-child {
  width: 20%;
}

.system-table-wrap table th:nth-child(2) {
  width: 31%;
}

.record-group > h3,
.footprint > h3 {
  margin-bottom: 22px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.record-card {
  min-height: 230px;
  padding: clamp(26px, 3.5vw, 42px);
  border-top: 1px solid var(--ink);
  background: var(--surface);
}

.record-card .record-label {
  margin-bottom: 58px;
}

.record-card p:last-child {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--muted);
}

.footprint {
  margin-top: clamp(54px, 7vw, 82px);
}

.footprint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.footprint-grid article {
  min-height: 220px;
  padding: 24px 28px 28px 0;
  border-right: 1px solid var(--rule);
}

.footprint-grid article + article {
  padding-left: 28px;
}

.footprint-grid article:last-child {
  border-right: 0;
}

.footprint-grid .place {
  margin-bottom: 55px;
}

.footprint-grid .address {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 570;
}

.footprint-grid p:last-child {
  max-width: 30ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.finance-timeline {
  padding: 0;
  margin: 0 0 clamp(66px, 8vw, 96px);
  border-top: 1px solid var(--ink);
  list-style: none;
}

.finance-timeline li {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 5fr;
  gap: 24px;
  align-items: start;
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--rule);
}

.finance-timeline time {
  padding-top: 9px;
}

.finance-amount {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.finance-timeline h3 {
  margin-bottom: 7px;
  font-size: 18px;
  letter-spacing: -0.015em;
}

.finance-timeline div p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
}

.capital-table-wrap table th:first-child {
  width: 24%;
}

.capital-table-wrap table th:nth-child(2) {
  width: 34%;
}

.chain-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0;
  margin: 0 0 34px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  list-style: none;
  counter-reset: chain;
}

.chain-line li {
  position: relative;
  min-height: 112px;
  padding: 20px 20px 22px 0;
  color: #3f3f3d;
  font-size: 13px;
  counter-increment: chain;
}

.chain-line li::before {
  display: block;
  margin-bottom: 21px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  content: "0" counter(chain);
}

.chain-line li:not(:last-child)::after {
  position: absolute;
  top: 56px;
  right: 16px;
  color: var(--rule-dark);
  content: "→";
}

.production-key {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 23px;
  margin-bottom: 42px;
  color: var(--muted);
  text-transform: none;
}

.production-key span {
  margin-right: -16px;
  color: var(--ink);
  font-weight: 700;
}

.relationship-legend {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 23px 0 28px;
  margin: 0 0 76px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  list-style: none;
}

.relationship-legend li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.relationship-legend p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.relationship {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 23px;
  padding: 3px 7px 2px;
  border: 1px solid transparent;
  background: var(--label);
  color: #3c3c3a;
  font-size: 9px;
  font-weight: 670;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.relationship--named {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.relationship--role {
  border-color: var(--rule-dark);
  background: var(--surface);
}

.relationship--likely {
  background: #ddddda;
}

.relationship--alternative {
  border-color: var(--rule-dark);
  background: transparent;
}

.supply-stage {
  margin-bottom: clamp(76px, 9vw, 112px);
}

.supply-stage > header {
  display: grid;
  grid-template-columns: 1fr 8fr;
  gap: 24px;
  margin-bottom: 30px;
}

.supply-stage > header h3 {
  margin-bottom: 11px;
}

.supply-stage > header div p {
  max-width: 68ch;
  margin-bottom: 0;
  color: var(--muted);
}

.stage-number {
  padding-top: 8px;
  color: var(--ink);
}

.supply-table-wrap caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.supply-table-wrap table th:first-child {
  width: 35%;
  padding-right: 34px;
}

.route {
  display: grid;
  grid-template-columns: minmax(130px, 0.26fr) 1fr;
  gap: 15px;
  align-items: start;
}

.route + .route {
  margin-top: 10px;
}

.route .relationship {
  justify-self: start;
}

.production-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.production-flow li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  min-height: 210px;
  padding: 28px 24px 30px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.production-flow li:nth-child(3n + 2),
.production-flow li:nth-child(3n + 3) {
  padding-left: 24px;
}

.production-flow li:nth-child(3n) {
  border-right: 0;
}

.production-flow > li > span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.production-flow h3 {
  margin-bottom: 12px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.production-flow p {
  max-width: 31ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  margin-top: var(--section-space);
  border-top: 1px solid var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
}

.footer-inner .wordmark {
  margin: 0;
}

.error-page {
  min-height: 100vh;
}

.error-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(100% - 40px), 760px);
  min-height: 100vh;
  margin-inline: auto;
}

.error-main .wordmark {
  position: absolute;
  top: 24px;
}

.error-main .eyebrow {
  margin-bottom: 18px;
}

.error-main h1 {
  margin-bottom: 28px;
}

.text-link {
  align-self: flex-start;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 1023px) {
  .hero-copy {
    grid-column: 1 / span 7;
  }

  .fact-list {
    grid-column: 8 / -1;
  }

  .section-header {
    display: block;
  }

  .section-index {
    margin-bottom: 23px;
  }

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

  .system-flow li {
    min-height: 172px;
    margin-bottom: 24px;
  }

  .system-flow li:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .system-flow li:nth-child(3)::after {
    display: none;
  }

  .relationship-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    cursor: pointer;
    font-size: 13px;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary::after {
    margin-left: 8px;
    content: "+";
  }

  .mobile-nav[open] summary::after {
    content: "−";
  }

  .mobile-nav nav {
    position: absolute;
    top: 38px;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(78vw, 280px);
    padding: 12px 22px;
    border: 1px solid var(--rule);
    background: var(--surface);
  }

  .mobile-nav nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 14px;
    text-decoration: none;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    display: block;
  }

  .fact-list {
    margin-top: 58px;
  }

  .hero-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .record-grid,
  .footprint-grid {
    grid-template-columns: 1fr;
  }

  .footprint-grid article,
  .footprint-grid article + article {
    min-height: auto;
    padding: 24px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .footprint-grid .place {
    margin-bottom: 30px;
  }

  .finance-timeline li {
    grid-template-columns: 0.8fr 1.2fr 2.6fr;
  }

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

  .chain-line li:nth-child(3)::after {
    display: none;
  }

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

  .production-flow li,
  .production-flow li:nth-child(3n + 2),
  .production-flow li:nth-child(3n + 3) {
    padding: 25px 20px 28px 0;
    border-right: 1px solid var(--rule);
  }

  .production-flow li:nth-child(even) {
    padding-left: 20px;
    border-right: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 639px) {
  :root {
    --gutter: 20px;
    --section-space: 88px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 60px);
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-copy .hero-lede {
    font-size: 19px;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-timeline {
    grid-template-columns: 1fr;
    padding-left: 12px;
    border-top: 0;
    border-left: 1px solid var(--rule-dark);
  }

  .hero-timeline li {
    padding: 0 0 30px 22px;
  }

  .hero-timeline li::before {
    top: 4px;
    left: -16px;
  }

  .section-header {
    margin-bottom: 46px;
  }

  .system-figure {
    padding: 26px 22px;
  }

  .system-flow {
    display: block;
  }

  .system-flow li,
  .system-flow li:first-child,
  .system-flow li:nth-child(4) {
    min-height: 0;
    padding: 0 0 28px 34px;
    margin: 0;
    border-left: 1px solid var(--rule);
  }

  .system-flow li:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
  }

  .system-flow li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 8px;
    left: -5px;
    display: block;
    width: 9px;
    height: 9px;
    border-top: 0;
    border-right: 1px solid var(--rule-dark);
    border-bottom: 1px solid var(--rule-dark);
    transform: rotate(45deg);
  }

  .flow-step {
    margin-bottom: 12px;
  }

  .record-grid {
    gap: 16px;
  }

  .record-card {
    min-height: 210px;
  }

  .record-card .record-label {
    margin-bottom: 44px;
  }

  .finance-timeline li {
    grid-template-columns: 1fr 1.8fr;
    gap: 10px 20px;
  }

  .finance-timeline time {
    grid-column: 1 / -1;
  }

  .finance-amount {
    font-size: 35px;
  }

  .chain-line {
    display: block;
    padding-left: 16px;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid var(--rule-dark);
  }

  .chain-line li {
    min-height: 0;
    padding: 0 0 24px 18px;
  }

  .chain-line li::before {
    display: inline-block;
    width: 34px;
    margin-bottom: 0;
  }

  .chain-line li::after,
  .chain-line li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 6px;
    left: -21px;
    display: block;
    color: var(--rule-dark);
    content: "↓";
  }

  .chain-line li:last-child::after {
    display: none;
  }

  .production-key {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px 15px;
  }

  .production-key span {
    margin: 0;
  }

  .relationship-legend {
    grid-template-columns: 1fr;
  }

  .supply-stage > header {
    grid-template-columns: 28px 1fr;
    gap: 10px;
  }

  .table-wrap table,
  .table-wrap thead,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap th,
  .table-wrap td {
    display: block;
    width: 100%;
  }

  .table-wrap thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .table-wrap tbody {
    border-top: 1px solid var(--ink);
  }

  .table-wrap tbody tr {
    padding: 20px 0 22px;
  }

  .table-wrap tbody th,
  .table-wrap tbody td {
    padding: 0;
    border: 0;
  }

  .table-wrap tbody th {
    margin-bottom: 15px;
  }

  .system-table-wrap table th:first-child,
  .capital-table-wrap table th:first-child,
  .supply-table-wrap table th:first-child {
    width: 100%;
    padding-right: 0;
  }

  .system-table-wrap tbody td,
  .capital-table-wrap tbody td {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding-top: 10px;
  }

  .system-table-wrap tbody td::before,
  .capital-table-wrap tbody td::before {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .route {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .route + .route {
    padding-top: 12px;
    margin-top: 14px;
    border-top: 1px solid var(--rule);
  }

  .production-flow {
    grid-template-columns: 1fr;
  }

  .production-flow li,
  .production-flow li:nth-child(3n + 2),
  .production-flow li:nth-child(3n + 3),
  .production-flow li:nth-child(even) {
    min-height: 0;
    padding: 24px 0 28px;
    border-right: 0;
  }

  .footer-inner nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .skip-link {
    display: none;
  }

  body {
    background: #fff;
  }

  .section,
  .hero {
    padding-top: 42px;
  }

  .supply-stage,
  table,
  tr {
    break-inside: avoid;
  }
}
