:root {
  --bg: #030303;
  --black: #000;
  --panel: #101114;
  --panel-2: #181a1f;
  --text: #f7f7f7;
  --muted: #b9c0cc;
  --line: rgba(255, 255, 255, 0.13);
  --blue: #045bff;
  --blue-soft: #2d8cff;
  --red: #e11919;
  --gold: #d3a24b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.hero {
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  background: #000000;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 47%, rgba(0, 0, 0, 0) 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.nav {
  width: min(1424px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 100vw;
  height: 100%;
  z-index: -1;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.84), rgba(3, 3, 3, 0.46));
  backdrop-filter: blur(12px);
}

.brand img {
  width: 150px;
}

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav__links a {
  text-decoration: none;
}

.nav__links a:hover {
  color: #fff;
}

.nav__toggle,
.nav__menu-cta {
  display: none;
}

.nav__toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.nav__toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  -webkit-transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px));
  -webkit-transform: translate(-50%, calc(-50% - 7px));
}

.nav__toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px));
  -webkit-transform: translate(-50%, calc(-50% + 7px));
}

.nav.nav--open .nav__toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
}

.nav.nav--open .nav__toggle span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
  -webkit-transform: translate(-50%, -50%) scaleX(0);
}

.nav.nav--open .nav__toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}

.hero__content {
  width: min(1424px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(130px, 16vh, 170px);
  padding-bottom: clamp(130px, 16vh, 170px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-soft);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 5.6vw, 5.35rem);
  line-height: 0.97;
  margin-bottom: 20px;
  text-transform: uppercase;
}

h1 span,
h2 span {
  color: var(--blue-soft);
}

h2 {
  font-size: clamp(1.65rem, 3.35vw, 3.05rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.18;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  margin: 0 0 26px;
  padding: 0 31px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
}

.hero .eyebrow::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #fff;
  clip-path: path("M6.5 0C3.1 0 .4 2.7.4 6.1c0 4.4 6.1 7.9 6.1 7.9s6.1-3.5 6.1-7.9C12.6 2.7 9.9 0 6.5 0Zm0 8.2A2.1 2.1 0 1 1 6.5 4a2.1 2.1 0 0 1 0 4.2Z");
}

.hero h1 {
  max-width: 875px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.25rem, 2.25vw, 2.85rem);
  line-height: 1.42;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 span {
  color: #fff;
  font-weight: 900;
}

.hero__lead {
  max-width: 880px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.34;
  font-weight: 400;
}

.hero__bullets {
  width: min(780px, 100%);
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  list-style: none;
}

.hero__bullets li {
  min-height: 52px;
  padding: 12px 14px 12px 42px;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 8, 15, 0.56);
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.25;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hero__bullets li::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(4, 91, 255, 0.16);
}

.hero__bullets li::after {
  content: "";
  width: 8px;
  height: 4px;
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-60%) rotate(-45deg);
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.hero .button--primary {
  min-width: 386px;
  min-height: 58px;
  border-radius: 8px;
  font-size: 1.13rem;
}

.hero .microcopy {
  margin-top: 18px;
  color: #fff;
  font-style: italic;
  font-size: 0.96rem;
}

.microcopy {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 12px 0 0;
}

.microcopy b {
  color: var(--red);
}

.button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, filter 160ms ease;
}

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

.button--primary {
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(4, 91, 255, 0.28);
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
  border-color: var(--line);
}

.nav__menu-cta {
  display: none;
}

.button--full {
  width: 100%;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(62px, 8.5vw, 110px) 0;
}

.section--black,
.section--slate {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.section--black {
  background: var(--black);
}

.section--slate {
  background: #191b20;
}

.section__head {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.section__head p:not(.eyebrow) {
  color: var(--muted);
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.text-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.video-grid--all {
  grid-template-columns: repeat(4, 1fr);
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
  padding: 0;
  color: #fff;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.video-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 30%;
  transform: translate(-50%, -50%);
  background: url("./img/play.svg") center / contain no-repeat;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 1));
  z-index: 2;
  opacity: 0.8;
}

.video-card:hover img {
  transform: scale(1.035);
  filter: brightness(1.1);
}

.video-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 3;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
}

.mentor {
  display: grid;
  grid-template-columns: minmax(360px, 530px) minmax(0, 650px);
  gap: 40px;
  align-items: center;
}

.mentor__media {
  position: relative;
  min-height: 568px;
  aspect-ratio: 9 / 11;
  background: #080808;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.mentor__media iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 165%;
  border: 0;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.mentor__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 38%, rgba(0, 0, 0, 0.1));
}

.mentor__copy p {
  color: var(--muted);
}

.mentor__copy .eyebrow {
  margin-bottom: 18px;
  color: var(--blue-soft);
  font-size: 0.98rem;
  letter-spacing: 0.48em;
  font-weight: 500;
}

.mentor__copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 2.55vw, 2.55rem);
  line-height: 1.12;
  font-weight: 900;
}

