@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("assets/fonts/AtkinsonHyperlegibleNext-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("assets/fonts/AtkinsonHyperlegibleNext-Italic-Variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --surface: #eff5f5;
  --surface-strong: #dce9ea;
  --ink: #17282e;
  --muted: #51666c;
  --primary: #087f8c;
  --primary-strong: #075863;
  --on-primary: #f8ffff;
  --line: #cad9db;
  --focus: #008a9a;
  --bg: oklch(1 0 0);
  --surface: oklch(0.965 0.008 200);
  --surface-strong: oklch(0.925 0.012 200);
  --ink: oklch(0.205 0.018 220);
  --muted: oklch(0.43 0.025 215);
  --primary: oklch(0.51 0.105 200);
  --primary-strong: oklch(0.36 0.085 200);
  --on-primary: oklch(0.985 0.005 200);
  --line: oklch(0.86 0.012 205);
  --focus: oklch(0.58 0.15 200);
  --font: "Atkinson Hyperlegible Next", ui-sans-serif, system-ui, sans-serif;
  --shell: 86rem;
  --measure: 70ch;
  --radius-panel: 0.75rem;
  --radius-control: 0.375rem;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e171a;
    --surface: #162328;
    --surface-strong: #20343a;
    --ink: #e8f1f2;
    --muted: #a8bbbe;
    --primary: #6bc9d1;
    --primary-strong: #9adce1;
    --on-primary: #102326;
    --line: #32474c;
    --focus: #8edbe1;
    --bg: oklch(0.12 0.008 220);
    --surface: oklch(0.17 0.012 215);
    --surface-strong: oklch(0.23 0.016 210);
    --ink: oklch(0.94 0.01 205);
    --muted: oklch(0.73 0.025 205);
    --primary: oklch(0.75 0.08 200);
    --primary-strong: oklch(0.82 0.075 200);
    --on-primary: oklch(0.14 0.02 215);
    --line: oklch(0.31 0.018 210);
    --focus: oklch(0.79 0.12 200);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: clamp(1rem, 0.97rem + 0.12vw, 1.075rem);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 0.2rem solid var(--focus);
  outline-offset: 0.2rem;
}

::selection {
  background: var(--primary);
  color: var(--on-primary);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: var(--space-4);
  font-size: clamp(3rem, 7vw, 5.15rem);
  font-weight: 720;
}

h2 {
  max-width: 18ch;
  margin-bottom: var(--space-4);
  font-size: clamp(2.15rem, 4.2vw, 3.75rem);
  font-weight: 700;
}

h3 {
  margin-bottom: var(--space-2);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 680;
}

p {
  text-wrap: pretty;
}

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

.section {
  padding-block: var(--space-8);
}

.eyebrow,
.case-label,
.week-meta,
.source-name {
  margin-bottom: var(--space-3);
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 730;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: var(--space-2);
  left: var(--space-2);
  padding: var(--space-2) var(--space-3);
  transform: translateY(-180%);
  border-radius: var(--radius-control);
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark-mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
}

.site-nav a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 620;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.nav-download):hover {
  color: var(--primary-strong);
}

.site-nav .nav-download {
  padding: 0.62rem 0.9rem;
  border-radius: var(--radius-control);
  background: var(--primary-strong);
  color: var(--on-primary);
}

.menu-button {
  display: none;
  min-height: 2.75rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--bg);
  color: var(--ink);
  font-weight: 680;
}

.hero {
  display: grid;
  min-height: calc(100svh - 4.5rem);
  padding-block: clamp(3rem, 8vw, 7rem);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
}

.hero-copy {
  max-width: 48rem;
}

.hero-summary {
  max-width: 38rem;
  margin-bottom: var(--space-5);
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-2);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.button:hover {
  transform: translateY(-0.12rem);
  text-decoration: none;
}

.button:active {
  transform: translateY(0.08rem);
}

.button-primary {
  background: var(--primary-strong);
  color: var(--on-primary);
}

