:root {
  --ink: #071321;
  --ink-soft: #12243a;
  --navy: #061a33;
  --blue: #086cff;
  --blue-dark: #0452c9;
  --ice: #eaf4ff;
  --ice-2: #f4f8fc;
  --paper: #ffffff;
  --warm: #f6f3ed;
  --muted: #617083;
  --line: #dce5ee;
  --light-line: rgba(255, 255, 255, 0.13);
  --radius: 20px;
  --shadow: 0 24px 70px rgba(7, 27, 53, 0.12);
  --display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3,
figure,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.feature-icon svg,
.problem-icon svg,
.opportunity-icon svg,
.tep-symbol svg,
.bonus-icon svg,
.portal-flow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 48px));
  height: 92px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid rgba(17, 61, 109, 0.12);
}

.brand img {
  width: 140px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.site-header nav a {
  color: #405268;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: var(--blue);
}

.header-cta {
  padding: 11px 18px;
  border: 1px solid rgba(7, 19, 33, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}

.header-cta:hover {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 870px;
  padding: 148px 0 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(46, 142, 255, 0.17), transparent 31%),
    linear-gradient(118deg, #ffffff 0%, #f8fbfe 45%, #e9f3fc 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(25, 75, 129, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 75, 129, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, black 48%, black);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(8, 108, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-a {
  top: 124px;
  right: -210px;
  width: 730px;
  height: 730px;
}

.hero-orbit-b {
  top: 248px;
  right: -85px;
  width: 480px;
  height: 480px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.84fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.hero h1 {
  max-width: 680px;
  margin-top: 23px;
  font-family: var(--display);
  font-size: clamp(50px, 4.7vw, 66px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-promise {
  max-width: 610px;
  margin-top: 18px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.hero-lead {
  max-width: 620px;
  margin-top: 22px;
  color: #506176;
  font-size: 16px;
  line-height: 1.65;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 20px;
  max-width: 620px;
  margin-top: 23px;
}

.hero-benefits li {
  position: relative;
  padding-left: 22px;
  color: #203449;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button span {
  font-size: 18px;
}

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

.button-dark {
  margin-top: 26px;
  color: white;
  background: var(--ink);
  box-shadow: 0 16px 35px rgba(7, 19, 33, 0.18);
}

.button-dark:hover {
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(8, 108, 255, 0.26);
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
  color: #718094;
  font-size: 11px;
}

.microcopy span {
  color: var(--blue);
}

.microcopy i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9ba8b7;
}

.hero-profile {
  position: relative;
  align-self: stretch;
  min-height: 598px;
}

.hero-profile::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 24px;
  border: 1px solid rgba(8, 108, 255, 0.17);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(8, 108, 255, 0.045));
}

.hero-photo-frame {
  position: absolute;
  inset: 0 0 -1px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  background: #eaf3fc;
  box-shadow: 0 34px 90px rgba(17, 63, 112, 0.2);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 44%;
}

.hero-landmarks {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 125%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.72;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 20%, rgba(0, 0, 0, 0.62) 27%, rgba(0, 0, 0, 0.2) 33%, transparent 38%);
  mask-image: linear-gradient(to right, #000 0%, #000 20%, rgba(0, 0, 0, 0.62) 27%, rgba(0, 0, 0, 0.2) 33%, transparent 38%);
  pointer-events: none;
}

.profile-caption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 20px;
  left: auto;
  min-width: 178px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  color: white;
  background: rgba(5, 21, 37, 0.72);
  box-shadow: 0 16px 36px rgba(4, 21, 40, 0.18);
  backdrop-filter: blur(12px);
}

.profile-caption strong {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.profile-caption span {
  display: block;
  margin-top: 3px;
  color: #a7ceff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-mobile-photo {
  display: none;
}

.hero-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 50px;
}

.hero-metrics > div {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 118px;
  padding: 21px 20px;
  border: 1px solid rgba(20, 71, 127, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(27, 70, 119, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-metrics > div:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 108, 255, 0.3);
  box-shadow: 0 24px 52px rgba(27, 70, 119, 0.13);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(8, 108, 255, 0.14);
  border-radius: 15px;
  color: var(--blue);
  background: linear-gradient(145deg, #f5faff, #e4f1ff);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.metric-copy {
  display: block;
  min-width: 0;
}

.metric-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.metric-copy small {
  display: block;
  margin-top: 7px;
  color: #718094;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

h2 {
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 57px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.07;
}

.center-heading {
  text-align: center;
}

.center-heading .kicker,
.curriculum-heading .kicker {
  justify-content: center;
}

.narrow-heading {
  max-width: 920px;
}

.narrow-heading h2 {
  margin-top: 20px;
}

.narrow-heading > p:last-child {
  max-width: 760px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.results {
  padding: 130px 0 112px;
  background: var(--paper);
}

.proof-guide {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.proof-guide span {
  color: #33475c;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.proof-guide strong {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.proof-showcase {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 310px;
  justify-content: start;
  gap: 20px;
  width: 100%;
  margin-top: 22px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2)) 36px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #5c9df2 #e6edf5;
}

.proof-showcase::-webkit-scrollbar,
.module-track::-webkit-scrollbar {
  height: 8px;
}

.proof-showcase::-webkit-scrollbar-track,
.module-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #e6edf5;
}

.proof-showcase::-webkit-scrollbar-thumb,
.module-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, #0b6fff, #69aaff);
}

.student-proof {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f2f5f8;
  box-shadow: 0 15px 45px rgba(6, 27, 51, 0.07);
  scroll-snap-align: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.student-proof:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(6, 27, 51, 0.12);
}

.student-proof img {
  width: 100%;
  height: 565px;
  object-fit: contain;
  object-position: center top;
}

.result-context {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
  margin-top: 46px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.result-context span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.result-context p {
  color: #27394d;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.problem {
  position: relative;
  padding: 132px 0 0;
  color: white;
  background:
    radial-gradient(circle at 7% 9%, rgba(11, 110, 255, 0.24), transparent 28%),
    #07111e;
  overflow: hidden;
}

.problem::after {
  content: "";
  position: absolute;
  top: -190px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(80, 150, 230, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(40, 107, 182, 0.03), 0 0 0 160px rgba(40, 107, 182, 0.02);
}

.problem-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
}

.kicker-light {
  color: #7db8ff;
}

.problem-copy h2 {
  margin-top: 20px;
  font-size: clamp(38px, 4.2vw, 55px);
}

.problem-copy > p:last-child {
  margin-top: 27px;
  color: #9faebe;
  font-size: 17px;
}

.problem-list {
  border-top: 1px solid var(--light-line);
}

.problem-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--light-line);
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(103, 172, 255, 0.2);
  border-radius: 12px;
  color: #7db8ff;
  background: rgba(62, 135, 224, 0.08);
}

.problem-icon svg {
  width: 19px;
  height: 19px;
}

.problem-list p {
  color: #eef5fc;
  font-size: 14px;
  font-weight: 600;
}

.problem-statement {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 105px;
  padding: 46px 0 50px;
  border-top: 1px solid var(--light-line);
}

.problem-statement span {
  color: #7db8ff;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
}

.problem-statement strong {
  font-family: var(--display);
  font-size: clamp(23px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.opportunity {
  padding: 136px 0 0;
  background: #f5f9fd;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 92px;
  align-items: start;
}

.opportunity-visual {
  position: sticky;
  top: 30px;
  height: 820px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.opportunity-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 36%, rgba(3, 17, 31, 0.82));
}

.opportunity-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: white;
}

.visual-overlay > span {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.visual-overlay strong {
  font-family: var(--display);
  font-size: 37px;
  letter-spacing: -0.06em;
}

.visual-overlay strong span {
  color: var(--blue);
}

.opportunity-copy h2 {
  margin-top: 20px;
}

.opportunity-copy > p:not(.kicker) {
  margin-top: 23px;
  color: var(--muted);
  font-size: 16px;
}

.opportunity-points {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.opportunity-points article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 17px;
  min-height: 126px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.opportunity-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d9e8f8;
  border-radius: 13px;
  color: var(--blue);
  background: white;
  box-shadow: 0 9px 25px rgba(27, 70, 119, 0.07);
}

.opportunity-icon svg {
  width: 21px;
  height: 21px;
}

.opportunity-points h3 {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.opportunity-points p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.opportunity-manifesto {
  margin-top: 115px;
  padding: 43px 0 52px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(27px, 3.4vw, 43px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
  text-align: center;
}

.opportunity-manifesto em {
  color: var(--blue);
  font-style: normal;
}

.mentor {
  padding: 138px 0;
  background: var(--warm);
}

.mentor-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 96px;
  align-items: center;
}

.mentor-photo {
  position: relative;
}

.mentor-photo::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -24px;
  width: 100%;
  height: 100%;
  border: 1px solid #bfcbd6;
  border-radius: 18px;
}

.mentor-photo > img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 28px 65px rgba(20, 26, 34, 0.14);
}

.mentor-stamp {
  position: absolute;
  right: -35px;
  bottom: 34px;
  z-index: 2;
  width: 150px;
  padding: 18px;
  border-radius: 13px;
  color: white;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(5, 20, 37, 0.24);
}

.mentor-stamp span,
.mentor-stamp small {
  display: block;
  color: #a8c9ed;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.mentor-stamp strong {
  display: block;
  margin: 3px 0;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -0.05em;
}

.mentor-copy h2 {
  margin-top: 20px;
}

.mentor-copy > p:not(.kicker) {
  margin-top: 20px;
  color: #536173;
  font-size: 16px;
}

.mentor-proof {
  margin: 30px 0 5px;
  padding: 25px 28px;
  border-left: 3px solid var(--blue);
  background: white;
  box-shadow: 0 16px 45px rgba(30, 43, 60, 0.07);
}

.mentor-proof span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mentor-proof p {
  margin-top: 8px;
  color: #27384a;
  font-size: 15px;
}

.mentor-proof strong {
  color: var(--ink);
}

.method {
  position: relative;
  padding: 136px 0 120px;
  color: white;
  background:
    radial-gradient(circle at 80% 10%, rgba(8, 108, 255, 0.18), transparent 27%),
    #061321;
}

.method-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 110px;
  align-items: end;
}

.method-heading h2 {
  margin-top: 20px;
}

.method-heading > p {
  padding-bottom: 7px;
  color: #9cacbd;
  font-size: 16px;
}

.method-heading > p strong {
  color: white;
}

.tep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 66px;
}

