@font-face {
  font-family: "Pioneer Cyrillic Text";
  src: url("assets/MazzardH-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0400-052F, U+1C80-1C8F, U+2DE0-2DFF, U+A640-A69F, U+2116;
}

@font-face {
  font-family: "Pioneer Cyrillic Text";
  src: url("assets/MazzardH-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  unicode-range: U+0400-052F, U+1C80-1C8F, U+2DE0-2DFF, U+A640-A69F, U+2116;
}

@font-face {
  font-family: "Pioneer Cyrillic Display";
  src: url("assets/ZonaPro-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0400-052F, U+1C80-1C8F, U+2DE0-2DFF, U+A640-A69F, U+2116;
}

@font-face {
  font-family: "Pioneer Cyrillic Display";
  src: url("assets/ZonaPro-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  unicode-range: U+0400-052F, U+1C80-1C8F, U+2DE0-2DFF, U+A640-A69F, U+2116;
}

:root {
  --ink: #161616;
  --paper: #f8f8f8;
  --soft: #d1d1d1;
  --white: #ffffff;
  --brand: #f8f8f8;
  --line: rgba(22, 22, 22, 0.22);
  --gutter: clamp(20px, 3.25vw, 52px);
  --font-brand: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-text: "Pioneer Cyrillic Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Pioneer Cyrillic Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-ui: "Pioneer Cyrillic Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-text);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  color: var(--white);
  background: var(--ink);
  text-shadow: none;
}

em::selection {
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

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

.ui-icon {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  color: inherit;
  transform-origin: center;
}

.ui-icon::before {
  content: "";
  width: 15px;
  height: 1.5px;
  position: absolute;
  top: calc(50% - .75px);
  left: 1px;
  background: currentColor;
}

.ui-icon::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 5px;
  right: 1px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.ui-icon-ne {
  transform: rotate(-45deg);
}

.ui-icon-se {
  transform: rotate(45deg);
}

.ui-icon-down {
  transform: rotate(90deg);
}

.ui-icon-up {
  transform: rotate(-90deg);
}

.ui-icon-west {
  transform: rotate(180deg);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  opacity: .72;
}

.inline-icon-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.play-icon {
  width: 0;
  height: 0;
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  transform-origin: center;
}

.noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.footer-nav-home {
  display: flex;
  margin-top: 26px;
  padding-top: 22px;
  gap: clamp(18px, 3vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 248, 248, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: clamp(118px, 10vw, 146px);
  height: auto;
  object-fit: contain;
}

.site-header.is-scrolled .brand-logo {
  filter: invert(1);
}

.menu-open .site-header {
  color: var(--white);
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.25);
}

.menu-open .site-header .brand-logo {
  filter: none;
}

.school-tag {
  max-width: 58px;
  font-size: 8px;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: clamp(22px, 3vw, 52px);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right 0.25s;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--brand);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: #000000;
  overflow: hidden;
}

.hero-video,
.hero-shade,
.sound-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.64) 0%, rgba(8, 8, 7, 0.18) 52%, rgba(8, 8, 7, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.3), rgba(8, 8, 7, 0.08) 50%, rgba(8, 8, 7, 0.82));
}