.mentor__copy p {
  max-width: 650px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.32;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(7, minmax(56px, 1fr));
  gap: 26px 30px;
  margin-top: 34px;
  align-items: center;
}

.logo-cloud img {
  max-height: 34px;
  width: auto;
  justify-self: center;
  opacity: 0.9;
  filter: grayscale(1);
}

@media (min-width: 641px) {
  .logo-cloud img:nth-child(n + 14) {
    display: none;
  }
}

.authority-grid,
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.authority-grid {
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
}

.authority-grid article,
.benefit-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  padding: 44px 34px;
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.authority-grid h3 {
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 1.2rem;
}

.authority-grid p {
  max-width: 305px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.36;
}

.communication-proof {
  padding-top: clamp(58px, 7vw, 92px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto 30px;
}

.proof-grid article {
  min-height: 150px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.proof-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid strong {
  color: #fff;
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  line-height: 1.05;
  text-transform: uppercase;
  display: block;
  padding: 18px 18px 0;
}

.proof-grid span {
  margin-top: 8px;
  padding: 0 18px 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.25;
  display: block;
}

.proof-closing {
  max-width: 820px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2.3rem);
  line-height: 1.12;
  font-weight: 800;
  text-align: center;
}

.ideal-profile .section__head {
  max-width: 980px;
}

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

.profile-grid article {
  min-height: 230px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.profile-grid h3 {
  color: #fff;
}

.profile-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.selection-process .section__head {
  max-width: 940px;
}

.selection-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.selection-steps article {
  min-height: 190px;
  padding: 24px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101114;
  text-align: center;
}

.selection-steps span {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.selection-steps h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.28;
}

.benefit-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.days {
  display: grid;
  gap: 22px;
  margin-bottom: 30px;
}

.day {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.day--reverse img {
  order: 2;
}

.day--reverse {
  grid-template-columns: 1.1fr 0.9fr !important;
}

.day div {
  padding: 80px;
}

.day img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.day p {
  color: var(--muted);
  margin-bottom: 0;
}

.closing-copy {
  max-width: 900px;
  margin: 0 auto 26px;
  text-align: center;
  color: var(--muted);
}

.benefit-list {
  grid-template-columns: 1.2fr repeat(2, 1fr);
}

.benefits {
  max-width: 1200px;
}

.benefits .section__head {
  max-width: 1100px;
  margin-bottom: 30px;
}

.benefits .section__head .eyebrow {
  color: var(--blue-soft);
  font-size: 0.92rem;
  letter-spacing: 0.42em;
  font-weight: 500;
}

.benefits .section__head h2 {
  font-size: clamp(2rem, 2.55vw, 2.85rem);
  line-height: 1.22;
}

.benefits .section__head p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 1.14rem;
  line-height: 1.36;
}

.benefits-accordion {
  max-width: 1200px;
  margin: 0 auto 30px;
}

.benefits-accordion details {
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
}

.benefits-accordion summary {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 48px 10px 12px;
  background: #2b2b2b;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  list-style: none;
}

.benefits-accordion summary::-webkit-details-marker {
  display: none;
}

.benefits-accordion summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  line-height: 1;
}

.benefits-accordion details[open] summary::after {
  content: "-";
}

.benefits-accordion p {
  margin: 0;
  padding: 10px 10px 26px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.32;
}

.teaser #teaserVideo {
  max-width: 860px;
  margin: 0 auto;
}

.bonus-carousel {
  position: relative;
  margin-bottom: 28px;
}

.bonus-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 30px) / 4);
  grid-template-columns: none;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
}

.bonus-strip:active {
  cursor: grabbing;
}

.bonus-strip::-webkit-scrollbar {
  display: none;
}

.bonus-strip img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

.carousel-button--prev {
  left: -25px;
}

.carousel-button--next {
  right: -25px;
}

.faq {
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  margin-bottom: 10px;
  overflow: hidden;
}

summary {
  padding: 17px 20px;
  cursor: pointer;
  font-weight: 600;
}

details p {
  color: var(--muted);
  padding: 0 20px 18px;
  margin-bottom: 0;
}

.footer {
  background: #000;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 34px 16px;
  font-size: 0.84rem;
}

.footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.footer__logos img {
  max-height: 54px;
  width: auto;
}

.footer a {
  color: #fff;
}

.modal,
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.modal.is-open,
.video-lightbox.is-open {
  display: block;
}

.modal.is-open {
  display: grid;
  place-items: center;
  padding: 15px;
}