.tep-grid article {
  position: relative;
  min-height: 440px;
  padding: 38px 34px 34px;
  border: 1px solid var(--light-line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
  overflow: hidden;
}

.tep-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid var(--blue);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tep-grid article:hover::before {
  opacity: 1;
}

.tep-letter {
  position: absolute;
  top: -35px;
  right: 18px;
  color: rgba(85, 147, 216, 0.1);
  font-family: var(--display);
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
}

.tep-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(113, 177, 250, 0.24);
  border-radius: 14px;
  color: #83bdff;
  background: rgba(74, 144, 226, 0.09);
}

.tep-grid h3 {
  position: relative;
  margin-top: 34px;
  font-family: var(--display);
  font-size: 39px;
  letter-spacing: -0.05em;
}

.tep-grid strong {
  position: relative;
  display: block;
  margin-top: 22px;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.45;
}

.tep-grid p {
  position: relative;
  margin-top: 18px;
  color: #93a4b6;
  font-size: 14px;
}

.method-close {
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid var(--light-line);
  color: #a6b4c2;
  font-size: 17px;
  text-align: center;
}

.method-close strong {
  color: white;
}

.curriculum {
  padding: 138px 0 125px;
  background: #f7f9fb;
}

.curriculum-heading {
  max-width: 880px;
  text-align: center;
}

