:root {
  --navy-950: #00143f;
  --navy-900: #001a57;
  --navy-800: #072866;
  --blue-600: #0064a8;
  --blue-100: #dcebf3;
  --ink-900: #142033;
  --ink-700: #3b4858;
  --ink-500: #596574;
  --paper: #f7f4ec;
  --paper-deep: #efeadf;
  --white: #fff;
  --gold-500: #d3a446;
  --gold-300: #f4c96f;
  --line: #d8d3c8;
  --line-dark: rgba(255, 255, 255, 0.22);
  --font-display: "Titillium Web", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Open Sans", Helvetica, Arial, sans-serif;
  --page-width: 1180px;
  --reading-width: 760px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-space: clamp(5rem, 10vw, 9rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gold-500);
  content: "";
}

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--navy-900);
}

::selection {
  color: var(--navy-950);
  background: var(--gold-300);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.8rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--navy-900);
}

.site-header__inner {
  display: flex;
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  min-height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.site-brand__mark {
  display: grid;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  place-items: center;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-brand__text strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-brand__text span {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 3vw, 2.3rem);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--gold-300);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 26, 87, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 26, 87, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.hero__inner {
  display: grid;
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  min-height: min(750px, calc(100vh - 88px));
  margin: 0 auto;
  padding: clamp(4.6rem, 8vw, 7.6rem) 0 clamp(4rem, 7vw, 6.6rem);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.78fr);
}

.hero__copy {
  max-width: 720px;
  animation: rise-in 700ms var(--ease) both;
}

