@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --cream: #f7f4ef;
  --paper: #ffffff;
  --navy: #0b2a4a;
  --navy-2: #174e7a;
  --red: #b72a2a;
  --red-deep: #942121;
  --gold: #d6a23a;
  --charcoal: #1e242b;
  --muted-ink: #6f747b;
  --line: #e2ded7;
  --success: #16834a;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-card: 0 1px 2px rgb(11 42 74 / 4%), 0 4px 16px -6px rgb(11 42 74 / 8%);
  --shadow-elevated: 0 8px 28px -12px rgb(11 42 74 / 18%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-container {
  width: min(100% - 48px, 1186px);
  margin-inline: auto;
}

.environment-badge {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgb(11 42 74 / 92%);
  box-shadow: var(--shadow-elevated);
  color: var(--paper);
  font: 600 9px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: block;
  width: 76px;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  line-height: 1;
}

.brand-copy strong {
  display: block;
  color: var(--navy);
  font: 400 19px/1 var(--display);
  letter-spacing: .05em;
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted-ink);
  font: 400 9px/1 var(--mono);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-left: auto;
  padding-inline: 42px 48px;
  transform: translateX(-40px);
}

.primary-nav a {
  border-radius: 6px;
  padding: 10px 12px;
  color: rgb(30 36 43 / 80%);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--cream);
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(40px);
}

.login-link {
  padding: 9px 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  background: var(--paper);
  color: var(--navy);
  font: 600 12px/1 var(--sans);
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 25px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 34px;
  padding: 8px 16px;
  font-size: 12px;
}

.button-red {
  background: var(--red);
  color: var(--paper);
}

.button-red:hover {
  background: var(--red-deep);
}

.button-outline-light {
  border-color: rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 6%);
  color: var(--paper);
}

.button-outline-light:hover,
.button-ghost-light:hover {
  background: rgb(255 255 255 / 12%);
}

.button-ghost-light {
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 607px;
  overflow: hidden;
  background: var(--navy);
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  background:
    linear-gradient(to top, rgb(11 42 74 / 85%), transparent 55%),
    linear-gradient(to right, rgb(11 42 74 / 94%), rgb(11 42 74 / 78%) 52%, rgb(11 42 74 / 45%));
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 607px;
  grid-template-columns: 1.16fr .84fr;
  align-items: center;
  gap: 56px;
  padding-block: 72px 64px;
}

.hero-copy {
  padding-top: 8px;
  color: var(--paper);
  animation: fade-up 520ms ease-out both;
}

.eyebrow-chip {
  display: inline-flex;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 80%);
  font: 400 10px/1 var(--mono);
  letter-spacing: .21em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero h1 {
  margin: 18px 0 0;
  color: var(--paper);
  font: 400 72px/.95 var(--display);
  letter-spacing: .005em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--gold);
}

.hero-intro {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 84%);
  font-size: 17px;
  line-height: 1.55;
}

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

.snapshot-card {
  position: relative;
  left: 40px;
  justify-self: end;
  width: min(100%, 340px);
  margin-top: 23px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 25px;
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--shadow-elevated);
  animation: fade-up 520ms 90ms ease-out both;
}

.snapshot-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.snapshot-heading p,
.next-camp p {
  margin: 0;
  color: var(--red);
  font: 600 10px/1 var(--mono);
  letter-spacing: .21em;
  text-transform: uppercase;
}

.snapshot-heading span {
  border-radius: 999px;
  padding: 4px 8px;
  background: rgb(22 131 74 / 10%);
  color: var(--success);
  font-size: 10px;
  font-weight: 600;
}

.snapshot-card h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font: 400 20px/1 var(--display);
  text-transform: uppercase;
}

.snapshot-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 23px 0 0;
}

.snapshot-stats div {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 14px 13px 12px;
  background: rgb(247 244 239 / 65%);
}

.snapshot-stats dt {
  color: var(--navy);
  font: 400 25px/1 var(--display);
}

.snapshot-stats dd {
  margin: 6px 0 0;
  color: var(--muted-ink);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.next-camp {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border-radius: 9px;
  padding: 12px;
  background: var(--navy);
  color: var(--paper);
}

.camp-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: rgb(255 255 255 / 10%);
}

.camp-icon img {
  width: 17px;
  height: 17px;
  filter: invert(76%) sepia(55%) saturate(672%) hue-rotate(357deg) brightness(89%);
}

.next-camp p {
  color: var(--gold);
  font-size: 9px;
}

.next-camp strong,
.next-camp small {
  display: block;
}

.next-camp strong {
  margin-top: 4px;
  font-size: 13px;
}

