:root {
  --blue: #145ddd;
  --blue-dark: #011c4c;
  --blue-soft: #dfeaff;
  --pink: #ff5fa4;
  --pink-soft: #ffe2ef;
  --yellow: #ffce24;
  --lavender: #e8e3ff;
  --cream: #fff8ef;
  --green: #52c990;
  --green-soft: #dff7e8;
  --white: #fff;
  --ink: #101d38;
  --muted: #5e687b;
  --line: rgba(1, 28, 76, .13);
  --shadow: 0 24px 60px rgba(1, 28, 76, .14);
  --shell: 1280px;
}

.payment-offer-list {
  display: grid;
  gap: 10px;
}

.payment-offer-link {
  align-items: center;
  background: #fff;
  border: 1px solid #d8dfdc;
  border-radius: 12px;
  color: #17332d;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  text-decoration: none;
}

.payment-offer-link:hover,
.payment-offer-link:focus-visible {
  border-color: #1f5c4b;
  box-shadow: 0 0 0 3px rgba(31, 92, 75, .14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body:has(.mobile-nav:not([hidden])) { overflow: hidden; }

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

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

.page-shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.section-pad { padding-block: 86px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1, h2, h3, p, li, label, a, button {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
h1, h2, h3 { text-wrap: balance; }

h2 {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(31px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.section-heading { max-width: 950px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.section-heading--light h2 { color: var(--white); }
.section-heading--light .eyebrow { color: var(--yellow); }
.section-heading--light > p:last-child { color: rgba(255, 255, 255, .7); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 15px;
  padding: 0 24px;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  transition: transform .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.button--small { min-height: 42px; border-radius: 12px; padding-inline: 17px; font-size: 12px; }
.button--dark { background: var(--blue-dark); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 239, .94);
  backdrop-filter: blur(16px);
}

.header-inner { display: flex; min-height: 72px; align-items: center; gap: 20px; }

.brand {
  display: grid;
  grid-template-columns: 36px auto;
  grid-template-rows: 19px 13px;
  align-items: center;
  column-gap: 8px;
}

.brand > span {
  display: grid;
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  place-items: center;
  background: var(--blue);
  color: var(--yellow);
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
}

.brand b { align-self: end; color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: 15px; line-height: 1; text-transform: uppercase; }
.brand small { align-self: start; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.desktop-nav, .header-actions { display: none; }

.menu-button {
  display: flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 0;
  border-radius: 13px;
  background: var(--blue-dark);
}

.menu-button span { width: 18px; height: 2px; border-radius: 2px; background: var(--white); }

.mobile-nav {
  position: fixed;
  z-index: 60;
  inset: 72px 0 0;
  padding: 24px 20px;
  background: var(--cream);
}

.mobile-nav a { display: block; border-bottom: 1px solid var(--line); padding: 18px 4px; font-family: "Unbounded", sans-serif; font-size: 16px; font-weight: 600; }

.hero { position: relative; overflow: hidden; background: var(--blue-dark); color: var(--white); }
.hero::before { position: absolute; right: -120px; bottom: -210px; width: 520px; height: 520px; border: 80px solid rgba(255, 255, 255, .045); border-radius: 50%; content: ""; }
.hero-grid { position: relative; display: grid; gap: 54px; padding-block: 70px 46px; }
.hero-copy { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--yellow); }

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(34px, 9.2vw, 76px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .95;
}

.hero h1 span { color: var(--pink); }
.hero-lead { max-width: 720px; margin: 28px 0; color: rgba(255, 255, 255, .78); font-size: clamp(17px, 4vw, 23px); font-weight: 600; line-height: 1.55; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.text-link { color: var(--yellow); font-weight: 800; }
.text-link span { display: inline-block; margin-left: 7px; }
.hero-subjects { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 0; padding: 0; list-style: none; }
.hero-subjects li { border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; padding: 8px 13px; background: rgba(255, 255, 255, .08); font-size: 12px; font-weight: 700; }
.hero-art { position: relative; min-height: 570px; isolation: isolate; }
.hero-art::after { position: absolute; z-index: 0; right: 2%; bottom: 1%; width: 86%; height: 12%; border-radius: 50%; background: rgba(0, 9, 39, .38); content: ""; filter: blur(28px); pointer-events: none; }
.hero-frame { position: absolute; z-index: 0; border: 1px solid rgba(96, 151, 245, .2); border-radius: 50%; pointer-events: none; }
.hero-frame--back { top: 13%; right: -9%; width: 96%; aspect-ratio: 1; transform: rotate(-11deg); }
.hero-frame--middle { top: 23%; right: 0; width: 76%; aspect-ratio: 1; border-color: rgba(255, 255, 255, .1); transform: rotate(13deg); }
.hero-art > img { position: absolute; z-index: 2; bottom: -1px; left: 47%; width: min(132%, 860px); max-width: none; max-height: 620px; transform: translateX(-50%); object-fit: contain; object-position: bottom; filter: drop-shadow(0 28px 30px rgba(0, 8, 34, .32)); }

.outcomes { background: var(--cream); }
.outcome-grid { display: grid; gap: 14px; }
.outcome-card { min-height: 270px; border-radius: 27px; padding: 27px; background: var(--lavender); }
.outcome-card:nth-child(2) { background: var(--yellow); }
.outcome-card:nth-child(3) { background: var(--green-soft); }
.outcome-card > span { color: var(--blue); font-family: "Unbounded", sans-serif; font-size: 12px; font-weight: 800; }
.outcome-card h3 { margin: 45px 0 13px; color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: 22px; letter-spacing: -.035em; line-height: 1.2; }
.outcome-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.student-voices { display: grid; gap: 30px; align-items: center; margin-top: 18px; overflow: hidden; border-radius: 31px; padding: 28px 28px 0; background: var(--blue); color: var(--white); }
.student-voices img { align-self: end; width: 100%; max-height: 370px; object-fit: contain; object-position: bottom; }
.student-voices > div { display: grid; gap: 12px; padding-bottom: 30px; }
.student-voices p { margin: 0; border-radius: 18px; padding: 15px 18px; background: rgba(255, 255, 255, .12); font-family: "Unbounded", sans-serif; font-size: 16px; font-weight: 600; line-height: 1.4; }
.student-voices p:nth-child(2) { margin-left: 10%; background: var(--yellow); color: var(--blue-dark); }
.student-voices p:nth-child(3) { margin-right: 7%; background: var(--pink); }

.system { background: var(--blue-dark); color: var(--white); }
.system-grid { display: grid; gap: 13px; }
.system-card { display: grid; grid-template-columns: 52px 1fr; gap: 17px; min-height: 220px; align-content: space-between; border: 1px solid rgba(255, 255, 255, .13); border-radius: 26px; padding: 25px; background: rgba(255, 255, 255, .075); }
.system-card > span { display: grid; width: 52px; height: 52px; border-radius: 16px; place-items: center; background: var(--yellow); color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: 12px; font-weight: 800; }
.system-card > div { grid-column: 1 / 3; }
.system-card h3 { margin: 0 0 9px; font-family: "Unbounded", sans-serif; font-size: 20px; }
.system-card p { margin: 0; color: rgba(255, 255, 255, .68); line-height: 1.6; }
.system-card--accent { background: var(--pink); }
.system-card--accent p { color: rgba(255, 255, 255, .88); }

.welcome { background: linear-gradient(135deg, var(--cream) 0%, #f2efff 58%, #e4efff 100%); }
.welcome-grid { display: grid; gap: 40px; align-items: center; }
.welcome-copy h2 { max-width: 850px; }
.welcome-lead { max-width: 750px; margin: 25px 0 32px; font-size: 18px; font-weight: 600; line-height: 1.65; }
.welcome-points { display: grid; gap: 10px; }
.welcome-points article { border: 1px solid rgba(1, 28, 76, .08); border-radius: 18px; padding: 19px; background: rgba(255, 255, 255, .82); box-shadow: 0 12px 35px rgba(1, 28, 76, .06); }
.welcome-points b { color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: 14px; }
.welcome-points p { margin: 7px 0 0; color: var(--muted); line-height: 1.6; }
.welcome-art { position: relative; min-height: 390px; }
.welcome-art > span { position: absolute; inset: 7% 4% 0; border: 1px solid rgba(20, 93, 221, .14); border-radius: 46% 54% 52% 48%; background: linear-gradient(145deg, rgba(232, 227, 255, .9), rgba(223, 234, 255, .82)); box-shadow: 0 28px 70px rgba(20, 93, 221, .11); transform: rotate(5deg); }
.welcome-art img { position: absolute; z-index: 2; inset: auto 0 0; width: 100%; max-height: 390px; margin: auto; object-fit: contain; }

.program { background: var(--lavender); }
.program-heading { display: grid; gap: 20px; margin-bottom: 50px; }
.program-heading > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.program-roadmap { border-top: 1px solid var(--line); }
.roadmap-step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; border-bottom: 1px solid var(--line); padding: 27px 0; }
.roadmap-step > span { display: grid; width: 42px; height: 42px; border-radius: 13px; place-items: center; background: var(--blue); color: var(--white); font-family: "Unbounded", sans-serif; font-size: 10px; font-weight: 700; }
.roadmap-step h3 { margin: 4px 0 8px; color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: 19px; line-height: 1.3; }
.roadmap-step p { margin: 0; color: var(--muted); line-height: 1.6; }
.step-label { color: var(--pink) !important; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.lesson { background: var(--cream); }
.lesson-grid { display: grid; gap: 45px; align-items: center; }
.lesson-art { min-height: 410px; border-radius: 34px; padding: 20px 20px 0; background: var(--pink-soft); }
.lesson-art img { width: 100%; height: 100%; min-height: 390px; object-fit: contain; object-position: bottom; }
.lesson-copy h2 { max-width: 760px; font-size: clamp(31px, 3.8vw, 50px); line-height: 1.1; }
.lesson-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.lesson-copy ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.lesson-copy li { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; border-radius: 15px; padding: 13px 15px; background: var(--white); font-weight: 700; }
.lesson-copy li span { color: var(--pink); font-family: "Unbounded", sans-serif; font-size: 10px; }

.grade { background: var(--blue-soft); }
.grade-intro { display: grid; gap: 20px; margin-bottom: 46px; }
.grade-intro > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.grade-card { overflow: hidden; border-radius: 30px; padding: 20px; background: var(--white); box-shadow: var(--shadow); }
.grade-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 7px; scrollbar-width: none; }
.grade-tabs::-webkit-scrollbar { display: none; }
.grade-tabs button { flex: 0 0 auto; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; background: var(--cream); color: var(--blue-dark); font-size: 12px; font-weight: 800; }
.grade-tabs button[aria-selected="true"] { border-color: var(--blue); background: var(--blue); color: var(--white); }
.readiness-heading { display: grid; gap: 16px; margin: 28px 0; border-radius: 22px; padding: 22px; background: var(--lavender); }
.readiness-heading span { color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.readiness-heading h3 { margin: 7px 0 0; color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: 22px; }
.readiness-heading p { max-width: 580px; margin: 0; color: var(--muted); line-height: 1.6; }
.readiness-grid { display: grid; gap: 12px; }
.readiness-grid fieldset { display: grid; gap: 11px; margin: 0; border: 1px solid var(--line); border-radius: 20px; padding: 20px; }
.readiness-grid legend { padding: 0 7px; color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: 14px; font-weight: 700; }
.readiness-grid ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.readiness-grid li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: 14px; line-height: 1.5; }
.readiness-grid li span { padding-top: 3px; color: var(--pink); font-family: "Unbounded", sans-serif; font-size: 9px; font-weight: 800; }
.curriculum-note { margin: 16px 2px 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.grade-fit { position: relative; display: grid; gap: 14px; margin-top: 20px; overflow: hidden; border-radius: 22px; padding: 22px; background: linear-gradient(125deg, var(--blue-dark), #164597); color: var(--white); }
.grade-fit::after { position: absolute; right: -60px; bottom: -105px; width: 220px; height: 220px; border: 35px solid rgba(255, 255, 255, .06); border-radius: 50%; content: ""; }
.grade-fit > span { position: relative; z-index: 1; color: var(--yellow); font-family: "Unbounded", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.grade-fit > div { position: relative; z-index: 1; }
.grade-fit strong { display: block; font-family: "Unbounded", sans-serif; font-size: 18px; line-height: 1.35; }
.grade-fit p { max-width: 850px; margin: 8px 0 0; color: rgba(255, 255, 255, .76); font-size: 14px; line-height: 1.6; }

.quotes { background: var(--cream); }
.quote-grid { display: grid; gap: 13px; }
.quote-card { display: flex; min-height: 245px; flex-direction: column; justify-content: space-between; margin: 0; border-radius: 25px; padding: 25px; background: var(--lavender); }
.quote-card:nth-child(2) { background: var(--yellow); }
.quote-card:nth-child(3) { background: var(--green-soft); }
.quote-card--dark { background: var(--blue-dark); color: var(--white); }
.quote-card p { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.6; }
.quote-card footer { margin-top: 30px; color: var(--muted); font-size: 11px; font-weight: 700; }
.quote-card--dark footer { color: rgba(255, 255, 255, .55); }
.proof-header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 64px 0 22px; }
.proof-header h3 { margin: 0; color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: clamp(24px, 6vw, 42px); letter-spacing: -.04em; line-height: 1.15; }
.slider-controls { display: flex; flex: 0 0 auto; gap: 7px; }
.slider-arrow { display: grid; width: 47px; height: 47px; border: 0; border-radius: 50%; place-items: center; background: var(--blue-dark); color: var(--white); cursor: pointer; font-size: 21px; transition: transform .2s ease, background .2s ease; }
.slider-arrow:hover { background: var(--blue); transform: translateY(-2px); }
.slider-arrow:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.review-carousel { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: 0 24px 60px rgba(5, 32, 85, .09); }
.review-carousel:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }
.review-story { display: grid; min-height: 580px; }
.review-story[hidden] { display: none; }
.review-story-copy { display: flex; flex-direction: column; padding: 29px; }
.review-result { width: fit-content; border-radius: 999px; padding: 8px 12px; background: var(--pink-soft); color: #ba2f73; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-story blockquote { margin: 28px 0 26px; }
.review-story blockquote p { margin: 0; color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: clamp(21px, 4.8vw, 32px); font-weight: 600; letter-spacing: -.035em; line-height: 1.35; }
.review-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 32px; padding: 0; list-style: none; }
.review-highlights li { border-radius: 999px; padding: 9px 12px; background: var(--blue-soft); color: var(--blue-dark); font-size: 11px; font-weight: 800; }
.review-highlights li::before { margin-right: 7px; color: var(--pink); content: "●"; font-size: 8px; }
.review-story footer { display: grid; gap: 3px; margin-top: auto; }
.review-story footer strong { color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: 17px; }
.review-story footer span { color: var(--muted); font-size: 12px; font-weight: 700; }
.review-proof { position: relative; display: grid; min-height: 420px; overflow: hidden; border: 0; border-top: 1px solid var(--line); padding: 26px 20px 76px; place-items: center; background: linear-gradient(145deg, var(--blue-soft), var(--lavender)); cursor: zoom-in; }
.review-proof img { display: block; width: 100%; max-height: 420px; border-radius: 14px; object-fit: contain; object-position: center; box-shadow: 0 18px 40px rgba(5, 32, 85, .16); transition: transform .3s ease; }
.review-proof:hover img { transform: scale(1.015); }
.review-proof > span { position: absolute; right: 20px; bottom: 20px; display: inline-flex; gap: 8px; align-items: center; border-radius: 999px; padding: 11px 15px; background: var(--blue-dark); color: var(--white); font-size: 12px; font-weight: 800; }
.review-proof > span b { font-size: 15px; }
.review-proof:focus-visible { outline: 3px solid var(--pink); outline-offset: -6px; }
.review-progress { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding: 17px 22px; background: var(--cream); }
.review-dots { display: flex; gap: 8px; }
.review-dots button { width: 9px; height: 9px; border: 0; border-radius: 999px; padding: 0; background: #c9d2e4; cursor: pointer; transition: width .2s ease, background .2s ease; }
.review-dots button[aria-current="true"] { width: 28px; background: var(--pink); }
.review-dots button:focus-visible { outline: 2px solid var(--blue-dark); outline-offset: 3px; }
.review-progress > span { color: var(--muted); font-size: 12px; font-weight: 700; }
.review-progress > span b { color: var(--blue-dark); }

.video-reviews { background: var(--blue); color: var(--white); }
.video-grid { display: grid; gap: 14px; }
.video-card { margin: 0; border-radius: 24px; padding: 13px; background: rgba(255, 255, 255, .1); }
.video-card > div { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border-radius: 16px; background: var(--blue-dark); }
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card h3 { margin: 15px 4px 4px; font-family: "Unbounded", sans-serif; font-size: 14px; }
.more-videos { margin-top: 20px; }
.more-videos summary { width: fit-content; border-radius: 14px; padding: 13px 17px; background: var(--yellow); color: var(--blue-dark); cursor: pointer; font-weight: 800; list-style: none; }
.more-videos summary::-webkit-details-marker { display: none; }
.video-grid--more { margin-top: 18px; }

.offer { background: var(--pink); }
.offer-grid { display: grid; overflow: hidden; border-radius: 34px; background: var(--white); }
.offer-main, .offer-bonus { padding: 31px; }
.offer-main h2 { font-size: clamp(32px, 4.6vw, 56px); }
.offer-main > p:not(.eyebrow) { max-width: 650px; margin: 23px 0; color: var(--muted); line-height: 1.7; }
.offer-price { display: grid; margin: 30px 0; }
.offer-price-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.offer-price strong { color: var(--pink); font-family: "Unbounded", sans-serif; font-size: clamp(38px, 9vw, 65px); letter-spacing: -.05em; }
.offer-price del { color: var(--muted); font-family: "Unbounded", sans-serif; font-size: clamp(20px, 4vw, 30px); font-weight: 700; text-decoration-thickness: 2px; }
.offer-price mark { border-radius: 999px; padding: 7px 10px; background: var(--yellow); color: var(--blue-dark); font-size: 12px; font-weight: 800; }
.offer-price span { color: var(--muted); font-weight: 700; }
.offer-price small { width: fit-content; margin-top: 12px; border-radius: 10px; padding: 8px 11px; background: var(--blue-soft); color: var(--blue-dark); font-size: 12px; font-weight: 700; line-height: 1.45; }
.offer-bonus { background: var(--yellow); }
.bonus-badge { display: inline-block; border-radius: 999px; padding: 7px 11px; background: var(--blue-dark); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.offer-bonus h3 { margin: 25px 0 15px; color: var(--blue-dark); font-family: "Unbounded", sans-serif; font-size: clamp(25px, 6vw, 42px); letter-spacing: -.04em; line-height: 1.15; }
.offer-bonus p { line-height: 1.7; }
.offer-bonus ul { display: grid; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.offer-bonus li { border-radius: 13px; padding: 11px 13px; background: rgba(255, 255, 255, .55); font-weight: 700; }

.payment-modal { width: min(calc(100% - 24px), 1040px); max-height: min(90vh, 860px); overflow: auto; border: 0; border-radius: 30px; padding: 0; background: linear-gradient(135deg, var(--cream), var(--blue-soft)); color: var(--ink); box-shadow: 0 30px 100px rgba(0, 8, 34, .42); }
.payment-modal::backdrop { background: rgba(0, 13, 49, .76); backdrop-filter: blur(7px); }
.payment-modal-grid { display: grid; gap: 30px; padding: 28px 18px 18px; }
.payment-modal-copy { padding: 20px 10px 0; }
.payment-modal-copy h2 { font-size: clamp(28px, 5vw, 48px); }
.payment-modal-copy > p:not(.eyebrow) { margin: 20px 0; color: var(--muted); line-height: 1.7; }
.payment-modal-copy ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.payment-modal-copy li { position: relative; border-bottom: 1px solid var(--line); padding: 0 0 12px 24px; font-weight: 700; line-height: 1.55; }
.payment-modal-copy li::before { position: absolute; top: .55em; left: 2px; width: 9px; height: 9px; border-radius: 3px; background: var(--pink); content: ""; transform: rotate(8deg); }
.payment-modal-close { position: sticky; z-index: 5; top: 12px; float: right; display: grid; width: 42px; height: 42px; margin: 12px 12px -54px 0; border: 0; border-radius: 50%; place-items: center; background: var(--blue-dark); color: var(--white); cursor: pointer; font-size: 25px; line-height: 1; }
.payment-form-shell { overflow: hidden; border-radius: 24px; padding: 8px; background: var(--white); box-shadow: var(--shadow); }
.payment-form-wrapper { width: 100%; min-height: 455px; }
.payment-form-shell noscript { display: block; padding: 20px; color: var(--muted); line-height: 1.6; }

.trial { background: linear-gradient(135deg, var(--cream), var(--blue-soft)); }
.trial-grid { display: grid; gap: 38px; align-items: center; }
.trial-copy > p:not(.eyebrow) { max-width: 680px; margin: 24px 0; font-size: 18px; line-height: 1.7; }
.trial-copy small { display: block; margin-top: 12px; color: var(--muted); }
.trial-art { position: relative; min-height: 390px; }
.trial-art span { position: absolute; inset: 10% 5% 0; border-radius: 50% 50% 38% 62%; background: var(--pink); }
.trial-art img { position: absolute; z-index: 2; inset: auto 0 0; width: 100%; max-height: 390px; object-fit: contain; object-position: bottom; }

.founder { background: var(--lavender); }
.founder-grid { display: grid; gap: 44px; align-items: center; }
.founder-photo { position: relative; min-height: 520px; overflow: hidden; border-radius: 34px; background: var(--yellow); }
.founder-photo span { position: absolute; inset: 10% -15% -20% 20%; border-radius: 50%; background: var(--pink); }
.founder-photo img { position: absolute; z-index: 2; bottom: 0; left: 50%; width: 100%; max-height: 500px; transform: translateX(-50%); object-fit: contain; object-position: bottom; }
.founder-copy ul { display: grid; gap: 9px; margin: 28px 0; padding: 0; list-style: none; }
.founder-copy li { position: relative; border-bottom: 1px solid var(--line); padding: 0 0 13px 25px; line-height: 1.6; }
.founder-copy li::before { position: absolute; top: .55em; left: 2px; width: 9px; height: 9px; border-radius: 50%; background: var(--pink); content: ""; }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.credential { display: grid; min-height: 115px; align-content: space-between; border: 0; border-radius: 18px; padding: 17px; background: var(--white); text-align: left; }
.credential span { color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.credential b { font-family: "Unbounded", sans-serif; font-size: 14px; }

.faq { background: var(--cream); }
.faq-grid { display: grid; gap: 45px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: grid; width: 100%; grid-template-columns: 1fr 38px; gap: 16px; align-items: center; border: 0; padding: 22px 0; background: transparent; text-align: left; }
.faq-item button span { font-family: "Unbounded", sans-serif; font-size: 15px; font-weight: 600; line-height: 1.45; }
.faq-item button b { display: grid; width: 36px; height: 36px; border-radius: 50%; place-items: center; background: var(--pink); color: var(--white); font-size: 21px; font-weight: 500; }
.faq-item button[aria-expanded="true"] b { transform: rotate(45deg); }
.faq-item div { padding: 0 54px 22px 0; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.7; }

.contact { background: var(--pink); }
.contact-card { display: grid; overflow: hidden; border-radius: 34px; padding: 31px 31px 0; background: var(--white); }
.contact-copy > p:not(.eyebrow) { margin: 24px 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.contact-card > img { align-self: end; width: 100%; max-height: 380px; object-fit: contain; object-position: bottom; }

.site-footer { padding-block: 62px; background: var(--blue-dark); color: var(--white); }
.footer-grid { display: grid; gap: 35px; }
.brand--footer b { color: var(--white); }
.brand--footer small { color: rgba(255, 255, 255, .55); }
.footer-grid p { margin: 20px 0 0; color: rgba(255, 255, 255, .58); font-size: 12px; line-height: 1.7; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid h2 { margin: 0 0 7px; color: var(--yellow); font-family: "Unbounded", sans-serif; font-size: 13px; letter-spacing: 0; }
.footer-grid a:not(.brand) { color: rgba(255, 255, 255, .75); font-size: 13px; }

.lightbox { width: min(94vw, 1100px); max-height: 92vh; border: 0; border-radius: 22px; padding: 56px 14px 14px; background: var(--white); box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgba(1, 16, 44, .82); }
.lightbox > button { position: absolute; top: 10px; right: 12px; display: grid; width: 38px; height: 38px; border: 0; border-radius: 50%; place-items: center; background: var(--blue-dark); color: var(--white); font-size: 24px; }
.lightbox img { width: 100%; max-height: calc(92vh - 75px); object-fit: contain; }

.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal-up.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-up { opacity: 1; transform: none; transition: none; }
  .review-proof img, .slider-arrow, .review-dots button { transition: none; }
}

@media (min-width: 700px) {
  .page-shell { width: min(100% - 64px, var(--shell)); }
  .section-pad { padding-block: 110px; }
  .hero-grid { padding-block: 90px 60px; }
  .hero-actions { flex-direction: row; align-items: center; }
  .outcome-grid { grid-template-columns: repeat(3, 1fr); }
  .outcome-card { min-height: 310px; }
  .student-voices { grid-template-columns: minmax(250px, .75fr) 1.25fr; padding: 35px 45px 0; }
  .student-voices > div { padding-block: 30px 55px; }
  .system-grid { grid-template-columns: repeat(2, 1fr); }
  .system-card--wide { grid-column: 1 / 3; }
  .program-heading { grid-template-columns: 1.25fr .75fr; align-items: end; }
  .roadmap-step { grid-template-columns: 70px 1fr; padding: 32px 0; }
  .roadmap-step > span { width: 54px; height: 54px; }
  .grade-intro { grid-template-columns: 1.2fr .8fr; align-items: end; }
  .grade-card { padding: 32px; }
  .readiness-heading { grid-template-columns: 1fr 1fr; align-items: end; padding: 28px; }
  .readiness-grid { grid-template-columns: repeat(3, 1fr); }
  .grade-fit { grid-template-columns: 220px 1fr; align-items: center; padding: 28px; }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-card--large { grid-row: span 2; min-height: 503px; }
  .review-story-copy { padding: 42px; }
  .review-proof { min-height: 480px; padding: 34px 34px 82px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid--more { grid-template-columns: repeat(3, 1fr); }
  .offer-main, .offer-bonus { padding: 48px; }
  .offer-grid { grid-template-columns: 1.08fr .92fr; }
  .payment-modal-grid { grid-template-columns: .85fr 1.15fr; gap: 46px; padding: 38px; }
  .payment-modal-copy { padding: 36px 0 0; }
  .payment-form-shell { padding: 18px; }
  .trial-grid { grid-template-columns: 1.2fr .8fr; }
  .credentials { max-width: 500px; }
  .contact-card { grid-template-columns: 1.25fr .75fr; padding: 50px 50px 0; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

@media (min-width: 980px) {
  .desktop-nav { display: flex; gap: 19px; margin-left: auto; }
  .desktop-nav a, .login-link { font-size: 12px; font-weight: 800; }
  .header-actions { display: flex; align-items: center; gap: 17px; }
  .menu-button { display: none; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 26px; align-items: center; min-height: calc(100vh - 72px); padding-block: 52px 30px; }
  .hero h1 { font-size: clamp(62px, 6.2vw, 94px); }
  .hero-copy { z-index: 3; }
  .hero-art { min-height: 760px; }
  .hero-frame--back { top: 11%; right: -13%; width: 105%; }
  .hero-frame--middle { top: 22%; right: -2%; width: 82%; }
  .hero-art > img { left: 45%; width: min(148%, 980px); max-height: 840px; }
  .system-grid { grid-template-columns: repeat(3, 1fr); }
  .system-card--wide { grid-column: span 2; }
  .system-card--accent { grid-column: span 2; }
  .welcome-grid { grid-template-columns: 1.25fr .75fr; }
  .welcome-art { min-height: 570px; }
  .welcome-art img { max-height: 560px; }
  .lesson-grid { grid-template-columns: .85fr 1.15fr; gap: 75px; }
  .lesson-art { min-height: 590px; }
  .lesson-art img { min-height: 570px; }
  .quote-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .quote-card--large { grid-row: span 2; }
  .quote-card--dark { grid-column: 2 / 4; }
  .review-story { grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); }
  .review-story-copy { min-height: 580px; padding: 48px; }
  .review-proof { min-height: 580px; border-top: 0; border-left: 1px solid var(--line); padding: 42px 34px 88px; }
  .review-proof img { max-height: 465px; }
  .review-proof--portrait img { width: auto; max-width: 100%; }
  .video-grid { grid-template-columns: repeat(4, 1fr); }
  .video-grid--more { grid-template-columns: repeat(3, 1fr); }
  .founder-grid { grid-template-columns: .85fr 1.15fr; gap: 80px; }
  .founder-photo { min-height: 760px; }
  .founder-photo img { max-height: 730px; }
  .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 80px; }
}