.curriculum-heading h2 {
  margin-top: 20px;
}

.curriculum-heading > p:last-child {
  max-width: 740px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.module-track {
  display: grid;
  grid-template-columns: repeat(9, 250px);
  gap: 16px;
  width: 100%;
  margin-top: 63px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2)) 34px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.module-card {
  position: relative;
  height: 378px;
  border-radius: 15px;
  background: var(--navy);
  box-shadow: 0 20px 42px rgba(16, 40, 68, 0.12);
  overflow: hidden;
  scroll-snap-align: start;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 46%, rgba(2, 13, 25, 0.92));
}

.module-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-card > div {
  position: absolute;
  right: 20px;
  bottom: 19px;
  left: 20px;
  z-index: 2;
  color: white;
}

.module-card span {
  color: #7db8ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.module-card h3 {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.curriculum-close {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  margin-top: 66px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

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

.curriculum-close strong {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.42;
}

.portal {
  position: relative;
  padding: 140px 0;
  color: white;
  background:
    radial-gradient(circle at 90% 50%, rgba(20, 117, 255, 0.26), transparent 30%),
    linear-gradient(120deg, #061321, #082341);
  overflow: hidden;
}

.portal::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -330px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(100, 168, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(65, 128, 204, 0.025), 0 0 0 200px rgba(65, 128, 204, 0.018);
}

.portal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 86px;
  align-items: center;
}

.portal-logo {
  width: 150px;
  margin-top: 30px;
  filter: brightness(0) invert(1);
}

.portal-copy h2 {
  margin-top: 28px;
}

.portal-copy > p:not(.kicker) {
  margin-top: 22px;
  color: #a8b6c5;
}

.portal-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 20px;
  margin-top: 34px;
}