.next-camp small {
  margin-top: 3px;
  color: rgb(255 255 255 / 64%);
  font-size: 10px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  min-height: 68px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.trust-grid > p {
  margin: 0;
  color: var(--muted-ink);
  font: 400 10px/1.4 var(--mono);
  letter-spacing: .21em;
  text-transform: uppercase;
}

.trust-grid ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  color: var(--navy);
  font: 400 14px/1 var(--display);
  letter-spacing: .025em;
  list-style: none;
  text-transform: uppercase;
}

.trust-grid li + li::before {
  margin-right: 17px;
  color: var(--red);
  content: "•";
}

.trust-grid > span {
  justify-self: end;
  color: var(--muted-ink);
  font-size: 11px;
}

.program-preview {
  min-height: 470px;
  padding-block: 88px;
  background: var(--cream);
}

.section-eyebrow {
  margin: 0;
  color: var(--red);
  font: 600 10px/1 var(--mono);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 8px;
  background: var(--red);
  vertical-align: middle;
  content: "";
}

.program-preview h2,
.placeholder-card h1 {
  margin: 16px 0 0;
  color: var(--navy);
  font: 400 34px/1 var(--display);
  text-transform: uppercase;
}

.section-intro {
  max-width: 600px;
  color: var(--muted-ink);
  line-height: 1.65;
}