.sound-canvas {
  z-index: 1;
  opacity: 0.58;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-status {
  position: absolute;
  z-index: 2;
  top: 112px;
  left: var(--gutter);
  right: var(--gutter);
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 2fr 1.2fr;
  gap: 20px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.hero-status div {
  display: flex;
  gap: 18px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-status span {
  opacity: 0.6;
}

.hero-status strong {
  font-weight: 400;
}

.hero-status .live {
  color: var(--brand);
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 58px;
}

.eyebrow,
.section-index {
  margin: 0 0 20px;
  font: 400 11px/1 var(--font-ui);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.courses-heading h2,
.mentor-copy h2,
.school-copy h2,
.trial-heading h2 {
  margin: 0;
  font: 700 clamp(58px, 8.4vw, 138px)/0.84 var(--font-display);
  letter-spacing: -0.055em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--white);
  transform: translateX(7vw);
}

.hero-action-row {
  margin-top: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-action-row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  text-transform: uppercase;
  font-weight: 600;
}

.button-brand {
  color: var(--ink);
  background: var(--brand);
}

.hero-button {
  width: min(410px, 34vw);
  color: var(--ink);
  background: var(--brand);
  font-size: 14px;
  transition: transform 0.25s, background 0.25s;
}

.hero-button:hover {
  transform: translateY(-5px);
  color: var(--white);
  background: var(--ink);
}

.hero-button b {
  font-size: 22px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 12px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font: 10px/1 var(--font-ui);
  letter-spacing: 0.08em;
}

.scroll-cue i {
  display: block;
  width: 72px;
  height: 1px;
  background: currentColor;
}

.ticker {
  color: var(--ink);
  background: var(--brand);
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 17px 0;
  animation: ticker 28s linear infinite;
  font: 700 18px/1 var(--font-display);
  text-transform: uppercase;
}

.ticker-track i {
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.route-section,
.school-section,
.trial-section {
  padding: 130px var(--gutter);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 28px;
  align-items: start;
}

.section-intro > *,
.courses-heading > *,
.school-copy > *,
.trial-section > * {
  min-width: 0;
}

.section-intro h2,
.courses-heading h2,
.mentor-copy h2,
.school-copy h2,
.trial-heading h2 {
  font-size: clamp(52px, 6vw, 100px);
  line-height: .86;
}

.section-intro h2 em,
.courses-heading h2 em,
.mentor-copy h2 em,
.school-copy h2 em,
.trial-heading h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
}

@supports not (-webkit-text-stroke: 1px currentColor) {
  .hero h1 .outline,
  .section-intro h2 em,
  .courses-heading h2 em,
  .mentor-copy h2 em,
  .school-copy h2 em,
  .trial-heading h2 em {
    color: inherit;
  }
}

.courses-heading h2 em {
  -webkit-text-stroke-color: var(--white);
}

.section-lead {
  margin: 0;
  max-width: 320px;
  font-size: 18px;
  line-height: 1.35;
}

.route-player {
  margin-top: 112px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.route-visual {
  position: sticky;
  top: 84px;
  height: calc(100vh - 84px);
  min-height: 620px;
  overflow: hidden;
  background: var(--soft);
  border-right: 1px solid var(--ink);
}

.route-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.06);
  transition: opacity 0.22s, transform 0.7s;
}

.route-visual.is-changing img {
  opacity: 0;
  transform: scale(1.025);
}

.route-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 6px, rgba(248, 248, 248, 0.08) 7px);
  pointer-events: none;
}

.route-time {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  color: var(--white);
  border-top: 2px solid var(--brand);
  font: 11px/1 var(--font-ui);
}

.route-steps {
  display: flex;
  flex-direction: column;
}

.route-step {
  flex: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  gap: 8px 20px;
  min-height: 190px;
  padding: 30px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s, background 0.25s;
}

.route-step:last-child {
  border-bottom: 0;
}

.route-step:hover,
.route-step.is-active {
  color: var(--white);
  background: var(--ink);
}

.route-step.is-active span {
  color: var(--brand);
}

.route-step span {
  grid-row: 1 / 3;
  font: 14px/1 var(--font-ui);
}

.route-step strong {
  font: 700 clamp(27px, 3vw, 48px)/0.94 var(--font-display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.route-step small {
  max-width: 430px;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.7;
}

.courses-section {
  padding: 130px var(--gutter);
  color: var(--white);
  background: var(--ink);
}

.courses-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 28px;
  align-items: end;
}

.section-index.light {
  color: rgba(255, 255, 255, 0.64);
}

.courses-heading p:last-child {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.course-browser {
  margin-top: 110px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
}

.course-list {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.course-row {
  display: grid;
  grid-template-columns: 46px 1.5fr 0.8fr 40px;
  gap: 24px;
  align-items: center;
  min-height: 190px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.course-row:hover,
.course-row.is-active {
  color: var(--brand);
}

.course-number,
.course-row small,
.course-preview span {
  font: 11px/1 var(--font-ui);
  letter-spacing: 0.08em;
}

.course-row small {
  display: block;
  margin-bottom: 14px;
  opacity: 0.55;
}

.course-row strong {
  font: 700 clamp(32px, 3.2vw, 54px)/0.87 var(--font-display);
  letter-spacing: -0.045em;
}

.course-row p {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.65;
}

.course-row .ui-icon {
  justify-self: end;
}

.course-preview {
  position: sticky;
  top: 104px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}

.course-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.7));
}

.course-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85);
  transition: opacity 0.2s, transform 0.55s;
}