.portal-benefits li {
  position: relative;
  padding-left: 21px;
  color: #eaf2fa;
  font-size: 13px;
  font-weight: 600;
}

.portal-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #65aaff;
}

.portal-panel {
  padding: 43px 40px 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025));
  box-shadow: 0 32px 80px rgba(0, 7, 17, 0.28);
  backdrop-filter: blur(12px);
}

.panel-label {
  color: #7db8ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-panel h3 {
  margin-top: 12px;
  font-family: var(--display);
  font-size: 35px;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.portal-panel > p {
  margin-top: 19px;
  color: #a9b9c8;
  font-size: 14px;
}

.portal-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 29px;
  padding: 20px 0;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.portal-flow div {
  text-align: center;
}

.portal-flow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border: 1px solid rgba(111, 178, 255, 0.2);
  border-radius: 10px;
  color: #6eaef7;
  background: rgba(62, 135, 224, 0.08);
}

.portal-flow span svg {
  width: 17px;
  height: 17px;
}

.portal-flow strong {
  font-family: var(--display);
  font-size: 12px;
}

.portal-flow i {
  color: #5d7084;
  font-style: normal;
}

.portal-panel blockquote {
  margin-top: 24px;
  color: #d9e5ef;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.bonuses {
  padding: 138px 0;
  background: white;
}

.bonuses-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.bonuses-heading h2 {
  max-width: 720px;
  margin-top: 20px;
}

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

.bonuses-intro p + p {
  margin-top: 18px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 62px;
}

.bonus-grid article {
  min-height: 270px;
  padding: 29px 29px 28px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, white, #f8fbfe);
  box-shadow: 0 14px 38px rgba(25, 54, 86, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bonus-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 108, 255, 0.24);
  box-shadow: 0 22px 46px rgba(25, 54, 86, 0.1);
}

.bonus-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #d9e8f8;
  border-radius: 15px;
  color: var(--blue);
  background: #edf6ff;
}