.program-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.program-preview-grid a {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.program-preview-grid strong,
.program-preview-grid span {
  display: block;
}

.program-preview-grid strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.program-preview-grid span {
  margin-top: 8px;
  color: var(--muted-ink);
  font-size: 12px;
}

.placeholder-page {
  min-height: calc(100vh - 128px);
  padding-block: 90px;
}

.placeholder-card {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 52px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.placeholder-card > p:not(.section-eyebrow) {
  max-width: 620px;
  margin-block: 20px 28px;
  color: var(--muted-ink);
  line-height: 1.65;
}

.placeholder-card .public-access-note {
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  background: var(--cream);
  color: var(--charcoal);
}

.button-outline-navy {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.registration-page {
  min-height: calc(100vh - 144px);
  padding: 54px 0 84px;
  background: #f8f6f2;
}

.registration-shell {
  width: min(100% - 40px, 810px);
}

.registration-heading {
  margin-bottom: 23px;
  text-align: center;
}

.registration-heading .section-eyebrow::before {
  display: none;
}

.registration-heading h1 {
  margin: 11px 0 7px;
  color: var(--navy);
  font: 400 38px/1 var(--display);
  letter-spacing: .01em;
  text-transform: uppercase;
}

.registration-heading > p:last-child {
  margin: 0;
  color: var(--muted-ink);
  font-size: 13px;
}

.beta-data-notice,
.registration-error {
  margin-bottom: 18px;
  border: 1px solid #e7d8ad;
  border-radius: 8px;
  padding: 12px 15px;
  background: #fff9e9;
  color: #67552c;
  font-size: 12px;
  line-height: 1.55;
}

.beta-data-notice strong {
  color: var(--navy);
}

.registration-error {
  border-color: #e8b4b4;
  background: #fff2f2;
  color: var(--red-deep);
}

.registration-card {
  overflow: hidden;
  border: 1px solid #dedad3;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 8px 24px -18px rgb(11 42 74 / 34%);
}

.registration-stepper {
  border-bottom: 1px solid var(--line);
  padding: 19px 26px 17px;
  background: #fcfbf9;
}

.stepper-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.stepper-status strong {
  color: var(--navy);
  font-size: 11px;
  font-weight: 650;
}

.stepper-status span {
  color: var(--muted-ink);
  font: 500 9px/1 var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.stepper-track {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8e5df;
}

.stepper-track span {
  display: block;
  width: 11%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  transition: width 220ms ease;
}

.registration-stepper ol {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 3px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.registration-stepper li {
  min-width: 0;
  color: #9a9a97;
  font-size: 8px;
  line-height: 1.2;
  text-align: center;
}

.registration-stepper li span {
  display: grid;
  width: 22px;
  height: 22px;
  margin: 0 auto 6px;
  place-items: center;
  border: 1px solid #d7d4ce;
  border-radius: 50%;
  background: var(--paper);
  color: #8c8b88;
  font: 600 9px/1 var(--mono);
}

.registration-stepper li.is-active,
.registration-stepper li.is-complete {
  color: var(--navy);
}

.registration-stepper li.is-active span {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
}

.registration-stepper li.is-complete span {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--paper);
}

.registration-body {
  min-height: 346px;
  padding: 31px 34px 28px;
}

.registration-panel[hidden] {
  display: none;
}

.registration-panel.is-active {
  animation: fade-up 220ms ease-out both;
}

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

.form-grid label,
.disabled-fields,
.choice-fieldset {
  min-width: 0;
}

.form-grid label > span,
.disabled-fields > span,
.choice-fieldset legend {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 650;
}

.form-grid em,
.disabled-fields em {
  color: var(--muted-ink);
  font-size: 9px;
  font-style: normal;
  font-weight: 450;
}

.form-grid input,
.disabled-fields input,
.disabled-fields textarea {
  width: 100%;
  border: 1px solid #d8d5cf;
  border-radius: 6px;
  padding: 10px 11px;
  background: var(--paper);
  color: var(--charcoal);
  font: 400 12px/1.3 var(--sans);
}

.form-grid input:focus,
.disabled-fields input:focus {
  border-color: var(--navy-2);
  outline: 3px solid rgb(23 78 122 / 10%);
}

.form-span-2 {
  grid-column: 1 / -1;
}

.choice-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.form-grid + .choice-fieldset,
.choice-fieldset + .choice-fieldset {
  margin-top: 25px;
}

.choice-grid {
  display: grid;
  gap: 11px;
}

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

.choice-stack {
  display: grid;
  gap: 10px;
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 49px;
  align-items: center;
  gap: 10px;
  border: 1px solid #dedad3;
  border-radius: 7px;
  padding: 11px 13px;
  background: #fff;
  cursor: pointer;
}

.choice-card[hidden] {
  display: none;
}

.choice-card:has(input:checked) {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
  background: #fffafa;
}

.choice-card input {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.choice-card > span {
  min-width: 0;
  color: var(--charcoal);
  font-size: 11px;
}

.choice-card-detail strong,
.choice-card-detail small {
  display: block;
}

.choice-card-detail strong {
  color: var(--navy);
  font-size: 12px;
}

.choice-card-detail strong b {
  float: right;
  margin-left: 12px;
  color: var(--red);
  font-size: 11px;
}

.choice-card-detail small {
  margin-top: 4px;
  color: var(--muted-ink);
  font-size: 10px;
  line-height: 1.4;
}

.practice-days legend {
  margin-bottom: 10px;
}

.day-choices {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}

.day-choices input {
  position: absolute;
  opacity: 0;
}

.day-choices span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid #dedad3;
  border-radius: 6px;
  color: var(--muted-ink);
  font-size: 10px;
  cursor: pointer;
}

.day-choices input:checked + span {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--paper);
}

.protected-step {
  display: flex;
  gap: 15px;
  margin-bottom: 23px;
  border: 1px solid #d8e2eb;
  border-radius: 8px;
  padding: 17px;
  background: #f5f8fb;
}

.protected-step img {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  filter: invert(14%) sepia(31%) saturate(1714%) hue-rotate(169deg) brightness(91%);
}

.protected-step h2 {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
}

.protected-step p {
  margin: 6px 0 0;
  color: var(--muted-ink);
  font-size: 11px;
  line-height: 1.55;
}

.disabled-fields input,
.disabled-fields textarea {
  background: #f2f1ee;
  color: #8f8e8a;
}

.waiver-copy {
  max-height: 205px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  background: #faf9f7;
  color: var(--muted-ink);
  font-size: 11px;
  line-height: 1.7;
}

.demo-acknowledgment {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
}

.demo-acknowledgment input {
  accent-color: var(--red);
}

.payment-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 17px;
  color: var(--navy);
  font-size: 12px;
}

.payment-summary strong {
  font-family: var(--mono);
  font-size: 17px;
}

.protected-step-payment {
  border-color: #e7d8ad;
  background: #fff9e9;
}

.simulated-payment-token {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed #c8c3bb;
  border-radius: 7px;
  padding: 14px;
  color: var(--muted-ink);
  font-size: 10px;
}

.simulated-payment-token strong {
  color: var(--navy);
  font-family: var(--mono);
  font-size: 10px;
}

.registration-actions {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 16px 25px;
  background: #fcfbf9;
}

.registration-actions button {
  min-height: 38px;
  border-radius: 6px;
  padding: 9px 18px;
  font: 650 11px/1 var(--sans);
  cursor: pointer;
}

.registration-back {
  border: 1px solid #d6d2cb;
  background: var(--paper);
  color: var(--navy);
}

.registration-back:disabled {
  opacity: .42;
  cursor: default;
}

.registration-next {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--paper);
}

.registration-client-error {
  margin: 0;
  color: var(--red-deep);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
}

.registration-confirmation {
  padding: 42px;
  text-align: center;
}

.confirmation-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 10px;
  background: rgb(22 131 74 / 10%);
  filter: invert(43%) sepia(23%) saturate(1630%) hue-rotate(101deg) brightness(90%);
}

.registration-kicker {
  margin: 16px 0 0;
  color: var(--success);
  font: 600 10px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.registration-confirmation h2 {
  margin: 9px 0;
  color: var(--navy);
  font: 400 32px/1 var(--display);
  text-transform: uppercase;
}

.registration-confirmation > div > p:last-child {
  color: var(--muted-ink);
  font-size: 12px;
}

.registration-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
  text-align: left;
}