.eyebrow,
.section-index {
  margin: 0 0 1.5rem;
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.eyebrow span {
  padding: 0.25rem 0.5rem;
  color: var(--white);
  background: var(--navy-900);
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.7vw, 7.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.86;
}

.hero h1 span {
  color: var(--blue-600);
  font-weight: 600;
}

.hero__subtitle {
  margin: 1.45rem 0 0;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.012em;
}

.hero__lede {
  max-width: 650px;
  margin: 1.7rem 0 0;
  color: var(--ink-700);
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.course-team {
  display: grid;
  max-width: 650px;
  margin-top: 1.8rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  gap: 1rem 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.course-team__member {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem 0.7rem;
}

.course-team__role {
  color: var(--ink-500);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.course-team a {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration-color: rgba(0, 26, 87, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28rem;
}

.course-team a:hover {
  color: var(--blue-600);
  text-decoration-color: currentColor;
}

.hero__actions {
  display: flex;
  margin-top: 2.25rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0.74rem 1.15rem;
  align-items: center;
  gap: 1.3rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button--primary {
  color: var(--white);
  background: var(--navy-900);
}

.button--primary:hover {
  color: var(--navy-950);
  background: var(--gold-300);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
}

.evidence-figure {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0;
  border: 1px solid rgba(0, 26, 87, 0.2);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 18px 18px 0 rgba(0, 26, 87, 0.055);
  animation: rise-in 700ms 120ms var(--ease) both;
}

.evidence-figure::before {
  position: absolute;
  z-index: 2;
  top: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  border-top: 2px solid var(--gold-500);
  border-right: 2px solid var(--gold-500);
  content: "";
  pointer-events: none;
}

.evidence-figure__topline {
  display: flex;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(0, 26, 87, 0.16);
  color: var(--ink-500);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  justify-content: space-between;
  text-transform: uppercase;
}

.evidence-plot {
  display: block;
  width: 100%;
  height: auto;
}

.plot-grid path {
  fill: none;
  stroke: rgba(0, 26, 87, 0.1);
  stroke-width: 1;
}

.plot-number {
  fill: var(--blue-600);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.plot-label {
  fill: var(--navy-900);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.plot-dots circle {
  fill: var(--blue-600);
}

.plot-dots circle:nth-child(3n) {
  fill: var(--gold-500);
}

.plot-axis,
.plot-ticks path {
  fill: none;
  stroke: rgba(20, 32, 51, 0.52);
  stroke-width: 1.5;
}

.plot-mean {
  fill: none;
  stroke: var(--gold-500);
  stroke-dasharray: 3 3;
  stroke-width: 2;
}

.plot-band {
  fill: rgba(0, 100, 168, 0.11);
  stroke: none;
}

.plot-curve {
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 3;
}

.plot-interval {
  fill: none;
  stroke: var(--navy-900);
  stroke-width: 2;
}

.plot-estimate {
  fill: var(--gold-500);
  stroke: var(--paper);
  stroke-width: 3;
}

.plot-caption {
  fill: var(--ink-500);
  font-family: var(--font-body);
  font-size: 9px;
}

.evidence-figure figcaption {
  padding: 0.95rem 1rem 1rem;
  border-top: 1px solid rgba(0, 26, 87, 0.13);
  color: var(--ink-700);
  font-size: 0.75rem;
  line-height: 1.5;
}

.hero__footnote {
  display: flex;
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  margin: 0 auto;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-500);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  justify-content: space-between;
  text-transform: uppercase;
}

.course-section,
.materials-section {
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.section-heading {
  display: grid;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  align-items: end;
  gap: 2rem;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 2fr);
}

.section-heading .section-index {
  margin: 0 0 0.45rem;
}

.section-heading h2,
.grading-section h2,
.materials-section h2,
.questions-section h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-intro {
  display: grid;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
  gap: 2rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.section-intro p {
  margin: 0;
}

.section-intro__lead {
  max-width: 740px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.section-intro p:last-child {
  max-width: 520px;
  color: var(--ink-700);
  font-size: 1.02rem;
  line-height: 1.85;
}

.themes {
  display: grid;
  border-top: 1px solid var(--navy-900);
  border-bottom: 1px solid var(--navy-900);
  grid-template-columns: repeat(3, 1fr);
}

.theme {
  min-height: 300px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

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

.theme__number {
  margin: 0 0 clamp(3rem, 8vw, 6rem);
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.theme h3 {
  margin: 0 0 0.7rem;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.theme p:last-child {
  max-width: 310px;
  margin: 0;
  color: var(--ink-700);
  font-size: 0.94rem;
}

.questions-section {
  color: var(--white);
  background: var(--navy-900);
}

.questions-section__inner {
  display: grid;
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  margin: 0 auto;
  padding: var(--section-space) 0;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.section-index--light {
  color: var(--gold-300);
}

.questions-section h2 {
  max-width: 500px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.questions-section__header > p:last-child {
  max-width: 470px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.question-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list li {
  display: grid;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line-dark);
  align-items: start;
  gap: 1.5rem;
  grid-template-columns: 44px 1fr;
}

.question-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.question-list__number {
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.question-list p {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
}

.grading-section {
  background: var(--paper-deep);
}

.grading-section__inner {
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.grading-section__header {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.grading-section__header .section-index {
  margin-bottom: 1rem;
}

.grading-section__header > p {
  max-width: 510px;
  margin: 0 0 0.5rem;
  color: var(--ink-700);
}

.grading-table-wrap {
  border-top: 2px solid var(--navy-900);
}

.grading-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.grading-table th,
.grading-table td {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.grading-table thead th {
  color: var(--ink-500);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.grading-table thead th:first-child,
.grading-table tbody th,
.grading-table tfoot th {
  width: 57%;
  padding-right: clamp(1rem, 4vw, 4rem);
}

.grading-table thead th:last-child {
  text-align: right;
}

.grading-table tbody th {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
}

.grade-meter {
  display: grid;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  grid-template-columns: minmax(70px, 1fr) 3.2rem;
}

.grade-meter strong,
.grading-table tfoot td {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}

.grade-track {
  display: block;
  height: 6px;
  background: rgba(0, 26, 87, 0.11);
}

.grade-bar {
  display: block;
  height: 100%;
  background: var(--blue-600);
}

.grade-bar--5 {
  width: 16.667%;
}

.grade-bar--10 {
  width: 33.333%;
}

.grade-bar--25 {
  width: 83.333%;
}

.grade-bar--30 {
  width: 100%;
  background: var(--gold-500);
}

.grading-table tfoot th,
.grading-table tfoot td {
  padding-top: 1.4rem;
  border-bottom: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.materials-section__header {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.materials-section__header .section-index {
  margin-bottom: 1rem;
}

.materials-section__header > p {
  max-width: 510px;
  margin: 0 0 0.5rem;
  color: var(--ink-700);
}

.resource-list {
  border-top: 2px solid var(--navy-900);
}

.resource {
  display: grid;
  min-height: 105px;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: 48px 1fr auto;
}

.resource__index {
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.resource h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
}

.resource p {
  margin: 0.18rem 0 0;
  color: var(--ink-500);
  font-size: 0.87rem;
}

.status {
  min-width: 90px;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--ink-500);
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.closing-note {
  display: grid;
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  margin: 0 auto clamp(5rem, 10vw, 8rem);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  background: var(--blue-600);
  gap: 0.3rem;
}

.closing-note p {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.closing-note p:first-child {
  color: var(--gold-300);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.site-footer__inner {
  display: grid;
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
  align-items: end;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr auto;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer__course {
  margin-bottom: 0.55rem !important;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-footer__affiliation {
  color: rgba(255, 255, 255, 0.52);
}

.back-to-top {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
  text-transform: uppercase;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero__inner {
    min-height: auto;
    gap: 4rem;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 820px;
  }

  .evidence-figure {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .questions-section__inner {
    gap: 4rem;
    grid-template-columns: 1fr;
  }

  .questions-section__header {
    display: grid;
    align-items: end;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .questions-section__header .section-index {
    grid-column: 1 / -1;
    margin-bottom: -0.5rem;
  }

  .questions-section__header > p:last-child {
    margin: 0 0 0.2rem;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 80px;
    align-items: center;
  }

  .site-brand__text span {
    display: none;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .site-nav a {
    padding: 0 0.15rem;
    font-size: 0.69rem;
  }

  .hero__inner {
    padding-top: 4.2rem;
  }

  .hero__footnote span:nth-child(2) {
    display: none;
  }

  .section-heading,
  .section-intro,
  .grading-section__header,
  .materials-section__header,
  .questions-section__header {
    grid-template-columns: 1fr;
  }

  .questions-section__header .section-index {
    grid-column: auto;
  }

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

  .theme {
    min-height: auto;
  }

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

  .theme__number {
    margin-bottom: 2rem;
  }

  .site-footer__inner {
    align-items: start;
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 1.15rem;
  }

  .site-header__inner {
    min-height: 112px;
    padding: 0.75rem 0 0.45rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-brand {
    min-height: 45px;
  }

  .site-nav {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    justify-content: space-between;
  }

  .site-nav a {
    min-height: 42px;
  }

  .hero__inner {
    padding-top: 3.8rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15.2vw, 4.8rem);
  }

  .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

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

  .evidence-figure {
    box-shadow: 9px 9px 0 rgba(0, 26, 87, 0.055);
  }

  .hero__footnote span:nth-child(3) {
    display: none;
  }

  .resource {
    gap: 0.8rem;
    grid-template-columns: 34px 1fr;
  }

  .grading-table thead th:first-child,
  .grading-table tbody th,
  .grading-table tfoot th {
    width: 60%;
    padding-right: 1rem;
  }

  .grade-meter {
    gap: 0.55rem;
    grid-template-columns: minmax(38px, 1fr) 2.7rem;
  }

  .status {
    width: max-content;
    margin-top: 0.3rem;
    grid-column: 2;
  }

  .closing-note {
    padding: 2rem 1.5rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    grid-column: auto;
  }
}

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

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

@media print {
  .site-header,
  .hero__actions,
  .hero__footnote,
  .back-to-top {
    display: none;
  }

  body,
  .hero,
  .grading-section,
  .questions-section,
  .site-footer {
    color: #000;
    background: #fff;
  }

  .hero__inner,
  .questions-section__inner {
    min-height: auto;
    padding: 2rem 0;
  }

  .questions-section h2,
  .question-list p,
  .site-footer__course {
    color: #000;
  }

  .questions-section *,
  .closing-note *,
  .site-footer * {
    color: #000 !important;
    border-color: #888 !important;
  }
}
