.page-body {
  background: var(--paper);
}

.page-main {
  overflow: hidden;
}

.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 54px);
  align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 66px;
  background: var(--ink);
  color: var(--white);
}

.page-hero-grid,
.page-hero-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

.page-hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  width: 43%;
  place-items: center;
  overflow: hidden;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--paper);
  color: var(--ink);
}

.page-hero-visual::before {
  background-image:
    linear-gradient(rgba(9, 17, 23, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 17, 23, 0.07) 1px, transparent 1px);
}

.page-hero-visual::after {
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: 10%;
  width: 4px;
  transform: rotate(8deg);
  background: var(--red);
  content: "";
}

.page-hero-visual img {
  position: relative;
  z-index: 1;
  width: min(58%, 420px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(9, 17, 23, 0.18);
}

.page-hero-visual-code {
  position: absolute;
  right: 7%;
  bottom: 6%;
  z-index: 1;
  color: rgba(9, 17, 23, 0.2);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 820;
  line-height: 0.8;
  text-transform: uppercase;
}

.page-hero-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.page-hero-copy {
  width: 56%;
  max-width: 800px;
}

.page-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-crumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.page-crumbs i {
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  background: var(--red);
}

.page-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: #f36c74;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.page-kicker::before {
  width: 34px;
  height: 2px;
  background: var(--red);
  content: "";
}