.bonus-icon svg {
  width: 23px;
  height: 23px;
}

.bonus-grid h3 {
  margin-top: 30px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.bonus-grid p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
}

.investment {
  position: relative;
  padding: 136px 0;
  color: white;
  background:
    radial-gradient(circle at 78% 52%, rgba(8, 108, 255, 0.28), transparent 29%),
    #071524;
  overflow: hidden;
}

.investment-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.investment-copy h2 {
  max-width: 710px;
  margin-top: 20px;
}

.investment-copy > p:not(.kicker) {
  max-width: 680px;
  margin-top: 23px;
  color: #a1b1c1;
  font-size: 16px;
}

.investment-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  max-width: 720px;
  margin-top: 37px;
}

.investment-copy li {
  display: grid;
  grid-template-columns: 20px 1fr;
  color: #e0e9f1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.investment-copy li span {
  color: #68adff;
}

.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(30, 68, 111, 0.95), rgba(10, 33, 58, 0.92));
  box-shadow: 0 32px 90px rgba(0, 6, 15, 0.35);
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 36px;
  left: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2b89ff, transparent);
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--light-line);
}

.price-top img {
  width: 122px;
}

.price-top span {
  color: #8fb2d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card > p:not(.cash-price) {
  margin-top: 30px;
  color: #9aafc5;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.installments {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-top: 5px;
}

.installments > span {
  padding-bottom: 9px;
  color: #8eb4da;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
}

.installments strong {
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 66px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.installments small {
  margin-right: 5px;
  font-size: 20px;
}

.cash-price {
  margin-top: 8px;
  color: #a4b7ca;
  font-size: 12px;
}

.button-blue {
  color: white;
  background: var(--blue);
  box-shadow: 0 15px 38px rgba(0, 90, 224, 0.34);
}

.button-blue:hover {
  background: #1478ff;
  box-shadow: 0 20px 44px rgba(0, 90, 224, 0.44);
}

.price-card .button {
  width: 100%;
  margin-top: 27px;
}

.payment-safe {
  display: block;
  margin-top: 14px;
  color: #88a0b8;
  font-size: 10px;
  text-align: center;
}

.guarantee {
  padding: 73px 0;
  color: white;
  background: #030a12;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 70px;
  align-items: center;
  max-width: 920px;
}

.guarantee-seal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 1px solid #31587f;
  border-radius: 50%;
}

.guarantee-seal::before,
.guarantee-seal::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(103, 167, 234, 0.28);
  border-radius: 50%;
}

.guarantee-seal::before {
  inset: 9px;
}

.guarantee-seal::after {
  inset: 22px;
}