.registration-summary-grid div {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px;
  background: #faf9f7;
}

.registration-summary-grid span,
.registration-summary-grid strong {
  display: block;
}

.registration-summary-grid span {
  color: var(--muted-ink);
  font: 500 9px/1 var(--mono);
  text-transform: uppercase;
}

.registration-summary-grid strong {
  margin-top: 6px;
  color: var(--navy);
  font-size: 11px;
}

.registration-confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.public-footer {
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: rgb(255 255 255 / 70%);
}

.footer-shell {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .primary-nav {
    padding-inline: 18px;
    transform: none;
  }

  .nav-actions {
    transform: none;
  }

  .snapshot-card {
    left: 0;
  }

  .primary-nav a {
    padding-inline: 8px;
    font-size: 12px;
  }

  .trust-grid {
    grid-template-columns: 1fr auto;
  }

  .trust-grid > span {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 18px;
    background: var(--paper);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-actions {
    margin-left: 12px;
  }

  .login-link {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 70px;
  }

  .snapshot-card {
    justify-self: start;
    margin: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding-block: 22px;
    text-align: center;
  }

  .program-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .environment-badge {
    position: absolute;
    top: 74px;
    right: 16px;
    bottom: auto;
  }

  .site-container {
    width: min(100% - 32px, 1200px);
  }

  .brand-copy small {
    display: none;
  }

  .nav-actions .button {
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 58px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 62px);
  }

  .hero-intro {
    font-size: 15px;
  }

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

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

  .snapshot-card {
    width: 100%;
    padding: 21px;
  }

  .trust-grid ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
  }

  .trust-grid li + li::before {
    margin-right: 9px;
  }

  .program-preview {
    padding-block: 64px;
  }

  .program-preview-grid {
    grid-template-columns: 1fr;
  }

  .placeholder-card {
    padding: 34px 24px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .registration-page {
    padding-block: 38px 62px;
  }

  .registration-shell {
    width: min(100% - 24px, 810px);
  }

  .registration-heading h1 {
    font-size: 31px;
  }

  .registration-stepper {
    padding-inline: 17px;
  }

  .registration-stepper ol {
    display: flex;
    overflow-x: auto;
    gap: 13px;
    padding-bottom: 5px;
    scroll-snap-type: x proximity;
  }

  .registration-stepper li {
    min-width: 58px;
    scroll-snap-align: center;
  }

  .registration-body {
    min-height: 400px;
    padding: 24px 18px;
  }

  .form-grid,
  .choice-grid-2,
  .registration-summary-grid {
    grid-template-columns: 1fr;
  }

  .form-span-2 {
    grid-column: auto;
  }

  .day-choices {
    grid-template-columns: repeat(3, 1fr);
  }

  .registration-actions {
    grid-template-columns: auto auto;
    padding-inline: 17px;
  }

  .registration-client-error {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .registration-confirmation {
    padding: 32px 20px;
  }

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

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

/* WO-20 public contact footer */
.public-footer {
  border-top: 4px solid var(--gold);
  padding-block: 52px 26px;
  background: var(--navy);
  color: rgb(255 255 255 / 72%);
}

.footer-shell {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(260px, 1.25fr) minmax(220px, .85fr) minmax(260px, 1fr);
  align-items: start;
  gap: 48px;
  font-size: 11px;
}

.footer-brand {
  color: #fff;
  font: 400 27px/1 var(--display);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.footer-academy address {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-style: normal;
  line-height: 1.5;
}

.footer-academy address a,
.footer-links a,
.footer-social,
.footer-credit a {
  transition: color 160ms ease;
}

.footer-academy address a:hover,
.footer-links a:hover,
.footer-social:hover,
.footer-credit a:hover {
  color: var(--gold);
}

.footer-links > strong {
  color: var(--gold);
  font: 600 9px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-links > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 24px;
  margin-top: 20px;
}

.footer-links a {
  color: #fff;
  font-weight: 600;
}

.footer-meta {
  text-align: right;
}

.footer-social {
  display: inline-flex;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff;
  font: 600 9px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-credit {
  margin: 17px 0 0;
  color: #fff;
}

.footer-beta {
  margin: 10px 0 0;
  color: rgb(255 255 255 / 50%);
  font-size: 9px;
}

.registration-prorating-note {
  margin: 18px 0 0;
  border-left: 3px solid var(--gold);
  padding: 11px 13px;
  background: #fff9e9;
  color: var(--navy);
  font-size: 11px;
  font-weight: 650;
}

@media (max-width: 900px) {
  .footer-shell {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .public-footer {
    padding-block: 42px 24px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-meta {
    grid-column: auto;
  }
}