.page-hero h1 {
  max-width: 800px;
  font-size: 5.4rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.page-hero h1 em {
  color: #ef5963;
  font-family: var(--font-serif);
  font-weight: 700;
  text-transform: none;
}

.page-hero-copy > p {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
  line-height: 1.72;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-hero-readout {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.page-hero-readout span,
.page-hero-readout strong {
  display: block;
}

.page-hero-readout span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero-readout strong {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.js [data-page-hero-item] {
  opacity: 0;
  transform: translateY(24px);
}

.js body.intro-complete [data-page-hero-item] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js body.intro-complete [data-page-hero-item]:nth-child(2) { transition-delay: 80ms; }
.js body.intro-complete [data-page-hero-item]:nth-child(3) { transition-delay: 150ms; }
.js body.intro-complete [data-page-hero-item]:nth-child(4) { transition-delay: 220ms; }
.js body.intro-complete [data-page-hero-item]:nth-child(5) { transition-delay: 290ms; }

.page-section {
  padding: 112px 0;
}

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

.page-section-muted {
  background: var(--paper-2);
}

.page-section-dark {
  background: var(--ink);
  color: var(--white);
}

.page-section-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin-bottom: 58px;
}

.page-section-head .kicker {
  margin: 8px 0 0;
}

.page-section-head h2 {
  max-width: 900px;
  font-size: 4rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.page-section-head > div > p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.75;
}

.page-section-dark .page-section-head > div > p {
  color: rgba(255, 255, 255, 0.56);
}

.provisional-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: rgba(210, 31, 43, 0.07);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.provisional-note strong {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(170px, 0.7fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-control {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.catalog-control:last-child {
  border-right: 0;
}

.catalog-control label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-control input,
.catalog-control select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
}

.catalog-control input::placeholder {
  color: #929a9e;
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 780;
  text-transform: uppercase;
}

.catalog-meta strong {
  color: var(--red);
}

.catalog-reset {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-grid,
.related-grid,
.resource-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.catalog-card,
.related-card,
.library-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 500px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.catalog-card:hover,
.catalog-card:focus-within,
.related-card:hover,
.related-card:focus-within,
.library-card:hover,
.library-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(210, 31, 43, 0.35);
  box-shadow: 0 22px 54px rgba(9, 17, 23, 0.13);
}

.catalog-card-visual,
.related-card-visual {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 9;
  align-items: flex-end;
  overflow: hidden;
  padding: 22px;
  background: var(--ink-2);
  color: var(--white);
  isolation: isolate;
}

.catalog-card-visual::before,
.related-card-visual::before,
.faculty-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
}

.catalog-card-visual::after,
.related-card-visual::after {
  position: absolute;
  top: -35%;
  right: 28%;
  width: 2px;
  height: 175%;
  transform: rotate(27deg);
  background: rgba(255, 255, 255, 0.36);
  content: "";
}

.tone-red { background: #4b2025; }
.tone-steel { background: #2c414b; }
.tone-sage { background: #34443d; }
.tone-charcoal { background: #202a31; }

.catalog-card-code,
.related-card-code {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 820;
  line-height: 0.8;
  text-transform: uppercase;
}

.catalog-card-index,
.related-card-index {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-card-body,
.related-card-body,
.library-card-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.catalog-card-meta,
.related-card-meta,
.library-card-meta {
  color: var(--red);
  font-size: 0.59rem;
  font-weight: 850;
  text-transform: uppercase;
}

.catalog-card h3,
.related-card h3,
.library-card h3 {
  margin-top: 13px;
  font-size: 1.45rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.catalog-card p,
.related-card p,
.library-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.catalog-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.catalog-card-specs span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 780;
  text-transform: uppercase;
}

.catalog-card-actions,
.related-card-actions,
.library-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.catalog-card-actions a,
.related-card-actions a,
.library-card-actions a {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.catalog-empty {
  margin-top: 34px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-empty h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
}

.catalog-empty p {
  margin-top: 10px;
  color: var(--muted);
}

.pathway-band,
.request-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--red-deep);
  color: var(--white);
}

.pathway-band::before,
.request-band::before {
  position: absolute;
  inset: 0 0 0 56%;
  background: var(--ink);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.pathway-layout,
.request-band-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 90px;
  align-items: center;
}

.pathway-layout h2,
.request-band-layout h2 {
  font-size: 3.8rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.pathway-layout p,
.request-band-layout p {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.7;
}

.pathway-actions,
.request-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 82px;
  align-items: start;
}

.course-overview h2,
.course-objectives h2,
.related-heading h2 {
  font-size: 3.5rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.course-overview > p {
  max-width: 780px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.course-objectives {
  margin-top: 66px;
}

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

.objective-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  line-height: 1.65;
  counter-increment: objective;
}

.objective-list li::before {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  content: "0" counter(objective);
}

.course-facts {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  border-top: 4px solid var(--red);
  background: var(--ink);
  color: var(--white);
}

.course-facts-header {
  padding: 26px;
  border-bottom: 1px solid var(--line-light);
}

.course-facts-header span {
  color: #f36c74;
  font-size: 0.59rem;
  font-weight: 850;
  text-transform: uppercase;
}

.course-facts-header strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
}

.course-fact-list {
  margin: 0;
  padding: 0 26px;
}

.course-fact-list > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-light);
}

.course-fact-list dt {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.57rem;
  font-weight: 800;
  text-transform: uppercase;
}

.course-fact-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.5;
}

.course-facts-action {
  padding: 26px;
}

.course-facts-action .button {
  width: 100%;
}

.course-confirmation {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  padding: 72px 0;
}

.course-confirmation h2 {
  font-size: 3rem;
  line-height: 0.98;
  text-transform: uppercase;
}

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

.confirmation-list li {
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.related-card {
  min-height: 380px;
}

.related-card-code {
  font-size: 3.2rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.5fr);
  gap: 92px;
  align-items: start;
}

.story-copy h2 {
  font-size: 4rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.story-copy p {
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.story-readout {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.story-readout strong {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.8;
}

.story-readout span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.discipline-item {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.discipline-item > span {
  color: var(--red);
  font-size: 0.59rem;
  font-weight: 850;
}

.discipline-item h3 {
  margin-top: 42px;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.discipline-item p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.principle-item {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.principle-item span {
  color: #f36c74;
  font-size: 0.61rem;
  font-weight: 850;
}

.principle-item h3 {
  margin-top: 64px;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.principle-item p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.65;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faculty-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.faculty-visual {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: var(--ink-2);
  isolation: isolate;
}

.faculty-visual img {
  width: 46%;
  opacity: 0.38;
  filter: grayscale(1);
}

.faculty-visual span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.57rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faculty-copy {
  padding: 24px;
}

.faculty-copy > span {
  color: var(--red);
  font-size: 0.59rem;
  font-weight: 850;
  text-transform: uppercase;
}

.faculty-copy h3 {
  margin-top: 12px;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.faculty-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.content-needed {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.content-needed h2 {
  font-size: 3.2rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.content-needed-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.content-needed-list li {
  display: flex;
  gap: 12px;
  padding: 18px 12px 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.content-needed-list li::before {
  color: var(--red);
  content: "+";
}

.resource-tabs {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-tabs button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 820;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.resource-tabs button[aria-selected="true"],
.resource-tabs button:hover,
.resource-tabs button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.library-card {
  min-height: 380px;
}

.library-card-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--red);
  font-size: 0.59rem;
  font-weight: 850;
  text-transform: uppercase;
}

.field-feature {
  position: relative;
  overflow: hidden;
}

.field-feature::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.field-feature-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: 88px;
  align-items: end;
}

.field-feature blockquote {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.field-feature blockquote em {
  color: #ef5963;
  font-family: var(--font-serif);
  text-transform: none;
}

.field-feature-copy p {
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.72;
}

.field-feature-copy .button {
  margin-top: 24px;
}

.request-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.request-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.request-sidebar > p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

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

.request-progress li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 780;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.request-progress li::before {
  color: #9ca3a6;
  content: attr(data-step-number);
}

.request-progress li.is-current {
  transform: translateX(6px);
  color: var(--text);
}

.request-progress li.is-current::before,
.request-progress li.is-complete::before {
  color: var(--red);
}

.request-form-shell {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.request-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.request-form-head span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.request-form-head small {
  color: var(--muted);
  font-size: 0.65rem;
}

.request-form-shell > form > .wizard-error {
  margin: 12px 28px 0;
}

.request-step {
  padding: 42px 28px 28px;
}

.request-step[hidden] {
  display: none;
}

.request-step h2 {
  font-size: 2.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.request-step > p {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.68;
}

.wizard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
  margin-top: 34px;
}

.wizard-grid .field-full {
  grid-column: 1 / -1;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.option-control {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.option-control:has(input:checked) {
  border-color: var(--red);
  background: rgba(210, 31, 43, 0.055);
}

.option-control input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.option-control span {
  font-size: 0.76rem;
  font-weight: 740;
}

.wizard-error {
  min-height: 1.4em;
  margin-top: 12px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 750;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.wizard-actions-group {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.wizard-back {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 820;
  text-transform: uppercase;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review-list > div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-list dt {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-list dd {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.request-success {
  padding: 64px 32px;
  text-align: center;
}

.request-success[hidden] {
  display: none;
}

.request-success-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.6rem;
}

.request-success h2 {
  margin-top: 24px;
  font-size: 3rem;
  text-transform: uppercase;
}

.request-success p {
  max-width: 580px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.request-success .button {
  margin-top: 28px;
}

.request-context {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.request-context span {
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 850;
  text-transform: uppercase;
}

.request-context strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .page-hero h1 {
    font-size: 4.7rem;
  }

  .catalog-grid,
  .related-grid,
  .resource-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .page-hero-shell {
    width: min(calc(100% - 48px), var(--container));
  }

  .page-hero h1 {
    font-size: 4rem;
  }

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

  .catalog-control:nth-child(2) {
    border-right: 0;
  }

  .catalog-control:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .course-detail-layout,
  .story-layout,
  .field-feature-layout {
    gap: 48px;
  }

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

@media (min-width: 861px) and (max-height: 850px) {
  .page-hero {
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 46px;
  }

  .page-crumbs {
    margin-bottom: 18px;
  }

  .page-kicker {
    margin-bottom: 14px;
  }

  .page-hero h1 {
    font-size: 4.7rem;
  }

  .page-hero-copy > p {
    margin-top: 18px;
  }

  .page-hero-actions {
    margin-top: 22px;
  }

  .page-hero-readout {
    margin-top: 24px;
  }
}

@media (max-width: 860px) {
  .page-hero {
    display: block;
    min-height: calc(100svh - 42px);
    padding-top: 360px;
    padding-bottom: 70px;
  }

  .page-hero-visual {
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 290px;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  }

  .page-hero-visual::after {
    top: -30%;
    bottom: -30%;
    left: 18%;
    transform: rotate(22deg);
  }

  .page-hero-visual img {
    width: 210px;
  }

  .page-hero-visual-code {
    font-size: 3.6rem;
  }

  .page-hero-copy {
    width: 100%;
  }

  .page-hero h1 {
    max-width: 680px;
    font-size: 3.7rem;
  }

  .page-section {
    padding: 88px 0;
  }

  .page-section-head,
  .course-detail-layout,
  .course-confirmation,
  .story-layout,
  .content-needed,
  .field-feature-layout,
  .request-layout,
  .pathway-layout,
  .request-band-layout {
    grid-template-columns: 1fr;
  }

  .page-section-head {
    gap: 20px;
  }

  .page-section-head h2,
  .story-copy h2 {
    font-size: 3.35rem;
  }

  .page-section-head > div > p {
    max-width: 650px;
  }

  .course-facts,
  .request-sidebar {
    position: static;
  }

  .course-confirmation,
  .content-needed {
    gap: 36px;
  }

  .discipline-matrix,
  .faculty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway-band::before,
  .request-band::before {
    inset: 50% 0 0;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  }

  .pathway-layout,
  .request-band-layout {
    gap: 76px;
  }

  .request-progress {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .request-progress li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-right: 12px;
    border-right: 1px solid var(--line);
  }

  .request-progress li:last-child {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .page-hero-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .page-hero {
    padding-top: 225px;
    padding-bottom: 32px;
  }

  .page-hero-visual {
    height: 180px;
  }

  .page-hero-visual img {
    width: 125px;
    transform: translateY(-12px);
  }

  .page-crumbs {
    display: none;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .page-hero-copy > p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .page-hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .page-hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 11px 15px;
  }

  .page-kicker {
    margin-bottom: 14px;
  }

  .page-hero-readout {
    display: none;
  }

  .page-section {
    padding: 74px 0;
  }

  .page-section-head h2,
  .story-copy h2,
  .course-overview h2,
  .course-objectives h2,
  .related-heading h2 {
    font-size: 2.7rem;
  }

  .catalog-controls,
  .catalog-grid,
  .related-grid,
  .resource-library-grid,
  .discipline-matrix,
  .principles-grid,
  .faculty-grid,
  .confirmation-list,
  .content-needed-list,
  .wizard-grid,
  .wizard-options,
  .review-list {
    grid-template-columns: 1fr;
  }

  .catalog-control {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-control:last-child {
    border-bottom: 0;
  }

  .catalog-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-card,
  .library-card {
    min-height: 0;
  }

  .catalog-card-code {
    font-size: 3.7rem;
  }

  .pathway-band,
  .request-band {
    padding: 72px 0;
  }

  .pathway-layout h2,
  .request-band-layout h2 {
    font-size: 3rem;
  }

  .pathway-actions .button,
  .request-band-actions .button {
    width: 100%;
  }

  .course-detail-layout {
    gap: 48px;
  }

  .course-objectives {
    margin-top: 48px;
  }

  .objective-list li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .course-confirmation h2,
  .content-needed h2 {
    font-size: 2.55rem;
  }

  .story-readout strong {
    font-size: 5.4rem;
  }

  .discipline-item,
  .principle-item {
    min-height: 0;
  }

  .principle-item h3 {
    margin-top: 36px;
  }

  .resource-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-tabs button {
    border-bottom: 1px solid var(--line);
  }

  .field-feature blockquote {
    font-size: 2.75rem;
  }

  .request-progress {
    grid-template-columns: 1fr;
  }

  .request-progress li {
    display: none;
  }

  .request-progress li.is-current {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    border-right: 0;
  }

  .request-step {
    padding: 32px 18px 20px;
  }

  .request-step h2 {
    font-size: 2.25rem;
  }

  .request-form-head {
    padding: 20px 18px;
  }

  .wizard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wizard-actions-group {
    width: 100%;
    margin-left: 0;
  }

  .wizard-actions-group > *,
  .wizard-actions > .button,
  .wizard-back {
    flex: 1;
    justify-content: center;
  }

  .request-success {
    padding: 50px 20px;
  }

  .request-success h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 440px) {
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .page-section-head h2,
  .story-copy h2 {
    font-size: 2.35rem;
  }

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

  .resource-tabs {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 341px) and (max-width: 440px) and (min-height: 780px) {
  .page-hero-readout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 340px) {
  .page-hero {
    padding-top: 213px;
    padding-bottom: 24px;
  }

  .page-hero h1 {
    font-size: 2.15rem;
  }

  .page-hero-copy > p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .page-hero-actions {
    margin-top: 14px;
  }
}

html.motion-reduce.js [data-page-hero-item] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-full).js [data-page-hero-item] {
    opacity: 1;
    transform: none;
  }
}