.guarantee-seal span {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 63px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.guarantee-seal small {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  color: #7facda;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guarantee h2 {
  max-width: 700px;
  margin-top: 12px;
  font-size: clamp(34px, 3.9vw, 50px);
}

.guarantee-grid > div:last-child > p:last-child {
  max-width: 680px;
  margin-top: 18px;
  color: #91a1b1;
}

.faq {
  padding: 130px 0;
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 105px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 35px;
}

.faq-heading h2 {
  margin-top: 18px;
}

.faq-heading > p:not(.kicker) {
  margin-top: 20px;
  color: var(--muted);
}

.faq-heading > a {
  display: inline-block;
  margin-top: 26px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  color: #15283d;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 50px 26px 0;
  color: var(--muted);
  font-size: 14px;
}

.closing {
  position: relative;
  padding: 138px 0 142px;
  color: white;
  background: #061321;
  overflow: hidden;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(88, 146, 205, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(88, 146, 205, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.closing-glow {
  position: absolute;
  bottom: -320px;
  left: 50%;
  width: 760px;
  height: 760px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(8, 108, 255, 0.3);
  filter: blur(110px);
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  text-align: center;
}

.closing-inner .kicker {
  justify-content: center;
}

.closing h2 {
  margin-top: 20px;
}

.closing-inner > p:not(.kicker) {
  max-width: 710px;
  margin: 25px auto 0;
  color: #a6b4c2;
  font-size: 17px;
}

.closing .button {
  margin-top: 34px;
}

footer {
  color: #98a7b6;
  background: #030a12;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 104px;
  font-size: 10px;
}

.footer-inner img {
  width: 118px;
}

.footer-inner p {
  text-align: center;
}

.footer-inner div {
  text-align: right;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-profile {
    min-height: 560px;
  }

  .opportunity-grid,
  .mentor-grid,
  .portal-grid {
    gap: 58px;
  }

  .method-heading,
  .bonuses-heading {
    gap: 65px;
  }

  .investment-grid {
    gap: 55px;
  }
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.7fr;
    gap: 25px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-profile {
    min-height: 530px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

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

  .problem-grid,
  .opportunity-grid,
  .mentor-grid,
  .method-heading,
  .portal-grid,
  .bonuses-heading,
  .investment-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .mentor-grid,
  .portal-grid,
  .faq-grid {
    gap: 60px;
  }

  .problem-statement,
  .curriculum-close {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .opportunity-visual {
    position: relative;
    top: auto;
    height: 560px;
  }

  .opportunity-copy {
    padding-top: 15px;
  }

  .mentor-photo {
    width: min(500px, 86%);
    margin-inline: auto;
  }

  .tep-grid {
    grid-template-columns: 1fr;
  }

  .tep-grid article {
    min-height: 340px;
  }

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

  .investment-copy ul {
    grid-template-columns: 1fr;
  }

  .price-card {
    width: min(480px, 100%);
    margin-inline: auto;
  }

  .faq-heading {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .shell,
  .site-header {
    width: min(100% - 34px, 1180px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: 74px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    padding: 9px 14px;
    font-size: 10px;
  }

  .hero {
    padding-top: 102px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f8fd 58%, #e5f1fc 100%);
  }

  .hero::before {
    background-size: 42px 42px;
  }

  .hero-grid {
    display: block;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: clamp(39px, 11.2vw, 47px);
    letter-spacing: -0.058em;
    line-height: 1.01;
  }

  .hero-promise {
    margin-top: 13px;
    font-size: 20px;
  }

  .hero-mobile-photo {
    position: relative;
    display: block;
    height: 355px;
    margin-top: 25px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 24px;
    background: #e9f3fd;
    box-shadow: 0 22px 55px rgba(16, 55, 95, 0.14);
    overflow: hidden;
  }

  .hero-mobile-photo .hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 51% 40%;
  }

  .hero-mobile-photo .hero-landmarks {
    width: 125%;
    opacity: 0.72;
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 20%, rgba(0, 0, 0, 0.62) 27%, rgba(0, 0, 0, 0.2) 33%, transparent 38%);
    mask-image: linear-gradient(to right, #000 0%, #000 20%, rgba(0, 0, 0, 0.62) 27%, rgba(0, 0, 0, 0.2) 33%, transparent 38%);
  }

  .hero-mobile-photo .profile-caption {
    right: 12px;
    bottom: 12px;
    min-width: 158px;
    padding: 12px 14px;
  }

  .hero-profile {
    display: none;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-benefits {
    gap: 11px;
    margin-top: 21px;
  }

  .hero-benefits li {
    font-size: 13px;
  }

  .hero .button {
    width: 100%;
    min-height: 58px;
    margin-top: 24px;
  }

  .microcopy {
    justify-content: center;
    font-size: 9px;
  }

  .hero-metrics {
    margin-top: 38px;
    gap: 9px;
  }

  .hero-metrics > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 11px;
    min-height: 128px;
    padding: 17px 14px;
    border-radius: 14px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .feature-icon svg {
    width: 19px;
    height: 19px;
  }

  .metric-copy strong {
    font-size: 14px;
  }

  .metric-copy small {
    margin-top: 6px;
    font-size: 8px;
  }

  h2 {
    font-size: clamp(33px, 9.2vw, 42px);
    line-height: 1.08;
  }

  .results,
  .mentor,
  .method,
  .curriculum,
  .portal,
  .bonuses,
  .investment,
  .faq,
  .closing {
    padding-top: 94px;
    padding-bottom: 92px;
  }

  .narrow-heading > p:last-child,
  .curriculum-heading > p:last-child,
  .closing-inner > p:not(.kicker) {
    font-size: 15px;
  }

  .proof-guide {
    align-items: flex-start;
    margin-top: 37px;
    padding-top: 20px;
  }

  .proof-guide span {
    max-width: 180px;
    font-size: 12px;
  }

  .proof-guide strong {
    font-size: 9px;
    text-align: right;
  }

  .proof-showcase {
    grid-auto-columns: 288px;
    margin-top: 18px;
    padding: 0 17px 26px;
  }

  .student-proof img {
    height: 526px;
  }

  .result-context {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 35px;
  }

  .result-context p {
    font-size: 17px;
  }

  .problem {
    padding-top: 92px;
  }

  .problem-grid {
    gap: 48px;
  }

  .problem-copy h2 {
    font-size: 37px;
  }

  .problem-copy > p:last-child {
    font-size: 15px;
  }

  .problem-list div {
    min-height: 72px;
  }

  .problem-statement {
    margin-top: 72px;
    padding: 32px 0 38px;
  }

  .opportunity {
    padding-top: 94px;
  }

  .opportunity-grid {
    gap: 52px;
  }

  .opportunity-visual {
    height: 460px;
  }

  .opportunity-copy > p:not(.kicker) {
    font-size: 15px;
  }

  .opportunity-manifesto {
    margin-top: 70px;
    padding: 34px 0 40px;
  }

  .mentor-grid {
    gap: 66px;
  }

  .mentor-photo {
    width: calc(100% - 18px);
  }

  .mentor-photo::before {
    top: 14px;
    left: -14px;
  }

  .mentor-stamp {
    right: -9px;
    bottom: 20px;
    width: 132px;
    padding: 15px;
  }

  .mentor-copy > p:not(.kicker) {
    font-size: 15px;
  }

  .method-heading {
    gap: 24px;
  }

  .method-heading > p {
    font-size: 15px;
  }

  .tep-grid {
    gap: 12px;
    margin-top: 43px;
  }

  .tep-grid article {
    min-height: 355px;
    padding: 31px 25px;
  }

  .module-track {
    grid-template-columns: repeat(9, 225px);
    margin-top: 44px;
    padding: 0 17px 26px;
  }

  .module-card {
    height: 345px;
  }

  .curriculum-close {
    margin-top: 48px;
    padding-top: 29px;
  }

  .curriculum-close strong {
    font-size: 20px;
  }

  .portal-grid {
    gap: 52px;
  }

  .portal-logo {
    width: 128px;
    margin-top: 24px;
  }

  .portal-benefits {
    grid-template-columns: 1fr;
  }

  .portal-panel {
    padding: 31px 24px 27px;
  }

  .portal-panel h3 {
    font-size: 31px;
  }

  .portal-flow {
    gap: 4px;
  }

  .portal-flow strong {
    font-size: 10px;
  }

  .bonuses-heading {
    gap: 22px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .bonus-grid article {
    min-height: 200px;
  }

  .investment-grid {
    gap: 52px;
  }

  .price-card {
    padding: 28px 23px;
  }

  .installments strong {
    font-size: 54px;
  }

  .guarantee {
    padding: 74px 0;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .guarantee-seal {
    width: 124px;
    height: 124px;
  }

  .guarantee-seal span {
    font-size: 52px;
  }

  .guarantee-seal small {
    bottom: 23px;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 22px;
    min-height: 94px;
  }

  .footer-inner p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
