:root {
  --black: #020303;
  --red: #c20000;
  --red-dark: #280000;
  --white: #f4f6f8;
  --gray-100: #ebedef;
  --gray-200: #d3d6d9;
  --gray-400: #5a6067;
  --gray-500: #383c43;
  --gray-600: #16191d;
  --gray-700: #0f1215;
}


@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/fonts/space-grotesk-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/fonts/space-grotesk-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/fonts/space-grotesk-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/fonts/space-grotesk-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  font-family: "Space Grotesk", "Noto Sans", Arial, sans-serif;
  background: var(--white);
  color: var(--black);
}
body.modal-open { overflow: hidden; }
body.mobile-menu-open { overflow: hidden; }
button, input, select { font: inherit; }
button { cursor: pointer; }
a { text-decoration: none; }
[data-link] { cursor: pointer; }
.page { overflow: hidden; min-width: 320px; }
html.cms-pending .page { visibility: hidden; }
.shell { width: min(1192px, calc(100vw - 48px)); margin: 0 auto; }
.dark { background: var(--black); color: var(--white); }

.hero {
  height: 904px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 946px;
  background: url("./assets/hero-bg.png") center top / 1440px 946px no-repeat, var(--black);
  transition: opacity .26s ease, background-image .26s ease;
}
.hero.is-promo::before {
  background: url("./assets/background.svg") right top / 1245px 992px no-repeat, var(--black);
}
.nav {
  position: fixed;
  z-index: 100;
  left: 50%;
  top: 16px;
  width: min(1192px, calc(100vw - 48px));
  margin: 0;
  transform: translateX(-50%);
  height: 70px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: linear-gradient(180deg, rgba(2,3,3,.76), rgba(2,3,3,.52));
  border: 1px solid rgba(244,246,248,.16);
  box-shadow: 0 18px 48px rgba(0,0,0,.32), inset 0 1px 0 rgba(244,246,248,.08);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.logo { width: 140px; height: 11px; object-fit: fill; display: block; margin: 6.5px 5.5px; }
.menu, .nav-actions, .hero-buttons { display: flex; align-items: center; gap: 16px; }
.menu { gap: 12px; margin-right: auto; margin-left: 32px; }
.menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  transition: background .18s ease;
}
.menu a:nth-child(-n + 2)::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("./assets/mega-arrow-down.svg") center / 6.67px 3.33px no-repeat;
  flex: 0 0 16px;
}
.menu a.is-active { background: var(--gray-600); }