.course-preview.is-changing img {
  opacity: 0;
  transform: scale(1.035);
}

.course-preview span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  color: var(--brand);
}

.mentor-section {
  padding: 130px 0 80px;
  background: var(--soft);
  overflow: hidden;
}

.mentor-stage {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 140px);
  align-items: center;
}

.mentor-photo-wrap {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--soft);
}

.mentor-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 15, 0.35);
}

.mentor-photo-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) contrast(1.05);
}

.mentor-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--brand);
  font: 10px/1 var(--font-ui);
}

.mentor-copy h2 {
  margin-top: 76px;
  font-size: clamp(92px, 11vw, 180px);
}

.mentor-meta {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.mentor-meta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.mentor-links {
  margin-top: 55px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.mentor-links > a,
.audio-button {
  min-height: 58px;
  padding: 0 18px;
  display: inline-flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  font-size: 12px;
  transition: color 0.2s, background 0.2s;
}

.mentor-links > a:hover,
.audio-button:hover,
.audio-button.is-playing {
  color: var(--white);
  background: var(--ink);
}

.audio-button {
  background: transparent;
  cursor: pointer;
}

.audio-button.is-playing .play-icon {
  animation: pulse 0.65s infinite alternate;
}

@keyframes pulse {
  to { transform: scale(1.35); color: var(--brand); }
}

.mentor-marquee {
  margin-top: 96px;
  color: var(--ink);
  white-space: nowrap;
  font: 700 clamp(60px, 10vw, 160px)/0.8 var(--font-display);
  letter-spacing: -0.04em;
  opacity: 0.12;
  overflow: hidden;
  animation: mentorTicker 22s linear infinite;
}

@keyframes mentorTicker {
  to { transform: translateX(-45%); }
}

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

.school-copy {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
}

.school-copy h2 {
  max-width: 1100px;
}

.school-collage {
  margin-top: 105px;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 20px;
  align-items: end;
}

.school-collage figure {
  margin: 0;
}

.school-collage img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.collage-a img {
  aspect-ratio: 4 / 3.3;
}

.collage-b img {
  aspect-ratio: 3 / 4;
}

.school-collage figcaption {
  margin-top: 9px;
  font: 10px/1 var(--font-ui);
  letter-spacing: 0.07em;
}

.school-facts {
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.school-facts div {
  display: flex;
  min-height: 160px;
  padding: 18px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.school-facts strong {
  font: 700 clamp(38px, 4vw, 66px)/1 var(--font-display);
  letter-spacing: -0.04em;
}

.school-facts span {
  max-width: 130px;
  font-size: 12px;
  line-height: 1.25;
}

.trial-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 8vw, 130px);
  color: var(--ink);
  background: var(--soft);
}

.trial-heading h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.trial-form {
  align-self: end;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.form-status {
  display: flex;
  justify-content: space-between;
  padding: 15px 18px;
  color: var(--white);
  background: var(--ink);
  font: 10px/1 var(--font-ui);
  letter-spacing: 0.07em;
}

.form-status strong {
  color: var(--brand);
  font-weight: 400;
}

.trial-form label {
  display: block;
  padding: 20px 18px 14px;
  border-bottom: 1px solid var(--ink);
}

.trial-form label > span {
  display: block;
  margin-bottom: 8px;
  font: 10px/1 var(--font-ui);
  letter-spacing: 0.08em;
}

.trial-form input,
.trial-form select {
  width: 100%;
  padding: 6px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  font-size: 20px;
}

.trial-form select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 6 6 6-6' fill='none' stroke='%23111' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right center;
}

.trial-form input::placeholder {
  color: rgba(17, 17, 15, 0.36);
}

.submit-button {
  width: calc(100% - 36px);
  min-height: 72px;
  margin: 18px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
}

.submit-button:hover {
  color: var(--white);
  background: #000000;
  outline: 1px solid var(--ink);
}

.submit-button .ui-icon {
  margin-right: 2px;
}

.form-note,
.form-message {
  margin: 0 18px 18px;
  font-size: 10px;
  line-height: 1.35;
  opacity: 0.62;
}

.form-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-meta a {
  color: inherit;
}

.form-message {
  color: #177215;
  font-size: 12px;
  opacity: 1;
}

footer {
  padding: 54px var(--gutter) 30px;
  color: var(--white);
  background: var(--ink);
}

.footer-lockup {
  display: flex;
  align-items: flex-end;
  gap: 22px;
}

.footer-logo {
  width: min(54vw, 720px);
  height: auto;
}

.footer-lockup span {
  padding-bottom: 3px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.footer-meta {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-meta p {
  margin: 0;
  font: 10px/1 var(--font-ui);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 46px;
    height: 46px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
  }

  .menu-button span {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 35;
    inset: 0;
    padding: 118px var(--gutter) 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font: 700 clamp(28px, 8vw, 48px)/1 var(--font-display);
    letter-spacing: -0.03em;
  }

  .hero-status {
    top: 94px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-status div:nth-child(3),
  .hero-status div:nth-child(4) {
    display: none;
  }

  .section-intro,
  .courses-heading,
  .school-copy {
    grid-template-columns: 1fr;
  }

  .section-intro h2,
  .courses-heading h2,
  .school-copy h2 {
    max-width: 780px;
  }

  .section-lead,
  .courses-heading p:last-child {
    margin-left: auto;
  }

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

  .course-preview {
    display: none;
  }

  .mentor-stage {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
  }

  .mentor-photo-wrap {
    min-height: 620px;
  }

  .school-collage {
    grid-template-columns: 1fr 0.75fr;
  }

  .school-facts {
    grid-column: 1 / -1;
  }

  .school-facts div {
    min-height: 130px;
  }

  .trial-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .footer-nav-home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  :root {
    --gutter: 18px;
  }

  .brand-logo {
    width: 112px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-copy {
    bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 82px);
    line-height: 0.83;
  }

  .hero h1 .outline {
    transform: translateX(0);
  }

  .hero-action-row {
    margin-top: 28px;
    display: block;
  }

  .hero-action-row p {
    display: none;
  }

  .hero-button {
    width: 100%;
    min-height: 60px;
  }

  .scroll-cue {
    display: none;
  }

  .ticker-track {
    font-size: 14px;
    padding: 14px 0;
  }

  .route-section,
  .courses-section,
  .school-section,
  .trial-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .section-intro h2,
  .courses-heading h2,
  .school-copy h2,
  .trial-heading h2 {
    font-size: clamp(32px, 9vw, 54px);
    line-height: 0.88;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .section-index {
    max-width: 100%;
    line-height: 1.3;
  }

  .section-lead,
  .courses-heading p:last-child {
    margin: 22px 0 0;
    max-width: 290px;
    font-size: 15px;
  }

  .route-player {
    margin-top: 64px;
    display: block;
  }

  .route-visual {
    position: relative;
    top: auto;
    height: 58vh;
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .route-step {
    min-height: 146px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 22px 8px;
  }

  .route-step > * {
    min-width: 0;
  }

  .route-step strong {
    font-size: 27px;
  }

  .route-step small {
    font-size: 12px;
  }

  .course-browser {
    margin-top: 62px;
  }

  .course-row {
    grid-template-columns: 26px 1fr 26px;
    min-height: 150px;
    gap: 10px;
  }

  .course-row p {
    display: none;
  }

  .course-row strong {
    font-size: clamp(30px, 9.7vw, 42px);
  }

  .mentor-section {
    padding: 84px 0 56px;
  }

  .mentor-stage {
    grid-template-columns: 1fr;
  }

  .mentor-photo-wrap {
    min-height: 600px;
  }

  .mentor-copy h2 {
    margin-top: 46px;
    font-size: clamp(90px, 31vw, 140px);
  }

  .mentor-meta {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .mentor-links {
    display: grid;
  }

  .mentor-marquee {
    margin-top: 72px;
  }

  .school-collage {
    margin-top: 62px;
    grid-template-columns: 1fr;
  }

  .collage-b {
    width: 76%;
    margin-left: auto !important;
  }

  .school-facts {
    grid-column: auto;
  }

  .school-facts div {
    min-height: 122px;
  }

  .trial-form input,
  .trial-form select {
    font-size: 17px;
  }

  .submit-button span {
    max-width: 220px;
    text-align: left;
  }

  footer {
    padding-top: 42px;
  }

  .footer-logo {
    width: 76%;
  }

  .footer-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-meta {
    margin-top: 48px;
    flex-direction: column;
    gap: 15px;
  }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
}
