:root {
  /* Restrained palette: stone and ink; blue only marks keyboard focus */
  --paper: #F5F5F4;
  --stone: #ECEBE9;
  --white: #FFFFFF;
  --ink: #1C1917;
  --ink-soft: #292524;
  --muted: #57534E;
  --faint: #8A837E;
  --rule: #D6D3D1;
  --blue: #1F4E9C;
  --blue-deep: #173C7A;

  --sans: "Cabin", "Gill Sans", "Gill Sans MT", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  --step--1: .875rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: 1.5625rem;
  --step-3: clamp(1.75rem, 1.35rem + 1.5vw, 2.5rem);
  --step-4: clamp(2.25rem, 1.5rem + 2.8vw, 3.75rem);
  --step-5: clamp(3.75rem, 1.8rem + 8vw, 8.5rem);

  --wrap: 76rem;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --section: clamp(5rem, 11vw, 9rem);
  --nav-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--step-0);
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, dt, summary, th, .btn, .chip, .nav, .field span, .brand, .footer__brand, .tbc, .facts dd, .amt, .rank {
  font-family: var(--sans);
}

h1, h2, h3 { margin: 0; line-height: 1.1; font-weight: 700; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

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

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
}
.skip:focus { top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.125rem;
  padding: .75rem 1.625rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { background: var(--ink-soft); }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { background: var(--white); border-color: var(--ink); }
.btn--light { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--stone); border-color: var(--stone); }
.btn--small { min-height: 2.5rem; padding: .5rem 1.125rem; font-size: .9375rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .6; cursor: progress; }

/* To-be-confirmed tag */
.tbc {
  display: inline-flex;
  align-items: center;
  margin-left: .375rem;
  padding: .0625rem .625rem;
  border: 1.5px dashed var(--faint);
  border-radius: 999px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  vertical-align: .15em;
}
.is-tbc {
  color: var(--muted);
  text-decoration: underline dashed var(--faint);
  text-underline-offset: .25em;
  text-decoration-thickness: 1px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--rule); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: var(--nav-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-right: auto;
  font-size: 1.125rem;
  font-weight: 700;
  font-stretch: 90%;
  text-decoration: none;
  white-space: nowrap;
}
.brand__mark { width: 2rem; height: 2rem; }
.nav__links {
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__links a {
  color: var(--muted);
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }

/* Hero */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 27rem);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.hero__title {
  font-size: clamp(3rem, 1.4rem + 5.4vw, 6.5rem);
  font-stretch: 80%;
  letter-spacing: -.03em;
  line-height: .95;
}
.hero__lede {
  margin-top: 1.75rem;
  max-width: 33rem;
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.5rem;
}

/* Waiting list form in the hero */
.join {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--rule);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(28, 25, 23, .05), 0 16px 40px rgba(28, 25, 23, .07);
}
.join__form { display: grid; gap: 1.125rem; }
.join__form .btn { margin-top: .25rem; }
.join__form[hidden], .join__done[hidden], .join__error[hidden] { display: none; }
.join__note { font-size: .875rem; color: var(--faint); }
.join__error { font-size: .9375rem; color: #B42318; }
.join__done { display: grid; justify-items: start; gap: .875rem; outline: none; }
.join__tick { width: 3rem; height: 3rem; }
.join__done h2 { font-size: var(--step-3); font-stretch: 84%; letter-spacing: -.02em; }
.join__done p { color: var(--muted); }
.join__done .btn { margin-top: .5rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  margin: clamp(3.5rem, 7vw, 5rem) 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.facts dt { color: var(--faint); font-size: var(--step--1); font-weight: 500; }
.facts dd { margin: .25rem 0 0; font-size: 1.0625rem; font-weight: 600; line-height: 1.35; }

/* Hidden until GSAP runs the intro (see inline script in <head>) */
.motion [data-hero] { visibility: hidden; }

/* Form fields */
.field { display: grid; gap: .375rem; }
.field span { font-size: .9375rem; font-weight: 600; color: var(--ink); }
.field em { font-style: normal; font-weight: 400; color: var(--muted); }
.field input, .field textarea {
  width: 100%;
  padding: .8125rem .9375rem;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #A8A29E; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(28, 25, 23, .08);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #B42318; }
.field textarea { resize: vertical; min-height: 6.5rem; }

/* Sections */
.section { padding-block: var(--section); }
.section--stone { background: var(--stone); }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); color: var(--paper); }

.section__head { max-width: 40rem; }
.section__title {
  font-size: var(--step-4);
  font-stretch: 84%;
  letter-spacing: -.02em;
  line-height: 1.02;
}
.section__lede {
  margin-top: 1.125rem;
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--muted);
}
.section--dark .section__lede { color: #C9C4BF; }
.section__head .btn { margin-top: 2rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: start;
}
.section__head--sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }

/* Why the UK: one large statement, lit word by word on scroll */
.lit {
  max-width: 24em;
  font-family: var(--sans);
  font-size: clamp(1.875rem, 1.1rem + 3vw, 3.75rem);
  font-weight: 700;
  font-stretch: 86%;
  letter-spacing: -.02em;
  line-height: 1.12;
  color: var(--ink);
}
.why__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
}
.why__cols > div { padding-top: 1.25rem; border-top: 1.5px solid var(--ink); }
.why__cols h3 { font-size: var(--step-1); font-stretch: 90%; }
.why__cols p { margin-top: .625rem; color: var(--muted); }

/* Why London */
.reasons { margin: 0; }
.reasons > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--rule);
}
.reasons > div:last-child { border-bottom: 1px solid var(--rule); }
.reasons dt { font-size: var(--step-1); font-weight: 700; font-stretch: 90%; }
.reasons dd { margin: 0; color: var(--muted); }
.reasons strong { color: var(--ink); font-weight: 600; }

/* Life in London */
.culture {
  max-width: 22em;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--sans);
  font-size: clamp(1.75rem, 1rem + 3.2vw, 3.5rem);
  font-weight: 700;
  font-stretch: 84%;
  letter-spacing: -.02em;
  line-height: 1.12;
}
.culture span:nth-child(even) { color: var(--faint); }
.culture__note { margin-top: 1.25rem; max-width: 40rem; color: var(--muted); }
.life {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.life > div { padding-block: 1.25rem 2rem; border-top: 1.5px solid var(--ink); }
.life h3 { font-size: var(--step-1); font-stretch: 90%; }
.life p { margin-top: .5rem; color: var(--muted); }

/* Talent */
.unis {
  margin: clamp(3rem, 6vw, 4rem) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 5vw, 4.5rem);
}
.unis li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--rule);
}
.rank {
  font-size: var(--step-3);
  font-weight: 700;
  font-stretch: 80%;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.rank small { display: block; margin-top: .375rem; font-size: .75rem; font-weight: 500; color: var(--faint); letter-spacing: 0; }
.unis h3 { font-size: var(--step-1); font-stretch: 90%; }
.unis p { margin-top: .375rem; color: var(--muted); }
.source { margin-top: 2rem; font-size: .875rem; color: var(--faint); }

/* Built here: sector filters and ledger */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: 2.5rem;
}
.filters[hidden] { display: none; }
.chip {
  min-height: 2.375rem;
  padding: .4375rem 1rem;
  border: 1.5px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.filters__count { margin-left: auto; font-size: .9375rem; color: var(--muted); }
.filters__count strong { color: var(--ink); font-family: var(--sans); }

.ledger-wrap { margin-top: 1.5rem; }
.ledger { width: 100%; border-collapse: collapse; }
.ledger thead th {
  padding: 0 0 .75rem;
  border-bottom: 1.5px solid var(--ink);
  color: var(--faint);
  font-size: .8125rem;
  font-weight: 500;
  text-align: left;
}
.ledger thead th:last-child, .ledger td.val { text-align: right; }
.ledger tbody tr { border-bottom: 1px solid var(--rule); }
.ledger tbody tr[hidden] { display: none; }
.ledger tbody th, .ledger td { padding: 1.125rem 1.5rem 1.125rem 0; vertical-align: top; text-align: left; font-weight: 400; }
.ledger td.val { padding-right: 0; white-space: nowrap; }
.co { display: block; font-size: 1.125rem; font-weight: 700; font-stretch: 90%; }
.meta { display: block; margin-top: .125rem; font-family: var(--serif); font-size: .875rem; color: var(--faint); }
.ledger td.desc { color: var(--muted); max-width: 30rem; }
.amt { display: block; font-size: 1.3125rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.basis { display: block; margin-top: .125rem; font-size: .8125rem; color: var(--faint); }
.ledger__note { margin-top: 1.75rem; max-width: 52rem; font-size: .875rem; color: var(--faint); }

/* Live waiting list counter (hidden until a real count arrives) */
.counter[hidden] { display: none; }
.counter__num { font-family: var(--sans); font-weight: 700; font-variant-numeric: tabular-nums; }
.counter__dot {
  display: inline-block;
  flex: none;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #3F8F5A;
  box-shadow: 0 0 0 3px rgba(63, 143, 90, .18);
}
.counter__demo {
  display: none;
  padding: 0 .5rem;
  border: 1px dashed currentColor;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .6875rem;
  font-weight: 600;
  opacity: .7;
}
.counter.is-demo .counter__demo { display: inline-block; }
.counter--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .625rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: .9375rem;
}
.counter--inline .counter__num { color: var(--ink); }

/* Cohorts: four seasons a year */
.seasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  list-style: none;
}
.season {
  padding: 1.5rem 1.25rem 1.25rem;
  border: 1px solid var(--rule);
  border-radius: 1rem;
  background: var(--paper);
}
.season.is-candidate { border: 1.5px dashed var(--ink); background: var(--white); }
.season__code {
  font-family: var(--sans);
  font-size: var(--step-3);
  font-weight: 700;
  font-stretch: 82%;
  letter-spacing: -.01em;
  line-height: 1;
}
.season__name { margin-top: .75rem; font-family: var(--sans); font-weight: 600; }
.season__months { color: var(--muted); font-size: .9375rem; }
.season__tag {
  display: inline-block;
  margin-top: 1rem;
  padding: .125rem .625rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
}
.season__tag { white-space: nowrap; }
@media (max-width: 480px) {
  .seasons { grid-template-columns: 1fr !important; }
}
.seasons__note { margin-top: 1.5rem; max-width: 44rem; font-size: .9375rem; color: var(--muted); }