.button-secondary {
  border-color: var(--line);
  background: var(--bg);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--primary);
}

.course-facts {
  display: grid;
  max-width: 42rem;
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  gap: var(--space-3);
  grid-template-columns: repeat(3, 1fr);
}

.course-facts div {
  min-width: 0;
}

.course-facts dt {
  margin-bottom: 0.18rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-facts dd {
  margin: 0;
  font-weight: 650;
  line-height: 1.3;
}

.hero-figure {
  position: relative;
  margin: 0;
}

.hero-figure::before {
  position: absolute;
  z-index: -1;
  width: 38%;
  height: 44%;
  right: -1.1rem;
  bottom: -1.1rem;
  border-radius: var(--radius-panel);
  background: var(--surface-strong);
  content: "";
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-panel);
  object-fit: cover;
}

.hero-figure figcaption {
  max-width: 28rem;
  margin-top: var(--space-2);
  color: var(--muted);
  font-size: 0.88rem;
}

.section-heading {
  display: grid;
  margin-bottom: var(--space-6);
  align-items: end;
  gap: var(--space-5);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
}

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

.section-heading > p {
  max-width: 42rem;
  color: var(--muted);
}

.course-section {
  background: var(--surface);
}

.course-map {
  display: grid;
  margin: 0 0 var(--space-5);
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.course-map li + li {
  border-left: 1px solid var(--line);
}

.course-map a {
  display: flex;
  min-height: 13rem;
  padding: var(--space-4);
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 140ms ease, transform 140ms ease;
}

.course-map a:hover {
  background: var(--surface-strong);
  transform: translateY(-0.15rem);
}

.course-map strong {
  margin: auto 0 var(--space-1);
  font-size: 1.28rem;
  line-height: 1.15;
}

.course-map a > span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.week-number {
  color: var(--primary-strong);
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.schedule-tools {
  display: flex;
  margin-bottom: var(--space-6);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.schedule-tools p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.text-button {
  display: none;
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--primary-strong);
  cursor: pointer;
  font-weight: 700;
}

.js .text-button {
  display: inline-block;
}

.week-list {
  border-top: 1px solid var(--line);
}

.week {
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--line);
}

.week-header {
  display: grid;
  align-items: start;
  gap: var(--space-4);
  grid-template-columns: 4rem minmax(0, 1fr) auto;
}

.week-index {
  color: var(--primary-strong);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.week-header h3 {
  margin-bottom: var(--space-2);
}

.week-meta {
  margin-bottom: var(--space-2);
}

.week-question {
  max-width: var(--measure);
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.quiet-link {
  display: inline-block;
  color: var(--primary-strong);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.week-outcome {
  display: grid;
  margin: var(--space-4) 0 var(--space-3) 4rem;
  gap: var(--space-2);
  grid-template-columns: 1fr 1fr;
}

.week-outcome p {
  margin: 0;
  color: var(--muted);
}

.week-outcome strong {
  color: var(--ink);
}

.schedule {
  margin-left: 4rem;
  border-top: 1px solid var(--line);
}

.schedule summary {
  padding-block: var(--space-3);
  color: var(--primary-strong);
  cursor: pointer;
  font-weight: 700;
}

.schedule[open] summary {
  border-bottom: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

caption {
  padding: var(--space-3) 0 var(--space-2);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
}

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

th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 740;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td:first-child,
td:nth-child(2) {
  width: 7rem;
  white-space: nowrap;
}

td:last-child {
  width: 12rem;
  color: var(--muted);
}

tfoot th,
tfoot td {
  color: var(--ink);
  font-weight: 720;
}

.method-grid {
  display: grid;
  margin-bottom: var(--space-7);
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.method-intro p:last-child {
  max-width: var(--measure);
  color: var(--muted);
  font-size: 1.1rem;
}

.evidence-grid {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.evidence-grid > div {
  padding: var(--space-4);
  border-bottom: 1px solid var(--line);
}

.evidence-grid > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.evidence-grid dt {
  display: flex;
  margin-bottom: var(--space-2);
  align-items: center;
  gap: var(--space-2);
  font-weight: 720;
}

.evidence-grid dt span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 780;
}

.evidence-grid dd {
  margin: 0;
  color: var(--muted);
}

.case-panel {
  display: grid;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-panel);
  background: var(--primary-strong);
  color: var(--on-primary);
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.case-panel h3,
.case-panel .case-label,
.case-panel strong {
  color: var(--on-primary);
}

.case-copy p:not(.case-label) {
  max-width: 47ch;
  opacity: 0.84;
}

.case-flow {
  margin: 0;
  padding: 0;
  counter-reset: case-step;
  list-style: none;
}

.case-flow li {
  display: grid;
  padding: var(--space-3) 0;
  border-bottom: 1px solid color-mix(in oklab, var(--on-primary) 28%, transparent);
  align-items: baseline;
  gap: var(--space-3);
  grid-template-columns: 9.5rem 1fr;
}

.case-flow li::before {
  display: none;
}

.case-flow span {
  opacity: 0.82;
}

.assessment-section {
  border-block: 1px solid var(--line);
}

.assessment-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.assessment-heading {
  align-self: start;
}

.assessment-heading > p:not(.eyebrow) {
  max-width: 48ch;
  color: var(--muted);
}

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

.assessment-path li {
  display: grid;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  gap: var(--space-4);
  grid-template-columns: 4rem 1fr;
}

.assessment-path li > span {
  color: var(--primary-strong);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  font-weight: 760;
}

.assessment-path strong {
  font-size: 1.12rem;
}

.assessment-path p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.source-section {
  background: var(--surface);
}

.design-commitments {
  display: grid;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.design-commitments article {
  display: flex;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  flex-direction: column;
}

.design-commitments article + article {
  border-left: 1px solid var(--line);
}

.design-commitments h3 {
  min-height: 2.2em;
  font-size: 1.45rem;
}

.design-commitments ul {
  margin: 0 0 var(--space-5);
  padding-left: 1.2rem;
  color: var(--muted);
}

.design-commitments .quiet-link {
  margin-top: auto;
  white-space: normal;
}

.source-bridge {
  background: var(--surface-strong);
}

.next-section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.next-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.82fr);
}

.next-grid > div > p:not(.eyebrow) {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.semester-strands li {
  display: grid;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
  gap: var(--space-3);
  grid-template-columns: 2rem 1fr;
  counter-increment: strands;
  font-weight: 620;
}

.semester-strands li::before {
  color: var(--primary-strong);
  content: counter(strands, decimal-leading-zero);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  font-weight: 760;
}

.site-footer {
  padding-top: var(--space-7);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  padding-bottom: var(--space-6);
  gap: var(--space-5);
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
}

.footer-grid > div:first-child p {
  max-width: 44ch;
  margin-top: var(--space-3);
  color: var(--muted);
}

.footer-grid h2 {
  margin-bottom: var(--space-3);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: var(--space-2);
}

.footer-grid a:not(.wordmark) {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  padding-block: var(--space-3);
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: enter 480ms both;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: 60ms;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: 110ms;
  }

  .hero-copy > :nth-child(4),
  .hero-copy > :nth-child(5) {
    animation-delay: 160ms;
  }

  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(0.75rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 68rem) {
  .header-inner {
    flex-wrap: wrap;
  }

  .js .menu-button {
    display: inline-block;
  }

  .site-nav {
    width: 100%;
    padding-bottom: var(--space-3);
    flex-wrap: wrap;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav .nav-download {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.82fr);
  }

  .course-map {
    grid-template-columns: 1fr 1fr;
  }

  .course-map li + li {
    border-left: 0;
  }

  .course-map li:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .course-map li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .course-map a {
    min-height: 10rem;
  }

  .method-grid,
  .assessment-layout,
  .next-grid {
    gap: var(--space-6);
    grid-template-columns: 1fr;
  }

  .case-panel {
    grid-template-columns: 1fr;
  }

  .design-commitments {
    grid-template-columns: 1fr;
  }

  .design-commitments article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .design-commitments h3 {
    min-height: 0;
  }
}

@media (max-width: 48rem) {
  :root {
    --space-7: 3.5rem;
    --space-8: 5rem;
  }

  .shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  .header-inner {
    min-height: 4rem;
  }

  .wordmark > span:last-child {
    max-width: 10rem;
    white-space: normal;
    line-height: 1.05;
  }

  .site-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a,
  .site-nav .nav-download {
    width: 100%;
    margin: 0;
    padding: 0.72rem 0;
    border-radius: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
  }

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

  .hero-figure {
    max-width: 38rem;
  }

  .hero-figure::before {
    right: 0;
  }

  .course-facts {
    grid-template-columns: 1fr;
  }

  .course-facts div {
    display: grid;
    gap: var(--space-2);
    grid-template-columns: 5rem 1fr;
  }

  .section-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .course-map {
    grid-template-columns: 1fr;
  }

  .course-map li:nth-child(even) {
    border-left: 0;
  }

  .course-map li + li,
  .course-map li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .course-map a {
    min-height: 8.5rem;
  }

  .schedule-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .week-header {
    grid-template-columns: 2.75rem minmax(0, 1fr);
  }

  .week-header .quiet-link {
    grid-column: 2;
  }

  .week-outcome,
  .schedule {
    margin-left: 2.75rem;
  }

  .week-outcome {
    grid-template-columns: 1fr;
  }

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

  .evidence-grid > div:nth-child(odd) {
    border-right: 0;
  }

  .case-flow li {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 38rem) {
  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .week-header {
    grid-template-columns: 1fr;
  }

  .week-index,
  .week-header .quiet-link {
    grid-column: 1;
  }

  .week-outcome,
  .schedule {
    margin-left: 0;
  }

  .table-wrap {
    overflow: visible;
  }

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

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

  tbody tr {
    padding-block: var(--space-2);
    border-bottom: 1px solid var(--line);
  }

  tbody td {
    display: grid;
    width: auto;
    padding: 0.18rem 0;
    border: 0;
    gap: var(--space-2);
    grid-template-columns: 4.75rem 1fr;
    white-space: normal;
  }

  tbody td::before {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 730;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  tbody td:nth-child(1)::before {
    content: "Start";
  }

  tbody td:nth-child(2)::before {
    content: "Minutes";
  }

  tbody td:nth-child(3)::before {
    content: "Activity";
  }

  tbody td:nth-child(4)::before {
    content: "Mode";
  }

  tfoot tr {
    display: grid;
    padding-top: var(--space-3);
    grid-template-columns: auto 1fr;
  }

  tfoot th,
  tfoot td {
    width: auto;
    padding: 0;
    border: 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@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;
  }
}

@media print {
  :root {
    color-scheme: light;
    --bg: #fff;
    --surface: #fff;
    --surface-strong: #f2f2f2;
    --ink: #000;
    --muted: #333;
    --primary: #000;
    --primary-strong: #000;
    --on-primary: #fff;
    --line: #999;
  }

  body {
    font-size: 10pt;
  }

  .site-header,
  .hero-actions,
  .schedule-tools,
  .site-footer {
    display: none !important;
  }

  .hero {
    min-height: 0;
    padding-block: 1cm;
    grid-template-columns: 1fr 0.6fr;
  }

  .section {
    padding-block: 1cm;
  }

  .course-map,
  .design-commitments {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule:not([open]) > *:not(summary) {
    display: block;
  }

  .schedule summary {
    display: none;
  }

  a[href^="http"]::after {
    color: #444;
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: 400;
    overflow-wrap: anywhere;
  }

  .button::after,
  .wordmark::after {
    content: "" !important;
  }
}