.modal__backdrop,
.video-lightbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.modal__dialog {
  width: min(530px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  overflow: auto;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.modal__close,
.video-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  z-index: 4;
  font-size: 1.4rem;
}

.modal__copy {
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #07080a;
  color: #fff;
  padding: 0 14px;
}

input:focus {
  outline: 2px solid rgba(45, 140, 255, 0.7);
  outline-offset: 2px;
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.video-lightbox {
  place-items: center;
  padding: 28px;
}

.video-lightbox.is-open {
  display: grid;
}

.video-lightbox__frame {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.video-lightbox iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    height: auto;
    padding-top: min(74vw, 360px);
    background: #000000;
  }

  .hero::after,
  .hero__media {
    bottom: auto;
    height: 100vh;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, #000 100%);
  }

  .hero__media img {
    object-position: center top;
  }

  .hero__content {
    width: min(100% - 56px, 560px);
    padding-top: 0;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.7rem, 6.2vw, 2.35rem);
    line-height: 1.18;
    margin-bottom: 22px;
  }

  .hero__lead {
    max-width: 100%;
    font-size: clamp(1.02rem, 4.4vw, 1.28rem);
    line-height: 1.34;
    margin-bottom: 22px;
  }

  .hero__bullets {
    width: min(100%, 520px);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    gap: 9px;
    text-align: left;
  }

  .hero__bullets li {
    min-height: 48px;
    font-size: 0.92rem;
  }

  .nav {
    width: calc(100% - 32px);
    min-height: 68px;
    padding: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, 100%);
    margin-left: 0;
    padding: 12px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 9, 12, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.nav--open .nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links a {
    min-height: 44px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    color: #fff;
  }

  .nav__links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav__menu-cta {
    width: 100%;
    margin-top: 8px;
    display: flex;
  }

  .video-grid,
  .video-grid--all,
  .authority-grid,
  .benefit-list,
  .proof-grid,
  .profile-grid,
  .selection-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .mentor,
  .day,
  .day--reverse {
    grid-template-columns: 1fr !important;
  }

  .day div {
    padding: 10px;
  }

  .mentor {
    padding-top: 42px;
  }

  .mentor__media {
    width: min(530px, 100%);
    min-height: 520px;
    margin: 0 auto;
  }

  .mentor__copy {
    width: min(650px, 100%);
    margin: 0 auto;
  }

  .logo-cloud {
    grid-template-columns: repeat(4, 1fr);
  }

  .day--reverse img {
    order: initial;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    padding-top: min(74vw, 286px);
  }

  .hero::after,
  .hero__media {
    height: 100vh;
  }

  .hero__content {
    width: calc(100% - 56px);
    padding-bottom: 48px;
  }

  .hero .eyebrow {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    margin-bottom: 22px;
    padding: 0 12px;
    font-size: 0.93rem;
    font-weight: 500;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.9rem);
    line-height: 1.17;
    letter-spacing: 0;
  }

  .hero__lead {
    font-size: clamp(1rem, 4.35vw, 1.12rem);
  }

  .hero__bullets {
    margin-bottom: 24px;
  }

  .hero__bullets li {
    padding: 11px 12px 11px 38px;
    font-size: 0.86rem;
    line-height: 1.22;
  }

  .hero__bullets li::before {
    left: 12px;
    width: 16px;
    height: 16px;
  }

  .hero__bullets li::after {
    left: 16px;
  }

  .hero .button--primary {
    min-width: 0;
    min-height: 44px;
    font-size: 0.9rem;
    padding: 0 14px;
  }

  .hero .microcopy {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .section,
  .section--black,
  .section--slate {
    max-width: 100%;
    overflow-x: clip;
  }

  .bonus-strip {
    margin-left: 0;
    margin-right: 0;
    grid-auto-columns: calc((100% - 10px) / 2);
  }

  .brand img {
    width: 122px;
  }

  .nav {
    width: calc(100% - 28px);
    min-height: 68px;
    padding: 0;
  }

  .video-grid,
  .video-grid--all,
  .authority-grid,
  .benefit-list,
  .proof-grid,
  .profile-grid,
  .selection-steps {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .profile-grid article,
  .selection-steps article {
    min-height: 0;
    padding: 26px 22px;
  }

  .proof-grid article {
    padding: 0;
  }

  .proof-closing {
    font-size: 1.42rem;
  }

  .benefits .section__head h2 {
    font-size: 1.72rem;
  }

  .benefits .section__head p,
  .benefits-accordion p {
    font-size: 1rem;
  }

  .benefits-accordion summary {
    font-size: 0.88rem;
  }

  .logo-cloud {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    grid-template-columns: none;
    gap: 20px 18px;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    padding: 4px 0 12px;
  }

  .logo-cloud img {
    scroll-snap-align: start;
    justify-self: center;
    max-width: 100%;
    max-height: 34px;
    object-fit: contain;
  }

  .logo-cloud::-webkit-scrollbar {
    display: none;
  }

  .mentor__media {
    min-height: 390px;
  }

  .mentor__copy .eyebrow {
    letter-spacing: 0.22em;
    font-size: 0.78rem;
  }

  .mentor__copy h2 {
    font-size: 2rem;
  }

  .mentor__copy p {
    font-size: 1rem;
  }

  .authority-grid article,
  .benefit-list article {
    min-height: 260px;
    padding: 30px 22px;
  }

  .button {
    width: 100%;
  }

  .modal__dialog {
    padding: 26px 18px;
  }

  .video-lightbox {
    padding: 12px;
  }

  .footer__logos img {
    max-height: 35px;
  }
}