/* Who it's for */
.criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(2rem, 5vw, 4.5rem);
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding: 0;
  list-style: none;
}
.criteria li { padding-block: 1.5rem 2rem; border-top: 1.5px solid var(--ink); }
.criteria h3 { font-size: var(--step-2); font-stretch: 88%; letter-spacing: -.01em; }
.criteria p { margin-top: .625rem; color: var(--muted); max-width: 34rem; }

/* Programme track: a real sequence, so numbered */
.track { position: relative; margin-top: clamp(3rem, 6vw, 4.5rem); }
.track__line {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  height: 1.5px;
  background: var(--ink);
  transform-origin: left center;
}
.track__steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.track__steps li { counter-increment: step; }
.track__steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.5rem;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--stone);
  font-family: var(--sans);
  font-weight: 700;
}
.track__steps h3 { font-size: var(--step-1); font-stretch: 90%; }
.track__steps h3 .tbc { margin-left: .25rem; }
.track__steps p { margin-top: .5rem; font-size: 1rem; color: var(--muted); max-width: 18rem; }

/* Founder support */
.support { display: grid; gap: 2.5rem; }
.support__title { font-size: var(--step-1); font-stretch: 90%; margin-bottom: 1rem; }
.perks { margin: 0; padding: 0; list-style: none; }
.perks li { padding-block: .875rem; border-top: 1px solid var(--rule); }
.perks li:last-child { border-bottom: 1px solid var(--rule); }
.pending {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1.5px dashed var(--faint);
  border-radius: 1rem;
}
.pending > p { color: var(--muted); margin-bottom: 1rem; }
.pending .support__title { margin-bottom: .5rem; }
.pending__list { margin: 0; padding: 0; list-style: none; }
.pending__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: .75rem;
  border-top: 1px solid var(--rule);
}