.mega-menu {
  position: fixed;
  z-index: 95;
  left: 50%;
  top: 86px;
  width: min(1192px, calc(100vw - 48px));
  height: 430px;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.mega-menu.is-open {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-panel {
  display: none;
  width: 100%;
  height: 430px;
  padding: 20px 24px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gray-700, #0f1215);
  color: var(--white);
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 32px 70px rgba(0,0,0,.38);
}
.mega-panel.is-active { display: flex; }
.mega-courses {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}
.mega-course {
  position: relative;
  display: flex;
  color: var(--white);
  text-decoration: none;
}
.mega-course::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 14px;
  width: 49px;
  height: 1px;
  background: var(--red);
  z-index: 2;
}
.mega-course-body {
  width: 100%;
  height: 166px;
  padding: 24px 24px 20px;
  border: 1px solid var(--gray-700, #0f1215);
  border-radius: 12px;
  background: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.mega-course-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.mega-course-body.is-even .mega-course-content {
  height: 120px;
  justify-content: space-between;
  gap: 0;
}
.mega-course-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-course h3,
.mega-course p,
.mega-speaker h3,
.mega-speaker p,
.mega-aside p {
  margin: 0;
}
.mega-course h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.mega-course p {
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.mega-tag {
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  white-space: nowrap;
}
.mega-icon {
  width: 48px;
  height: 38px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: rgba(244,246,248,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.mega-icon img { width: 16px; height: 16px; display: block; }
.mega-speakers {
  flex: 1 1 0;
  min-width: 0;
  width: 760px;
  height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.mega-speaker {
  width: 100%;
  min-height: 74px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  text-decoration: none;
}
.mega-speaker > div {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-speaker h3 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.mega-speaker h3 span { color: var(--red); }
.mega-speaker p {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.mega-speaker-icon {
  height: 46px;
  min-width: 60px;
  padding: 12px 20px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: rgba(244,246,248,.04);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.mega-speaker-icon img { width: 20px; height: 20px; display: block; }
.mega-aside {
  align-self: stretch;
  flex: 0 0 360px;
  width: 360px;
  padding: 12px 0 12px 24px;
  border-left: 1px solid var(--gray-500);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.mega-aside-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.mega-aside-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.mega-label {
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
}
.mega-label span { color: var(--red); }
.mega-community-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-community-row p,
.mega-note {
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}
.mega-avatars {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
}
.mega-avatars img {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  display: block;
  object-fit: cover;
}
.mega-avatars img:not(:last-child) { margin-right: -4px; }
.mega-button {
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid var(--white);
  border-radius: 32px;
  background: rgba(244,246,248,.04);
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.mega-social-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.mega-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mega-socials a,
.mega-socials img {
  width: 24px;
  height: 24px;
  display: block;
}
.mega-socials a {
  flex: 0 0 auto;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}
.mega-social-block p {
  color: var(--gray-300);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.btn {
  border: 0;
  border-radius: 32px;
  min-height: 56px;
  padding: 16px 32px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn.small { min-height: 46px; padding: 12px 24px; font-size: 14px; line-height: 22px; }
.btn.small small { font-size: 12px; line-height: 16px; }
.btn small { font-size: 14px; line-height: 22px; text-transform: none; }
.btn span { width: 1px; height: 16px; background: var(--red); display: inline-block; }
.btn-light { background: var(--white); color: var(--black); }
.btn-ghost {
  color: var(--white);
  background: rgba(244,246,248,.04);
  border: 1px solid currentColor;
  backdrop-filter: blur(20px);
}
.outline-dark {
  color: var(--black);
  background: rgba(244,246,248,.04);
  border: 1px solid var(--black);
  min-height: 46px;
  padding: 12px 24px;
  font-size: 14px;
  line-height: 22px;
}
.icon, .slider, .arrows button, .media-grid aside div button {
  border: 1px solid currentColor;
  background: rgba(244,246,248,.04);
  color: inherit;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.icon { width: 60px; height: 46px; padding: 12px 20px; }
.icon img { width: 13.33px; height: 13.33px; display: block; }
.nav-menu-toggle__icon { display: none; }

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .page .btn-light:hover,
  .page .btn-light:focus-visible {
    box-shadow: inset 0 0 0 1px var(--red), 0 0 16px 4px rgba(194, 0, 0, .56);
  }

  .page .btn-ghost:hover,
  .page .btn-ghost:focus-visible,
  .page .outline-dark:hover,
  .page .outline-dark:focus-visible,
  .page .icon:hover,
  .page .icon:focus-visible,
  .page .slider:hover,
  .page .slider:focus-visible,
  .page .arrows button:hover,
  .page .arrows button:focus-visible,
  .page .media-arrows button:hover,
  .page .media-arrows button:focus-visible,
  .page .hero-carousel-control:hover,
  .page .hero-carousel-control:focus-visible,
  .page .mega-button:hover,
  .page .mega-button:focus-visible,
  .page .mega-course:hover .mega-course-body,
  .page .mega-course:focus-visible .mega-course-body,
  .page .mega-course:hover .mega-icon,
  .page .mega-course:focus-visible .mega-icon,
  .page .mega-speaker:hover .mega-speaker-icon,
  .page .mega-speaker:focus-visible .mega-speaker-icon,
  .page .mobile-menu__speakers a:hover i,
  .page .mobile-menu__speakers a:focus-visible i,
  .page .mobile-course-card:hover span,
  .page .mobile-course-card:focus-visible span,
  .page .mobile-course-menu__aside button:hover,
  .page .mobile-course-menu__aside button:focus-visible,
  .page .promo-referral button:hover,
  .page .promo-referral button:focus-visible,
  .page .contact-modal__close:hover,
  .page .contact-modal__close:focus-visible,
  .page .contact-course-select__button:hover,
  .page .contact-course-select__button:focus-visible,
  .page .course-card div button:hover,
  .page .course-card div button:focus-visible,
  .page .course-float b:hover,
  .page .course-float b:focus-visible {
    border-color: #8f9399;
  }
}

.mobile-menu,
.mobile-course-menu {
  position: fixed;
  inset: 0;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.mobile-menu[hidden],
.mobile-course-menu[hidden] { display: none; }
.mobile-menu.is-open,
.mobile-course-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,3,3,.64);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mobile-menu__panel {
  position: absolute;
  left: 50%;
  top: 70px;
  width: min(100% - 32px, 370px);
  transform: translateX(-50%);
  padding: 16px;
  border-radius: 24px;
  background: var(--gray-700);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__links a,
.mobile-menu__speakers-toggle {
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  border: 0;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.mobile-menu__speakers-toggle {
  width: 100%;
  background: var(--gray-600);
  font-family: inherit;
}
.mobile-menu__links a > span,
.mobile-menu__speakers-toggle span {
  width: 16px;
  height: 16px;
  background: url("./assets/mega-arrow-down.svg") center / 7px 4px no-repeat;
}
.mobile-menu__speakers-toggle span { transform: rotate(180deg); }
.mobile-menu__speakers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu__speakers a {
  min-height: 78px;
  padding: 8px 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr 48px;
  column-gap: 20px;
  align-items: center;
}
.mobile-menu__speakers a > span {
  width: auto;
  height: auto;
  background: none;
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
}
.mobile-menu__speakers b {
  color: var(--red);
  font-weight: 500;
}
.mobile-menu__speakers small {
  grid-column: 1;
  margin-top: 4px;
  color: var(--gray-300);
  font-size: 12px;
  line-height: 18px;
}
.mobile-menu__speakers i,
.mobile-course-card span {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 48px;
  height: 38px;
  border: 1px solid var(--white);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(244,246,248,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.mobile-menu__speakers i img,
.mobile-course-card span img {
  width: 16px;
  height: 16px;
  display: block;
}
.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__actions .btn {
  width: 100%;
  min-height: 46px;
  padding: 12px 24px;
  font-size: 14px;
  line-height: 22px;
}
.mobile-menu__actions small {
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
}
.mobile-course-menu__panel {
  position: absolute;
  left: 50%;
  top: 70px;
  width: min(100% - 32px, 370px);
  transform: translateX(-50%);
  padding: 16px;
  border-radius: 24px;
  background: var(--gray-700);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}
.mobile-course-menu__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-course-card {
  min-height: 160px;
  padding: 20px;
  border-radius: 12px;
  background: var(--gray-600);
  color: var(--white);
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.mobile-course-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 48px;
  height: 1px;
  background: var(--red);
}
.mobile-course-card div {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  gap: 12px;
}
.mobile-course-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.mobile-course-card p {
  margin: -8px 0 0;
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
}
.mobile-course-card em {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
}
.mobile-course-menu__aside {
  border-top: 1px solid #383c43;
  padding: 24px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-course-menu__aside > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-course-menu__aside p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}
.mobile-course-menu__aside p span { color: var(--red); }
.mobile-course-menu__aside small {
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}
.mobile-course-menu__community {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-course-menu__community div {
  display: flex;
  flex: 0 0 auto;
}
.mobile-course-menu__community img {
  width: 24px;
  height: 24px;
  margin-right: -4px;
  border-radius: 50%;
  object-fit: cover;
}
.mobile-course-menu__aside button,
.mobile-course-menu__aside a {
  width: 100%;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid var(--white);
  border-radius: 32px;
  background: rgba(244,246,248,.04);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.mobile-course-menu__socials div {
  display: flex;
  gap: 16px;
}
.mobile-course-menu__socials a,
.mobile-course-menu__socials img {
  width: 24px;
  height: 24px;
  display: block;
}
.mobile-course-menu__socials a {
  flex: 0 0 auto;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}
.mobile-course-menu__socials small {
  color: var(--gray-300);
  font-size: 12px;
  line-height: 16px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 134px;
  text-align: center;
  transition: opacity .24s ease, transform .24s ease;
}
.course-float[role="link"],
.course-card[role="link"] {
  cursor: pointer;
}
h1 {
  font-weight: 500;
  font-size: 72px;
  line-height: 80px;
  max-width: 800px;
  margin: 0 auto 24px;
}
.hero-copy p {
  max-width: 564px;
  margin: 0 auto 24px;
  color: #f4f6f8;
  font-family: "Space Grotesk", "Noto Sans", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  word-break: break-word;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
.hero-buttons { justify-content: center; }
.hero-cards {
  position: relative;
  height: 331px;
  z-index: 1;
  margin-top: 40px;
  transition: opacity .34s ease, transform .34s ease;
}
.hero.is-promo .hero-copy {
  opacity: 0;
  transform: translateX(-80px);
  pointer-events: none;
}
.hero.is-promo .hero-cards {
  opacity: 0;
  transform: translateX(-80px);
  pointer-events: none;
}
.hero.is-promo .course-float {
  pointer-events: none;
}
.glass {
  background: rgba(244,246,248,.04);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.course-float {
  position: absolute;
  width: 280px;
  height: 280px;
  padding: 24px;
  color: var(--white);
  isolation: isolate;
  transition: opacity .24s ease, transform .24s ease;
}
.course-float i, .veteran-card::after, .reminder::after, .speaker-cta::after, .community-pill::before {
  content: "";
  position: absolute;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,0,0,.42), rgba(194,0,0,.04) 62%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}
.course-float i {
  left: 12px;
  top: -1px;
  z-index: -1;
  background: radial-gradient(circle, rgba(194,0,0,.34), rgba(194,0,0,.08) 58%, transparent 72%);
  filter: blur(28px);
}
.course-float::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 11px;
  width: 72px;
  height: 1px;
  background: var(--red);
  z-index: 1;
}
.float-a { left: 281px; top: 32.46875px; transform: rotate(-4deg); }
.float-b { left: 631.3828125px; top: 32.46875px; transform: rotate(4deg); }
.course-float div { display: flex; justify-content: space-between; gap: 4px; position: relative; }
.course-float div,
.course-float p,
.course-float em {
  position: relative;
  z-index: 1;
}
.course-float h3 { margin: 0; font-size: 16px; line-height: 24px; font-weight: 700; width: 184px; }
.course-float b { border: 1px solid var(--white); border-radius: 999px; width: 38px; height: 38px; display: grid; place-items: center; transition: border-color .18s ease; }
.course-float b img { width: 10px; height: 10px; display: block; }
.course-float p { color: var(--gray-200); font-size: 12px; line-height: 16px; margin: 8px 0 50px; }
.course-float em, .course-card em, .speakers aside em {
  display: inline-block;
  border-radius: 999px;
  background: var(--gray-600);
  color: var(--white);
  font-style: normal;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 22px;
}
.slider {
  position: absolute;
  top: 43px;
  width: 60px;
  height: 46px;
  padding: 12px 20px;
}
.slider img { display: block; }
.slider.left img, .slider.right img { width: 20px; height: 20px; }
.slider.left { left: -92px; }
.slider.right { right: -92px; }

.hero-carousel-control {
  position: absolute;
  top: 468px;
  z-index: 3;
  width: 60px;
  height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: rgba(244,246,248,.04);
  color: var(--white);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.hero-carousel-control--prev { left: 32px; }
.hero-carousel-control--next { right: 32px; }
.hero-carousel-control img {
  display: block;
  width: 20px;
  height: 20px;
}
.hero-controls { display: contents; }
.hero-progress { display: none; }

.hero-promo {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  transform: translateX(80px);
}
.hero.is-promo .hero-promo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.promo-copy {
  position: absolute;
  left: calc(50% - 596px);
  top: 245px;
  width: 580px;
  height: 468px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  pointer-events: auto;
}
.promo-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--red);
  background: var(--red-dark);
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
}
.promo-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
}
.promo-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promo-title h2 {
  margin: 0;
  color: var(--white);
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0;
}
.promo-title h2:last-child { text-transform: uppercase; }
.promo-heading p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: 0;
}
.promo-timer {
  width: 100%;
  min-height: 92px;
  padding: 8px 0 8px 24px;
  border-left: 1px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
}
.promo-timer strong {
  display: block;
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: uppercase;
}
.promo-timer span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.promo-referral {
  width: 580px;
  min-height: 80px;
  padding: 16px 20px;
  border: 1px solid var(--red);
  border-radius: 16px;
  background: var(--black);
  box-shadow: 0 0 16px rgba(194,0,0,.56);
  display: flex;
  align-items: center;
  gap: 24px;
}
.promo-referral div {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.promo-referral span {
  color: var(--gray-200);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.promo-referral b {
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  white-space: nowrap;
}
.promo-referral button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid var(--white);
  border-radius: 32px;
  background: rgba(244,246,248,.04);
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.promo-visual {
  position: absolute;
  top: 134px;
  left: calc(50% + 16px);
  width: 580px;
  height: 690px;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.promo-bonus {
  position: relative;
  width: 376px;
  height: 376px;
  margin: 0;
  padding: 40px 32px;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(244,246,248,.04);
  color: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.promo-bonus::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 57px;
  top: -19px;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: var(--red);
  opacity: .35;
  filter: blur(80px);
  pointer-events: none;
}
.promo-glow {
  display: none;
}
.promo-line {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 14.7px;
  width: 96.7px;
  height: 2px;
  pointer-events: none;
}
.promo-bonus-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 296px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.promo-bonus-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.promo-bonus-main > span {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gray-600);
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.promo-bonus strong {
  color: var(--white);
  font-size: 64px;
  line-height: 72px;
  font-weight: 700;
}
.promo-bonus p,
.promo-bonus small {
  margin: 0;
  color: var(--gray-200);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
}
.promo-bonus em {
  color: var(--red);
  font-style: normal;
}

.stats { background: var(--black); color: var(--white); height: 220px; padding: 0 0 80px; box-sizing: border-box; }
.stat-grid { display: grid; grid-template-columns: 580px 274px 274px; gap: 32px; height: 140px; align-items: start; }
.stat-grid p { margin: 0; color: var(--gray-200); font-size: 16px; line-height: 24px; font-weight: 300; }
.stat-grid div { border-left: 1px solid var(--red); padding: 8px 0 8px 24px; }
.stat-grid strong { display: block; font-size: 32px; line-height: 40px; font-weight: 400; margin-bottom: 12px; }
.stat-grid span { font-size: 16px; line-height: 24px; display: block; }

.section { padding: 100px 0; background: var(--white); position: relative; }
.section.dark { background: var(--black); color: var(--white); }
.community::before,
.platform::before,
.veterans::before,
.footer::before,
.values::before,
.programs::before,
.contact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 88px;
  background: center / 100% 100% no-repeat;
  z-index: 0;
}

.community::before {
  background-image: url("./assets/transition-community.svg");
  transform: scaleX(-1);
  transform-origin: center;
}

.values::before {
  background-image: url("./assets/transition-values.svg");
  transform: scaleY(-1);
  transform-origin: center;
}

.platform::before {
  background-image: url("./assets/transition-platform.svg");
}

.programs::before {
  background-image: url("./assets/transition-programs.svg");
  transform: scaleX(-1) scaleY(-1);
  transform-origin: center;
}

.veterans::before {
  background-image: url("./assets/transition-veterans.svg");
  transform: scaleX(-1);
  transform-origin: center;
}

.contact::before {
  background-image: url("./assets/transition-contact.svg");
  transform: scaleY(-1);
  transform-origin: center;
}

.footer::before {
  background-image: url("./assets/transition-footer.svg");
}

.community > .shell,
.platform > .shell,
.veterans > .shell,
.footer > .shell,
.values > .shell,
.programs > .shell,
.contact > .shell { position: relative; z-index: 1; }
.section-title { margin-bottom: 40px; max-width: 886px; }
.section-title p, .media-head p, .platform-grid > div > p, .values-grid p, .speaker-cta p, .reminder p, .veteran-card p, .contact-grid p {
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 28px;
}
.section-title p span,
.media-head p span,
.platform-grid > div > p span,
.values-grid p span,
.speaker-cta p span,
.reminder p span,
.veteran-card p span,
.contact-grid p span { color: var(--red); margin-right: 8px; }
.section-title h2, .media-head h2, .platform-grid h2, .values-grid h2, .contact-grid h2 {
  margin: 0;
  font-size: 48px;
  line-height: 56px;
  font-weight: 500;
}
.light p { color: var(--white); }
.light h2 { color: var(--white); }
.course-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; padding-top: 16px; }
.course-card {
  position: relative;
  background: var(--white);
  color: var(--black);
  border-radius: 24px;
  min-height: 332px;
  padding: 40px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.course-card mark {
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--red-dark);
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 999px;
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
}
.course-card div { display: flex; align-items: start; justify-content: space-between; gap: 20px; width: 100%; }
.course-card h3 { margin: 0; font-size: 24px; line-height: 32px; }
.course-card a { color: inherit; }
.course-card div button { width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--black); background: transparent; display: grid; place-items: center; transition: border-color .18s ease; }
.course-card div button img { width: 10px; height: 10px; display: block; filter: brightness(0); }
.course-card p { margin: 0; font-size: 16px; line-height: 24px; max-width: 430px; }
.course-card .btn { margin-top: auto; width: 100%; }

.community { padding: 136px 0 100px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 16px; line-height: 24px; }
.checks li::before { content: "✓"; color: var(--red); margin-right: 12px; }
.community-pill {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 88px;
  padding: 16px 24px;
  border-radius: 56px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.community-pill::before { left: 120px; top: -40px; }
.avatars { display: flex; margin-left: 4px; }
.avatars img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; margin-right: -14px; }
.community-pill span { font-weight: 300; font-size: 16px; line-height: 24px; margin-left: 14px; }

.speakers { padding-bottom: 100px; }
.speakers .section-title { max-width: 784px; }
.speaker-layout { display: grid; grid-template-columns: 784px 1fr; gap: 32px; align-items: start; }
.speaker-main { width: 784px; height: 456px; border-radius: 16px; object-fit: cover; filter: grayscale(1); transition: opacity .2s ease, transform .2s ease; }
.speakers aside { min-height: 456px; display: flex; flex-direction: column; align-items: flex-start; }
.speakers aside em,
.speakers aside h3,
.speakers aside h4,
.speakers aside p {
  transition: opacity .2s ease, transform .2s ease;
}
.speakers.is-speaker-switching .speaker-main,
.speakers.is-speaker-switching aside em,
.speakers.is-speaker-switching aside h3,
.speakers.is-speaker-switching aside h4,
.speakers.is-speaker-switching aside p {
  opacity: 0;
  transform: translateY(6px);
}
.speakers aside h3 { margin: 20px 0 12px; font-size: 32px; line-height: 40px; font-weight: 500; text-transform: uppercase; }
.speakers aside h4 { margin: 0 0 24px; font-size: 20px; line-height: 28px; font-weight: 400; }
.speakers aside p { margin: 0 0 24px; font-size: 16px; line-height: 24px; }
.socials { display: flex; gap: 12px; margin-bottom: auto; }
.socials img { width: 32px; height: 32px; display: block; object-fit: contain; }
.speakers aside .outline-dark { width: 280px; min-height: 56px; padding: 16px 32px; font-size: 16px; line-height: 24px; }
.speaker-bottom { display: flex; justify-content: space-between; align-items: center; margin: 24px 0 24px; }
.thumbs { display: flex; gap: 24px; }
.thumbs img { width: 172px; height: 105px; object-fit: cover; border-radius: 16px; cursor: pointer; transition: opacity .2s ease, box-shadow .2s ease; }
.thumbs img:not(.is-active) { opacity: .82; }
.thumbs img.is-active { box-shadow: 0 0 0 1px var(--black); }
.arrows { display: flex; gap: 24px; }
.arrows button { width: 72px; height: 56px; font-size: 24px; }
.arrows img { display: block; filter: brightness(0); }
.arrows button:first-child img { width: 13.33px; height: 10px; }
.arrows button:last-child img { width: 16.67px; height: 11.67px; }
.speaker-cta, .reminder {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-radius: 32px;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1.45fr auto;
  gap: 32px;
  align-items: center;
}
.speaker-cta { height: 160px; grid-template-columns: minmax(314px, 1fr) minmax(478px, 1.35fr) auto; }
.speaker-cta::after, .reminder::after { right: -20px; top: -40px; }
.speaker-cta p, .reminder p { font-size: 16px; line-height: 24px; margin-bottom: 8px; }
.speaker-cta small, .reminder small { color: var(--gray-100); font-size: 16px; line-height: 24px; }
.reminder small { color: var(--white); font-size: 14px; line-height: 22px; font-weight: 300; }
.speaker-cta ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 16px; line-height: 24px; }
.speaker-cta li::before { content: "✓"; color: var(--red); margin-right: 12px; }

.media { height: 720px; padding: 100px 0; overflow: hidden; }
.media-head { display: grid; grid-template-columns: 274px 1fr auto; gap: 32px; align-items: center; margin-bottom: 40px; }
.media-head p { margin: 0; }
.media-head .outline-dark,
.platform .outline-dark { min-height: 56px; padding: 16px 32px; font-size: 16px; line-height: 24px; }
.media-grid { display: grid; grid-template-columns: 274px 1fr; gap: 32px; height: 424px; overflow: visible; }
.media-grid aside { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; }
.filters { width: 274px; display: flex; flex-wrap: wrap; gap: 16px; }
.filters button { border: 1px solid var(--gray-200); background: transparent; color: var(--gray-400); border-radius: 24px; padding: 12px 24px; height: 46px; text-transform: uppercase; font-size: 14px; line-height: 22px; }
.filters button:first-child { color: var(--black); border-color: var(--black); }
.media-arrows { display: flex; gap: 24px; }
.media-arrows button { width: 60px; height: 46px; padding: 12px 20px; }
.media-arrows img { filter: brightness(0); }
.media-arrows button:first-child img { width: 13.33px; height: 10px; }
.media-arrows button:last-child img { width: 16.67px; height: 11.67px; }
.media-mobile-actions { display: none; }
.media-viewport {
  min-width: 0;
  overflow: visible;
  clip-path: inset(0 -100vw 0 0);
}
.media-row {
  display: flex;
  gap: 16px;
  width: max-content;
  overflow: visible;
  transition: transform .28s ease;
}
.media-row article,
.media-row a { position: relative; flex: 0 0 274px; height: 424px; border-radius: 16px; overflow: hidden; color: var(--white); }
.media-row img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-row div { position: absolute; inset: auto 0 0; padding: 90px 24px 24px; background: linear-gradient(180deg, rgba(2,3,3,0), var(--black) 94%); }
.media-row b, .media-row span { display: block; font-size: 14px; line-height: 22px; }
.media-row b { font-size: 16px; line-height: 24px; }

.strategy { padding-bottom: 136px; }
.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.persona-grid article {
  height: 280px;
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.persona-grid h3 { margin: 0; text-transform: uppercase; font-size: 32px; line-height: 40px; font-weight: 400; }
.persona-grid h3 span { display: block; text-align: center; color: var(--white); }
.persona-grid p { margin: 0; color: var(--white); font-weight: 300; font-size: 16px; line-height: 24px; }
.reminder { height: 124px; grid-template-columns: 1fr 296px auto; column-gap: 16px; }
.reminder input { width: 280px; margin-left: 16px; }
.reminder input, .contact input {
  height: 56px;
  border-radius: 999px;
  border: 1px solid var(--gray-400);
  color: var(--white);
  background: rgba(244,246,248,.04);
  padding: 16px 20px;
}

.values {
  padding: 188px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--white) 0 88px, var(--black) 88px);
}
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.values-grid > div:first-child { display: flex; flex-direction: column; justify-content: space-between; min-height: 624px; padding-right: 40px; }
.values-grid h4 { font-size: 24px; line-height: 32px; font-weight: 300; color: var(--gray-200); margin: 24px 0 32px; }
.values-grid .btn-light { width: 428px; }
.value-list article { text-align: center; padding: 40px 56px; border-bottom: 1px solid var(--gray-500); }
.value-list article:last-child { border-bottom: 0; }
.value-list h3 { margin: 0 0 16px; text-transform: uppercase; font-size: 48px; line-height: 56px; font-weight: 400; }
.value-list p { margin: 0; color: var(--gray-200); font-size: 20px; line-height: 28px; text-transform: none; }

.platform { padding: 136px 0; }
.platform-grid { display: grid; grid-template-columns: 460px 1fr; gap: 50px; align-items: center; }
.platform-grid h2 { margin-bottom: 16px; }
.platform-grid .checks { margin-bottom: 24px; }
.platform-ui {
  width: 682px;
  height: 502px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.programs {
  height: 826px;
  min-height: 826px;
  padding: 100px 0;
  background:
    linear-gradient(to bottom, var(--white) 0 88px, rgba(2,3,3,0) 88px),
    url("./assets/background.svg") center bottom / cover no-repeat,
    var(--black);
  color: var(--white);
  overflow: hidden;
}
.programs::before { z-index: 1; }
.programs > .shell { z-index: 2; }
.programs .section-title { margin-bottom: 40px; width: 848px; }
.programs .section-title h2 { display: flex; gap: 16px; white-space: nowrap; }
.program-cards { display: grid; grid-template-columns: 597px 1fr; gap: 32px; }
.program-cards article {
  height: 486px;
  border-radius: 24px;
  background: var(--white);
  color: var(--black);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.program-copy { display: grid; gap: 12px; }
.program-label { margin: 0; text-transform: uppercase; font-size: 20px; line-height: 28px; }
.program-label span { color: var(--red); }
.program-copy small { display: block; color: var(--gray-500); font-size: 14px; line-height: 22px; }
.program-bottom { display: grid; gap: 16px; width: 100%; }
.program-list details {
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
  overflow: hidden;
}
.program-list details:last-child { border-bottom: 0; }
.program-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.program-list summary::-webkit-details-marker { display: none; }
.program-list summary::after {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("./assets/faq-down.svg") center / 10px 5px no-repeat;
  filter: brightness(0);
}
.program-list details[open] summary::after { background-image: url("./assets/faq-up.svg"); }
.program-list p {
  margin: 8px 0 0;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .28s ease, opacity .2s ease;
}
.program-list details[open] p { opacity: 1; }
.program-cards .btn { width: fit-content; min-height: 56px; padding: 16px 32px; font-size: 16px; line-height: 24px; }

.veterans { padding: 136px 0 100px; }
.veteran-card {
  position: relative;
  overflow: hidden;
  height: 366px;
  background: transparent;
  color: var(--white);
  border-radius: 0;
  padding: 40px 32px;
}
.veteran-card::after { display: none; }
.veteran-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 1192px;
  height: 374px;
  z-index: 0;
}
.veteran-glow {
  position: absolute;
  right: 58px;
  bottom: 44px;
  width: 174px;
  height: 174px;
  z-index: 1;
  pointer-events: none;
}
.veteran-card p,
.veteran-card h2,
.veteran-card small,
.veteran-card .btn { position: relative; z-index: 2; }
.veteran-card h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 784px;
  margin: 16px 0 0;
  font-size: 48px;
  line-height: 56px;
  font-weight: 500;
  text-align: center;
}
.veteran-title-line { display: block; }
.veteran-card small { display: block; position: absolute; left: 408px; top: 278px; width: 516px; max-width: none; color: var(--gray-200); font-size: 16px; line-height: 24px; }
.veteran-card .btn { position: absolute; right: 32px; top: 198px; }

.faq { min-height: 720px; padding: 100px 0 136px; overflow: visible; }
.faq-grid { display: grid; grid-template-columns: 376px 784px; gap: 32px; align-items: start; }
.faq .section-title { margin: 0; width: 376px; }
.faq .section-title h2 { width: 376px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; align-content: start; height: auto; }
.faq-list details {
  border: 1px solid #8f9399;
  border-radius: 32px;
  padding: 24px 32px;
  min-height: 80px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  margin-top: -4px;
  background: url("./assets/faq-down.svg") center / 13.33px 6.67px no-repeat;
  filter: brightness(0);
}
.faq-list details[open] summary::after { background-image: url("./assets/faq-up.svg"); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .28s ease, opacity .2s ease;
}
.faq-list details[open] .faq-answer { opacity: 1; }
.faq-list details p { margin: 8px 0 0; color: var(--gray-400); font-size: 14px; line-height: 22px; }

.contact {
  min-height: 920px;
  padding: 188px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--white) 0 88px, var(--black) 88px);
}
.contact-grid { display: grid; grid-template-columns: 580px 478px; gap: 134px; align-items: center; }
.contact-left { display: grid; gap: 32px; }
.contact .section-title { margin: 0; }
.contact .section-title p {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
}
.contact .section-title p span { color: var(--red); margin-right: 8px; }
.contact .section-title h2 {
  margin: 0;
  color: var(--white);
  font-size: 48px;
  line-height: 56px;
  font-weight: 500;
  letter-spacing: 0;
}
.contact .section-title h4 { margin: 16px 0 0; color: var(--gray-200); font-size: 24px; line-height: 32px; font-weight: 300; letter-spacing: 0; max-width: 580px; }
.contact form {
  display: grid;
  gap: 32px;
  width: 580px;
  padding: 40px 48px;
  border: 1px solid var(--red);
  border-radius: 24px;
  background: rgba(244,246,248,.04);
  box-shadow: 0 0 32px 4px rgba(194,0,0,.56);
  backdrop-filter: blur(20px);
}
.contact-fields { display: grid; gap: 16px; width: 100%; }
.contact label { display: block; color: var(--white); font-size: 16px; line-height: 24px; font-weight: 400; letter-spacing: 0; }
.contact label span { color: var(--red); margin-left: 4px; }
.contact input {
  width: 100%;
  height: 56px;
  display: block;
  margin-top: 8px;
  border-radius: 999px;
  border: 1px solid var(--gray-400);
  background: rgba(244,246,248,.04);
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 16px 20px;
}
.contact input::placeholder { color: var(--gray-400); }
.messengers { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.messengers p { margin: 0; color: var(--white); text-transform: none; font-size: 16px; line-height: 24px; font-weight: 300; letter-spacing: 0; }
.messengers a,
.messengers img { width: 40px; height: 40px; flex: 0 0 auto; display: block; }
.messengers a { font-size: 0; line-height: 0; text-decoration: none; border-bottom: 0; padding-bottom: 0; }
.messengers img { border-radius: 12px; }
.messengers div,
.messengers__icons { display: flex; align-items: center; gap: 16px; }
.contact form .btn { width: fit-content; font-size: 16px; line-height: 24px; font-weight: 400; letter-spacing: 0; }
.contact form .btn + small { margin-top: -16px; }
.contact form small { color: var(--gray-200); font-size: 14px; line-height: 22px; font-weight: 300; letter-spacing: 0; }
.privacy { display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: center; }
.privacy span { white-space: nowrap; }
.contact form a { color: var(--white); border-bottom: 1px solid var(--white); padding-bottom: 4px; font-size: 14px; font-weight: 500; line-height: 22px; }
.contact form .messengers a { border-bottom: 0; padding-bottom: 0; font-size: 0; line-height: 0; }
.contact-reminder { display: grid; gap: 16px; width: 478px; color: var(--white); }
.contact-reminder h3 { margin: 0; color: var(--white); font-size: 24px; line-height: 32px; font-weight: 500; letter-spacing: 0; }
.contact-reminder p { margin: 0 0 8px; color: var(--gray-200); font-size: 14px; line-height: 22px; font-weight: 300; letter-spacing: 0; text-transform: none; }
.contact-reminder .btn { width: fit-content; margin-top: 8px; font-size: 16px; line-height: 24px; font-weight: 400; letter-spacing: 0; }

.site-promo-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  height: 82px;
  overflow: visible;
  color: #f4f6f8;
  background: var(--black);
  font-family: "Space Grotesk", "Noto Sans", Arial, sans-serif;
}
.site-promo-banner__frost {
  position: relative;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 124px;
  overflow: hidden;
  border: 1px solid var(--gray-600);
  background: rgba(244,246,248,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-promo-banner__glow {
  position: absolute;
  left: calc(50% - 128px);
  top: -100px;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: var(--red);
  opacity: .35;
  filter: blur(160px);
  pointer-events: none;
}
.site-promo-banner__content {
  position: relative;
  z-index: 1;
  width: 638px;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-promo-banner__copy {
  width: 522px;
  min-width: 0;
  display: grid;
  gap: 4px;
}
.site-promo-banner__eyebrow,
.site-promo-banner__text {
  margin: 0;
  letter-spacing: 0;
}
.site-promo-banner__eyebrow {
  color: #f9fafb;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.site-promo-banner__eyebrow span {
  color: var(--red);
  margin-right: 8px;
}
.site-promo-banner__text {
  color: #d3d6d9;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-promo-banner__tag {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red-dark);
  color: #f4f6f8;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-promo-banner__actions {
  display: contents;
}
.site-promo-banner__counter {
  position: relative;
  z-index: 1;
  width: 154px;
  color: #d3d6d9;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}
.site-promo-banner__cta {
  position: relative;
  z-index: 1;
  width: 185px;
  flex: 0 0 185px;
  min-height: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #f4f6f8;
  border-radius: 32px;
  background: rgba(244,246,248,.04);
  color: #f4f6f8;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.site-promo-banner__cta:hover,
.site-promo-banner__cta:focus-visible {
  background: var(--white);
  color: var(--black);
}
.site-promo-banner__close {
  position: absolute;
  right: 32px;
  top: -24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-promo-banner__close span,
.site-promo-banner__close span::before,
.site-promo-banner__close span::after {
  display: block;
}
.site-promo-banner__close span {
  position: relative;
  width: 24px;
  height: 24px;
}
.site-promo-banner__close span::before,
.site-promo-banner__close span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transform-origin: center;
}
.site-promo-banner__close span::before { transform: rotate(45deg); }
.site-promo-banner__close span::after { transform: rotate(-45deg); }

@media (max-width: 1240px) and (min-width: 901px) {
  .site-promo-banner__frost {
    gap: 20px;
    padding-left: 32px;
    padding-right: 96px;
  }
  .site-promo-banner__content {
    width: auto;
    flex: 1 1 auto;
  }
  .site-promo-banner__copy {
    width: auto;
    flex: 1 1 auto;
  }
  .site-promo-banner__close {
    right: 24px;
  }
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.contact-modal[hidden] { display: none; }
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,3,3,.64);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: 580px;
  max-width: min(580px, calc(100vw - 32px));
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  margin: 0;
  padding: 40px;
  border: 0;
  border-radius: 24px;
  background: var(--gray-700);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateY(16px);
  transition: transform .2s ease;
}
.contact-modal.is-open .contact-modal__panel { transform: translateY(0); }
.contact-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 60px;
  height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: rgba(244,246,248,.04);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.contact-modal__close span {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
.contact-modal__close span::before,
.contact-modal__close span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 1.5px;
  height: 12px;
  border-radius: 999px;
  background: var(--white);
}
.contact-modal__close span::before { transform: rotate(45deg); }
.contact-modal__close span::after { transform: rotate(-45deg); }
.contact-modal__head {
  width: 100%;
  padding-right: 88px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-modal__head p {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.contact-modal__head p span { color: var(--red); margin-right: 8px; }
.contact-modal__head div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-modal__head h2 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
.contact-modal__head small {
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.contact-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.contact-modal label,
.contact-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.contact-modal label span b,
.contact-modal__field > span b {
  color: var(--red);
  font-weight: 400;
}
.contact-modal input,
.contact-modal textarea,
.contact-course-select__button {
  width: 100%;
  height: 56px;
  border: 1px solid var(--gray-400);
  border-radius: 999px;
  outline: none;
  background: rgba(244,246,248,.04);
  color: var(--white);
  padding: 16px 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.contact-course-select {
  position: relative;
  z-index: 10;
  isolation: isolate;
}
.contact-course-select.is-open {
  z-index: 80;
}
.contact-course-select__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 52px;
  text-align: left;
  cursor: pointer;
}
.contact-course-select__button::after {
  content: "";
  position: absolute;
  right: 27px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--white);
  transform: translateY(-35%);
}
.contact-course-select.is-open .contact-course-select__button {
  border-color: var(--white);
}
.contact-course-select.is-open .contact-course-select__button::after {
  border-top: 0;
  border-bottom: 6px solid var(--white);
  transform: translateY(-65%);
}
.contact-course-select__button span {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--gray-400);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-course-select.has-value .contact-course-select__button span {
  color: var(--white);
}
.contact-course-select__list {
  position: absolute;
  left: 0;
  top: calc(24px + 8px + 56px + 4px);
  z-index: 90;
  width: 100%;
  padding: 16px;
  border-radius: 24px;
  background: #0a0c10;
  box-shadow: 0 24px 48px rgba(2, 3, 3, .32);
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: auto;
}
.contact-course-select__list[hidden] {
  display: none;
}
.contact-course-select__list button {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--gray-200);
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.contact-course-select__list button:hover,
.contact-course-select__list button:focus-visible {
  outline: none;
  background: rgba(244,246,248,.04);
}
.contact-modal textarea {
  min-height: 112px;
  height: 112px;
  border-radius: 24px;
  resize: vertical;
}
.contact-modal input::placeholder,
.contact-modal textarea::placeholder { color: var(--gray-400); }
.contact-modal__messengers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.contact-modal__messengers p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.contact-modal__messengers div {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.contact-modal__messengers a,
.contact-modal__messengers img {
  width: 40px;
  height: 40px;
  display: block;
}
.contact-modal__messengers img { border-radius: 12px; }
.contact-modal__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-modal__bottom .btn {
  width: 100%;
  color: var(--black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.contact-modal .privacy {
  color: var(--gray-200);
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}
.contact-modal .privacy a {
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 4px;
  text-decoration: none;
  font-weight: 500;
}
.contact-modal--reminder .privacy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}
.contact-modal--reminder .privacy-mobile { display: none; }

.footer { position: relative; padding: 100px 0; background: var(--white); color: var(--black); }
.footer .shell { display: grid; gap: 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 714px; gap: 32px; padding-top: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 24px; justify-content: flex-start; }
.footer-brand img { width: 186px; height: 15px; margin: 8.5px 7.5px; display: block; }
.footer-brand h2 { margin: 0; max-width: 376px; font-size: 32px; line-height: 40px; font-weight: 500; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-nav div { display: flex; flex-direction: column; gap: 8px; }
.footer-nav p { margin: 0 0 12px; color: var(--black); font-size: 16px; line-height: 24px; text-transform: uppercase; }
.footer-nav p span { color: var(--red); }
.footer-nav a { color: var(--black); font-size: 14px; line-height: 22px; text-decoration: none; }
.footer-line { height: 1px; width: 100%; background: var(--gray-200); }
.footer-contacts { display: grid; grid-template-columns: 1fr 216px; gap: 32px; font-size: 16px; line-height: 24px; }
.footer-contacts p { margin: 0 0 8px; color: var(--black); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { margin: 0; color: var(--gray-400); font-size: 16px; line-height: 24px; }
.footer-bottom .socials { margin: 0; gap: 24px; }
.footer-socials { display: flex; align-items: center; gap: 24px; margin: 0; }
.footer-socials a,
.footer-socials img { display: block; width: 32px; height: 32px; }
.footer-socials a { flex: 0 0 auto; font-size: 0; line-height: 0; text-decoration: none; }
.footer-socials img { object-fit: contain; opacity: 1; }

.scroll-reveal-ready .reveal-block {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal-ready .reveal-block.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-reveal-ready .footer-bottom.reveal-block,
.scroll-reveal-ready .footer-bottom.reveal-block.is-visible {
  opacity: 1;
  transform: none;
}

.scroll-reveal-ready .hero-cards.reveal-block {
  transform: translate3d(0, 36px, 0);
}

.scroll-reveal-ready .hero-cards.reveal-block.is-visible {
  transform: translate3d(0, 0, 0);
}

.scroll-reveal-ready .hero.is-promo .hero-copy.reveal-block.is-visible,
.scroll-reveal-ready .hero.is-promo .hero-cards.reveal-block.is-visible {
  opacity: 0;
  transform: translate3d(-80px, 0, 0);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal-ready .reveal-block {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
  }

  .scroll-reveal-ready .hero.is-promo .hero-copy.reveal-block,
  .scroll-reveal-ready .hero.is-promo .hero-cards.reveal-block {
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
  }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 32px, 560px); }
  .nav { width: min(100% - 32px, 560px); height: auto; border-radius: 24px; flex-wrap: wrap; gap: 16px; }
  .menu { order: 3; width: 100%; margin: 0; overflow-x: auto; }
  .menu::-webkit-scrollbar { display: none; }
  .menu a { font-size: 14px; line-height: 22px; padding: 6px 10px; }
  .mega-menu { top: 132px; height: auto; }
  .mega-panel { height: auto; flex-direction: column; }
  .mega-courses { width: 100%; grid-template-columns: 1fr; }
  .mega-speakers { width: 100%; height: auto; }
  .mega-aside { width: 100%; flex-basis: auto; border-left: 0; border-top: 1px solid var(--gray-500); padding: 20px 0 0; }
  .nav-actions .btn { display: none; }
  .hero { min-height: 960px; }
  h1 { font-size: 46px; line-height: 52px; }
  .hero-copy { padding-top: 184px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; white-space: normal; flex-wrap: wrap; }
  .course-float { width: 250px; height: 250px; }
  .float-a { left: 6%; }
  .float-b { right: 0; top: 120px; }
  .slider,
  .hero-carousel-control { display: none; }
  .hero-promo { padding: 184px 16px 32px; overflow-y: auto; }
  .promo-copy, .promo-visual {
    position: static;
    width: 100%;
    height: auto;
  }
  .promo-copy { gap: 28px; }
  .promo-referral { width: 100%; flex-direction: column; align-items: flex-start; }
  .promo-referral b { white-space: normal; overflow-wrap: anywhere; }
  .promo-visual { margin-top: 40px; }
  .promo-bonus { width: min(100%, 376px); }
  .stat-grid, .course-grid, .two-col, .speaker-layout, .media-head, .media-grid, .persona-grid, .values-grid, .platform-grid, .program-cards, .faq-grid, .contact-grid, .footer-top, .footer-nav, .footer-contacts, .speaker-cta, .reminder { grid-template-columns: 1fr; }
  .speaker-main { width: 100%; height: auto; aspect-ratio: 784 / 456; }
  .speaker-cta, .reminder { gap: 24px; }
  .media, .programs, .faq, .contact { height: auto; min-height: auto; }
  .media-grid { height: auto; }
  .media-grid aside { flex-direction: row; flex-wrap: wrap; }
  .media-row { overflow-x: auto; }
  .persona-grid article { height: 230px; }
  .values-grid > div:first-child { min-height: auto; }
  .platform-ui { height: auto; }
  .programs .section-title, .faq .section-title, .faq .section-title h2, .contact form, .contact-reminder { width: 100%; }
  .programs .section-title h2 { flex-wrap: wrap; white-space: normal; }
  .program-cards article { width: 100%; height: auto; min-height: 430px; }
  .faq-list details { padding: 20px 24px; }
  .footer-top { padding-top: 0; }
  .veteran-card { background: var(--black); }
  .veteran-card h2, .veteran-card small { margin-left: 0; text-align: left; }
  .veteran-card .btn { position: static; margin-top: 24px; }
  .contact {
    padding: 48px 0;
    background: var(--black);
  }
  .contact::before {
    top: -17px;
    height: 48px;
  }
  .contact-grid {
    gap: 32px;
    align-items: stretch;
  }
  .contact-left {
    gap: 24px;
  }
  .contact .section-title p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 24px;
  }
  .contact .section-title h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .contact .section-title h4 {
    margin: 8px 0 0;
    max-width: 370px;
    color: var(--gray-200);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
  }
  .contact form {
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
  }
  .contact form .btn {
    width: 100%;
    min-height: 56px;
  }
  .contact form .btn + small {
    margin-top: 0;
  }
  .messengers {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }
  .contact .privacy span {
    white-space: normal;
  }
  .contact-reminder {
    width: 100%;
    gap: 24px;
  }
  .contact-reminder h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .contact-reminder p {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 22px;
  }
  .contact-reminder input {
    border-color: #d1d5db;
  }
  .contact-reminder .btn {
    width: 100%;
    margin-top: -8px;
    min-height: 56px;
  }
  .contact-modal { padding: 16px; align-items: start; }
  .contact-modal__panel {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    padding: 32px 24px;
    gap: 24px;
  }
  .contact-modal__close {
    top: 16px;
    right: 16px;
    width: 52px;
    height: 42px;
    padding: 10px 16px;
  }
  .contact-modal__head { padding-right: 64px; }
  .contact-modal__head h2 { font-size: 22px; line-height: 30px; }
  .contact-modal__head small { font-size: 14px; line-height: 22px; }
  .contact-modal__messengers {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .contact-modal .privacy span { white-space: normal; }
  .contact-modal--reminder {
    padding: 0;
    place-items: stretch;
    align-items: stretch;
  }
  .contact-modal--reminder .contact-modal__backdrop { display: none; }
  .contact-modal--reminder .contact-modal__panel {
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    max-height: none;
    padding: 32px 16px;
    border-radius: 0;
    gap: 24px;
    transform: none;
  }
  .contact-modal--reminder .contact-modal__close {
    top: 16px;
    right: 16px;
    width: 54px;
    height: 38px;
    padding: 12px 16px;
  }
  .contact-modal--reminder .contact-modal__head {
    padding-right: 64px;
    gap: 12px;
  }
  .contact-modal--reminder .contact-modal__head p {
    font-size: 14px;
    line-height: 22px;
  }
  .contact-modal--reminder .contact-modal__head div { gap: 8px; }
  .contact-modal--reminder .contact-modal__head h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .contact-modal--reminder .contact-modal__head small {
    font-size: 14px;
    line-height: 22px;
  }
  .contact-modal--reminder .contact-modal__fields {
    flex: 1 0 auto;
    gap: 16px;
  }
  .contact-modal--reminder .privacy-desktop { display: none; }
  .contact-modal--reminder .privacy-mobile { display: inline; }
}

@media (max-width: 900px) {
  .shell, .nav { width: min(100% - 32px, 370px); }
  .nav { top: 8px; height: 54px; min-height: 54px; padding: 8px 12px; border-radius: 999px; flex-wrap: nowrap; background: var(--black); }
  .logo { width: 126px; height: 20px; margin: 0; padding: 5.39px 4.61px 5.5px; box-sizing: border-box; object-fit: fill; }
  .menu { display: flex; order: initial; width: auto; margin: 0 0 0 4px; gap: 0; overflow: visible; }
  .menu a { display: none; }
  .menu a:first-child { display: inline-flex; align-items: center; gap: 4px; padding: 8px 16px; font-size: 14px; line-height: 22px; }
  .mega-menu { display: none; }
  .nav-actions { margin-left: auto; gap: 0; }
  .nav-actions .btn { display: none; }
  .icon { width: 48px; height: 38px; padding: 0; display: flex; align-items: center; justify-content: center; }
  .nav-menu-toggle img { display: none; }
  .nav-menu-toggle__icon {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
  }
  .nav-menu-toggle__icon::before,
  .nav-menu-toggle__icon::after {
    content: "";
    position: absolute;
    left: 2px;
    width: 12px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--white);
    transition: top .18s ease, transform .18s ease;
  }
  .nav-menu-toggle__icon::before { top: 5px; }
  .nav-menu-toggle__icon::after { top: 10px; }
  .nav.is-mobile-menu-open { background: var(--gray-700); }
  .nav.is-mobile-course-open .menu a:first-child { background: var(--gray-600); }
  .nav.is-mobile-course-open .menu a:first-child::after { transform: rotate(180deg); }
  .nav.is-mobile-menu-open .nav-menu-toggle__icon::before { top: 7px; transform: rotate(45deg); }
  .nav.is-mobile-menu-open .nav-menu-toggle__icon::after { top: 7px; transform: rotate(-45deg); }

  .btn { min-height: 46px; padding: 12px 24px; font-size: 14px; line-height: 22px; }
  .btn small { font-size: 12px; line-height: 18px; }
  .site-promo-banner {
    height: 128px;
  }
  .site-promo-banner__frost {
    height: 128px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px;
  }
  .site-promo-banner__glow {
    left: 72px;
    top: -77px;
  }
  .site-promo-banner__content {
    width: 100%;
    height: 54px;
    flex: 0 0 54px;
    align-items: center;
    gap: 12px;
  }
  .site-promo-banner__copy {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    gap: 0;
  }
  .site-promo-banner__eyebrow {
    font-size: 12px;
    line-height: 18px;
  }
  .site-promo-banner__text {
    font-size: 12px;
    line-height: 18px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
  .site-promo-banner__tag {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 18px;
  }
  .site-promo-banner__actions {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .site-promo-banner__counter {
    width: auto;
    font-size: 14px;
    line-height: 22px;
  }
  .site-promo-banner__cta {
    width: 48px;
    min-width: 48px;
    flex: 0 0 48px;
    min-height: 38px;
    height: 38px;
    padding: 0;
  }
  .site-promo-banner__cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .site-promo-banner__cta::before {
    content: "";
    width: 16px;
    height: 16px;
    display: block;
    background: currentColor;
    -webkit-mask: url("./assets/arrow-ne.svg") center / 16px 16px no-repeat;
    mask: url("./assets/arrow-ne.svg") center / 16px 16px no-repeat;
  }
  .site-promo-banner__close {
    right: 12px;
    top: -18px;
    width: 36px;
    height: 36px;
    padding: 12px;
  }
  .site-promo-banner__close span {
    width: 12px;
    height: 12px;
  }
  .site-promo-banner__close span::before,
  .site-promo-banner__close span::after {
    left: 0;
    top: 5px;
    width: 12px;
    height: 1.5px;
  }
  .section-title, .media-head, .contact .section-title { width: 100%; max-width: 370px; margin: 0 0 32px; }
  .section-title p, .media-head p, .platform-grid > div > p, .values-grid p, .speaker-cta p, .reminder p, .veteran-card p, .contact-grid p { margin: 0 0 12px; font-size: 16px; line-height: 24px; }
  .section-title h2, .media-head h2, .platform-grid h2, .values-grid h2, .contact-grid h2 { font-size: 24px; line-height: 32px; }

  .hero { height: auto; min-height: 885px; padding-bottom: 48px; }
  .hero::before { height: 885px; background-size: auto 885px; }
  .hero.is-promo::before {
    background-position: right top;
    background-size: 1245px 992px;
  }
  .hero-copy { padding-top: 94px; }
  h1 { max-width: 370px; margin-bottom: 20px; font-size: 48px; line-height: 56px; }
  .hero-copy p { max-width: 370px; margin: 0 auto 20px; font-size: 16px; line-height: 24px; }
  .hero-buttons { width: 100%; flex-direction: column; gap: 16px; }
  .hero-buttons .btn { width: 100%; min-height: 46px; white-space: nowrap; }
  .hero-cards.shell { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); margin-right: 0; }
  .hero-cards { height: 309px; margin-top: 24px; overflow: hidden; }
  .hero-cards::after { display: none; }
  .course-float { width: 280px; height: 280px; padding: 24px; transition: left .28s ease, transform .28s ease, opacity .28s ease; }
  .course-float h3 { width: 176px; font-size: 14px; line-height: 22px; }
  .course-float p { margin: 8px 0 38px; font-size: 12px; line-height: 16px; }
  .course-float b { width: 48px; height: 38px; }
  .float-a { left: 16px; top: 9px; transform: none; }
  .float-b { left: 331px; right: auto; top: 10px; transform: rotate(4deg); }
  .hero-cards.is-course-second .float-a { left: -299px; transform: rotate(-4deg); }
  .hero-cards.is-course-second .float-b { left: 16px; transform: none; }
  .hero-controls.shell {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 38px;
    margin: 24px auto 0;
  }
  .hero-carousel-control { position: static; display: flex; flex: 0 0 48px; align-items: center; justify-content: center; width: 48px; height: 38px; padding: 0; }
  .hero-carousel-control--prev,
  .hero-carousel-control--next { left: auto; right: auto; }
  .hero-carousel-control img { width: 20px; height: 20px; object-fit: contain; margin: 0; }
  .hero-progress {
    display: block;
    flex: 1 1 auto;
    height: 4px;
    border-radius: 999px;
    background: transparent;
  }
  .hero.is-promo .hero-progress { background: transparent; }

  .hero-promo {
    padding: 94px 16px 0;
    overflow: hidden;
  }
  .promo-copy,
  .promo-visual {
    position: static;
    width: 100%;
    height: auto;
  }
  .promo-copy {
    gap: 20px;
  }
  .promo-intro {
    gap: 16px;
  }
  .promo-badge {
    min-height: 38px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 22px;
  }
  .promo-heading {
    gap: 12px;
  }
  .promo-title {
    gap: 0;
  }
  .promo-title h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .promo-heading p {
    font-size: 14px;
    line-height: 22px;
  }
  .promo-timer {
    min-height: 72px;
    padding: 8px 0 8px 16px;
    gap: 8px;
  }
  .promo-timer strong {
    font-size: 24px;
    line-height: 32px;
  }
  .promo-timer span {
    font-size: 14px;
    line-height: 22px;
  }
  .promo-referral {
    width: 100%;
    min-height: 88px;
    padding: 16px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .promo-referral b {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .promo-referral button {
    position: relative;
    width: 48px;
    min-width: 48px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    font-size: 0;
  }
  .promo-referral button::before,
  .promo-referral button::after {
    content: "";
    position: absolute;
    border: 1px solid var(--white);
    border-radius: 2px;
  }
  .promo-referral button::before {
    left: 50%;
    top: 50%;
    width: 10px;
    height: 12px;
    transform: translate(-30%, -58%);
  }
  .promo-referral button::after {
    left: 50%;
    top: 50%;
    width: 10px;
    height: 12px;
    background: var(--black);
    transform: translate(-62%, -36%);
  }
  .promo-visual {
    margin-top: 24px;
  }
  .promo-bonus {
    width: 100%;
    height: 244px;
    padding: 24px 20px;
    border-radius: 12px;
  }
  .promo-bonus::before {
    left: 56.545px;
    top: -19.277px;
    width: 174px;
    height: 174px;
  }
  .promo-line {
    left: 16px;
    width: 96px;
  }
  .promo-bonus-inner {
    height: 196px;
  }
  .promo-bonus-main {
    gap: 12px;
  }
  .promo-bonus-main > span {
    min-height: 38px;
    font-size: 14px;
    line-height: 22px;
  }
  .promo-bonus strong {
    font-size: 48px;
    line-height: 56px;
  }
  .promo-bonus p,
  .promo-bonus small {
    font-size: 14px;
    line-height: 22px;
  }

  .stats { height: auto; padding: 0 0 56px; }
  .stat-grid { height: auto; grid-template-columns: 1fr; gap: 20px; }
  .stat-grid p { color: var(--gray-200); font-size: 14px; line-height: 22px; }
  .stat-grid div { padding: 8px 0 8px 20px; }
  .stat-grid strong { margin-bottom: 8px; font-size: 24px; line-height: 32px; }
  .stat-grid span { font-size: 14px; line-height: 22px; }

  #courses { padding: 56px 0; }
  #courses { margin-bottom: -1px; }
  .course-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 16px; }
  .course-card { min-height: 0; padding: 32px 20px 24px; gap: 20px; border-radius: 24px; }
  .course-card mark { top: -17px; left: 16px; padding: 8px 12px; font-size: 12px; line-height: 18px; }
  .course-card h3 { font-size: 20px; line-height: 28px; }
  .course-card div { gap: 8px; }
  .course-card div button { width: 48px; height: 38px; flex: 0 0 48px; }
  .course-card p { max-width: none; font-size: 14px; line-height: 22px; }
  .course-card em { font-size: 14px; line-height: 22px; }

  .community { padding: 72px 0 48px; margin-top: -1px; }
  .two-col { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .checks { gap: 8px; font-size: 14px; line-height: 22px; }
  .community-pill { width: 100%; min-height: 0; margin-top: 16px; padding: 16px 20px; border-radius: 40px; flex-direction: column; align-items: center; gap: 16px; }
  .community-pill .btn { order: 2; width: 100%; }
  .community-pill > div { width: 100%; display: flex; align-items: center; gap: 8px; }
  .avatars img { width: 40px; height: 40px; }
  .community-pill span { margin-left: 0; font-size: 14px; line-height: 22px; }

  .speakers { padding: 48px 0; }
  .speaker-layout { grid-template-columns: 1fr; gap: 24px; }
  .speaker-main { width: 100%; height: auto; aspect-ratio: 370 / 215; border-radius: 16px; }
  .speakers aside { min-height: 0; }
  .speakers aside em { padding: 8px 12px; font-size: 12px; line-height: 18px; }
  .speakers aside h3 { margin: 16px 0 8px; font-size: 24px; line-height: 32px; }
  .speakers aside h4 { margin: 0 0 16px; font-size: 16px; line-height: 24px; }
  .speakers aside p { margin: 0 0 16px; font-size: 16px; line-height: 24px; }
  .speakers aside .socials { align-self: flex-end; gap: 20px; margin-bottom: 24px; }
  .speakers aside .outline-dark { width: 100%; min-height: 46px; padding: 12px 24px; font-size: 14px; line-height: 22px; }
  .speaker-bottom { flex-direction: column; align-items: flex-end; gap: 24px; margin: 32px 0; }
  .thumbs { width: 100%; gap: 14px; }
  .thumbs img { width: calc((100% - 14px) / 2); height: auto; aspect-ratio: 178 / 109; }
  .arrows { gap: 24px; }
  .arrows button { width: 60px; height: 46px; }
  .speaker-cta { height: auto; grid-template-columns: 1fr; gap: 24px; padding: 24px 16px; border-radius: 32px; }
  .speaker-cta small, .speaker-cta li { font-size: 14px; line-height: 22px; }
  .speaker-cta .btn { width: 100%; }

  .media { height: auto; padding: 48px 0; overflow: hidden; }
  .media > .shell { position: relative; padding-bottom: 0; }
  .media-head { display: block; margin-bottom: 32px; }
  .media-head .outline-dark { display: none; }
  .media-grid { display: block; height: auto; }
  .media-grid aside { display: block; }
  .filters { width: 100%; display: flex; flex-wrap: nowrap; gap: 12px; margin-bottom: 16px; overflow-x: auto; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filters button { flex: 0 0 auto; height: 46px; padding: 12px 24px; font-size: 14px; line-height: 22px; }
  .media-viewport {
    width: 100%;
    overflow: visible;
    clip-path: inset(0 -100vw 0 0);
  }
  .media-row { gap: 8px; overflow: visible; }
  .media-row article,
  .media-row a { flex-basis: 181px; height: 280px; }
  .media-row div { padding: 72px 12px 12px; }
  .media-row b { font-size: 14px; line-height: 22px; }
  .media-row span { font-size: 12px; line-height: 16px; }
  .media-grid aside .media-arrows { display: none; }
  .media-mobile-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 16px; }
  .media-mobile-actions .outline-dark { width: 175px; min-height: 46px; padding: 12px 20px; font-size: 14px; line-height: 22px; }
  .media-mobile-actions .media-arrows { position: static; display: flex; flex: 0 0 136px; gap: 16px; }
  .media-mobile-actions .media-arrows button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--black);
    border-radius: 999px;
    background: rgba(244,246,248,.04);
  }

  .strategy { padding: 48px 0 72px; }
  .persona-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-bottom: 32px; }
  .persona-grid article { height: 180px; padding: 20px 16px; border-radius: 20px; }
  .persona-grid h3 { font-size: 20px; line-height: 28px; }
  .persona-grid p { font-size: 12px; line-height: 18px; }
  .reminder { height: auto; grid-template-columns: 1fr; gap: 24px; padding: 24px 16px; border-radius: 32px; }
  .reminder small { font-size: 14px; line-height: 22px; }
  .reminder input { width: 100%; margin-left: 0; }
  .reminder .btn { width: 100%; }

  .community::before,
  .platform::before,
  .veterans::before,
  .footer::before,
  .values::before,
  .programs::before,
  .contact::before { top: -1px; height: 50px; background-size: 100% 50px; }

  .values { padding: 56px 0; background: linear-gradient(to bottom, var(--white) 0 48px, var(--black) 48px); }
  .values::before { display: block; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid > div:first-child { min-height: 0; padding-right: 0; }
  .values-grid h4 { margin: 16px 0; font-size: 14px; line-height: 22px; font-weight: 400; }
  .values-grid .btn-light { width: 100%; }
  .value-list article { padding: 24px 8px; border-bottom: 0; }
  .value-list h3 { margin-bottom: 16px; font-size: 32px; line-height: 40px; }
  .value-list p { font-size: 16px; line-height: 24px; }

  .platform { padding: 72px 0; }
  .platform-grid { grid-template-columns: 1fr; gap: 32px; }
  .platform-grid .checks { margin: 16px 0; }
  .platform .outline-dark { width: 100%; min-height: 46px; padding: 12px 24px; font-size: 14px; line-height: 22px; }
  .platform-ui { width: 100%; height: auto; aspect-ratio: 370 / 272; object-fit: contain; }

  .programs { height: auto; min-height: 0; padding: 56px 0; overflow: visible; background: url("./assets/background.svg") center top / cover no-repeat, var(--black); }
  .programs::before { display: block; top: -48px; height: 48px; }
  .programs .section-title { width: 100%; margin-bottom: 32px; }
  .programs .section-title h2 { display: flex; gap: 12px; flex-wrap: nowrap; font-size: 24px; line-height: 32px; white-space: nowrap; }
  .program-cards { grid-template-columns: 1fr; gap: 16px; }
  .program-cards article { min-height: 0; height: auto; padding: 24px 20px; gap: 12px; border-radius: 24px; }
  .program-label { font-size: 20px; line-height: 28px; }
  .program-copy small { font-size: 14px; line-height: 22px; }
  .program-list summary { font-size: 14px; line-height: 22px; }
  .program-list p { font-size: 12px; line-height: 18px; }
  .program-cards .btn { width: 100%; min-height: 46px; padding: 12px 24px; font-size: 14px; line-height: 22px; }

  .veterans { padding: 48px 0; background: var(--white); overflow: visible; }
  .veterans::before { display: block; top: 0; height: 48px; }
  .veteran-card {
    height: 372px;
    padding: 32px 16px;
    border-radius: 16px;
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }
  .veteran-shape {
    content: url("./assets/veteran-shape-mobile.svg");
    display: block;
    left: 0;
    top: -0.27px;
    width: 100%;
    height: 374px;
    object-fit: fill;
  }
  .veteran-glow { right: -11px; bottom: -87px; }
  .veteran-card p { position: relative; left: auto; top: auto; width: 100%; margin: 0; }
  .veteran-card h2 { position: relative; left: auto; top: auto; display: block; width: 100%; height: auto; margin: 0; font-size: 32px; line-height: 40px; }
  .veteran-title-line { display: inline; }
  .veteran-title-line:not(:last-child)::after { content: " "; }
  .veteran-card small { position: relative; left: auto; top: auto; width: 100%; font-size: 14px; line-height: 22px; }
  .veteran-card .btn { position: relative; left: auto; right: auto; top: auto; bottom: auto; width: 189px; margin: 0; min-height: 46px; flex: 0 0 auto; }

  .faq { height: auto; min-height: 0; padding: 48px 0 72px; }
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .faq .section-title, .faq .section-title h2 { width: 100%; }
  .faq-list { height: auto; gap: 8px; }
  .faq-list details { min-height: 0; padding: 16px 20px; border-radius: 32px; }
  .faq-list summary { gap: 8px; font-size: 14px; line-height: 22px; }
  .faq-list summary::after { width: 24px; height: 24px; flex-basis: 24px; }
  .faq-list details p { font-size: 14px; line-height: 22px; }

  .contact { min-height: 0; padding: 48px 0; background: var(--black); }
  .contact::before { top: -17px; height: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
  .contact-left { gap: 24px; }
  .contact .section-title h4 { margin: 8px 0 0; max-width: 370px; font-size: 14px; line-height: 22px; font-weight: 400; }
  .contact form { gap: 24px; padding: 24px; border-radius: 24px; }
  .contact form .btn { width: 100%; min-height: 56px; }
  .contact form .btn + small { margin-top: 0; }
  .messengers { display: grid; grid-template-columns: repeat(3, 40px); align-items: center; justify-content: flex-start; gap: 16px; }
  .messengers p { grid-column: 1 / -1; margin-bottom: 8px; }
  .contact .privacy span { white-space: normal; }
  .contact-reminder { width: 100%; gap: 24px; }
  .contact-reminder h3 { font-size: 20px; line-height: 28px; }
  .contact-reminder p { margin: 8px 0 0; font-size: 14px; line-height: 22px; }
  .contact-reminder input { border-color: #d1d5db; }
  .contact-reminder .btn { width: 100%; margin-top: -8px; min-height: 56px; }

  .footer { padding: 72px 0 48px; }
  .footer .shell { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; padding-top: 24px; }
  .footer-brand { gap: 12px; }
  .footer-brand img { width: 201px; height: 32px; margin: 0; padding: 8.63px 7.36px 8.8px; box-sizing: border-box; object-fit: fill; object-position: left center; }
  .footer-brand h2 { max-width: 370px; font-size: 24px; line-height: 32px; }
  .footer-nav { grid-template-columns: 1fr; gap: 16px; }
  .footer-nav p, .footer-nav a, .footer-contacts { font-size: 14px; line-height: 22px; }
  .footer-contacts { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom p { font-size: 16px; line-height: 24px; }
  .footer-bottom .socials { gap: 16px; }
  .footer-bottom .socials img { width: 40px; height: 40px; }
  .footer-socials { gap: 16px; }
  .footer-socials a,
  .footer-socials img { width: 40px; height: 40px; }
}