/* Selection */
.selection { counter-reset: sel; margin: 0; padding: 0; list-style: none; }
.selection li {
  counter-increment: sel;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  column-gap: 1rem;
  padding-block: 1.75rem;
  border-top: 1px solid var(--rule);
}
.selection li:last-child { border-bottom: 1px solid var(--rule); }
.selection li::before {
  content: counter(sel);
  grid-row: span 2;
  font-family: var(--sans);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.1;
  color: var(--faint);
}
.selection h3 { font-size: var(--step-2); font-stretch: 88%; }
.selection p { margin-top: .375rem; color: var(--muted); }

/* FAQ */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.375rem;
  font-size: var(--step-1);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 10px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1.5px 10px no-repeat;
  transition: transform .3s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.5rem; max-width: 38rem; color: var(--muted); }

/* Closing call to action */
.cta__title {
  font-size: var(--step-5);
  font-stretch: 80%;
  letter-spacing: -.03em;
  line-height: .95;
}
.cta .section__lede { max-width: 34rem; }
.cta .btn { margin-top: 2rem; }

.hp { position: absolute; left: -9999px; }

/* Footer */
.footer {
  background: var(--ink);
  color: #C9C4BF;
  padding-block: 3.5rem;
  font-size: .9375rem;
  border-top: 1px solid #3A3532;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer__brand { color: var(--white); font-weight: 700; font-size: 1.0625rem; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
}
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--white); }
.footer__note {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid #3A3532;
  font-size: .875rem;
  color: #A8A29E;
}

/* Simple pages (thanks, 404) */
.simple {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  place-items: center;
  padding-block: var(--section);
  text-align: center;
}
.simple .simple__tick { width: 3.5rem; height: 3.5rem; margin: 0 auto 2rem; }
.simple .simple__code {
  margin: 0 0 1rem;
  max-width: none;
  font-family: var(--sans);
  font-size: clamp(5rem, 4rem + 6vw, 9rem);
  font-weight: 700;
  font-stretch: 80%;
  line-height: 1;
  color: var(--rule);
}
.simple h1 { font-size: var(--step-4); font-stretch: 84%; letter-spacing: -.02em; }
.simple p { margin: 1rem auto 2rem; max-width: 30rem; color: var(--muted); font-size: var(--step-1); }

/* Responsive */
@media (max-width: 1080px) {
  .nav__links { gap: 1.25rem; }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 1.25rem; }
}

@media (max-width: 960px) {
  .track__line { top: 1.25rem; bottom: 1.25rem; left: 1.1875rem; right: auto; width: 1.5px; height: auto; transform-origin: center top; }
  .track__steps { grid-template-columns: 1fr; gap: 0; }
  .track__steps li { display: grid; grid-template-columns: 2.5rem 1fr; column-gap: 1.25rem; padding-bottom: 2rem; }
  .track__steps li::before { grid-row: span 2; margin: 0; }
  .track__steps li:last-child { padding-bottom: 0; }
  .track__steps p { max-width: none; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .hero__grid, .split { grid-template-columns: 1fr; }
  .section__head--sticky { position: static; }
  .criteria, .why__cols, .unis { grid-template-columns: 1fr; }
  .seasons { grid-template-columns: 1fr 1fr; }
  .life { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ledger thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .ledger, .ledger tbody { display: block; }
  .ledger tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 1rem;
    padding-block: 1rem;
  }
  .ledger tbody tr[hidden] { display: none; }
  .ledger tbody th, .ledger td { display: block; padding: 0; }
  .ledger td.val { grid-column: 2; grid-row: 1; }
  .ledger td.desc { grid-column: 1 / -1; grid-row: 2; margin-top: .5rem; font-size: .9375rem; }
  .filters__count { margin-left: 0; width: 100%; }
  .reasons > div { grid-template-columns: 1fr; gap: .375rem; }
}

@media (max-width: 560px) {
  .nav__inner { gap: 1rem; }
  .nav__the { display: none; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts > div:last-child { grid-column: 1 / -1; }
  .pending__list li { flex-wrap: wrap; gap: .375rem; }
  .pending__list .tbc { margin-left: 0; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
