:root {
  --navy: #001f3d;
  --navy-soft: rgba(0, 31, 61, 0.06);
  --navy-line: rgba(0, 31, 61, 0.16);
  --gold: #c9a14a;
  --gold-soft: rgba(201, 161, 74, 0.12);
  --white: #ffffff;
  --background: #ffffff;
  --muted: #ffffff;
  --text: #001f3d;
  --text-soft: rgba(0, 31, 61, 0.72);
  --text-faint: rgba(0, 31, 61, 0.54);
  --border: rgba(0, 31, 61, 0.12);
  --shadow: 0 18px 50px rgba(0, 31, 61, 0.08);
  --font-sans: "DM Sans", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-script: "Great Vibes", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 L80 0' stroke='%23001F3D' stroke-width='0.6' stroke-opacity='0.055'/%3E%3Cpath d='M-40 80 L40 0' stroke='%23001F3D' stroke-width='0.5' stroke-opacity='0.035'/%3E%3Cpath d='M40 80 L120 0' stroke='%23001F3D' stroke-width='0.5' stroke-opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(201, 161, 74, 0.48);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

strong {
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.narrow {
  width: min(100% - 48px, 768px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding-block: 20px;
  transition: background-color 220ms ease, box-shadow 220ms ease, padding 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 31, 61, 0.08);
}

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

.logo-button,
.footer-logo {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.logo-button img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.logo-button:hover img,
.footer-logo:hover img {
  opacity: 0.78;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav button,
.mobile-nav button {
  color: var(--text-soft);
  border: 0;
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav button {
  position: relative;
  padding: 8px 12px;
  transition: color 200ms ease, background-color 200ms ease;
}

.desktop-nav button::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0);
  transition: transform 240ms ease, opacity 240ms ease;
}

.desktop-nav button:hover,
.desktop-nav button.is-active {
  color: var(--navy);
}

.desktop-nav button:hover::after,
.desktop-nav button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.desktop-nav .nav-cta {
  margin-left: 12px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(201, 161, 74, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.desktop-nav .nav-cta::after {
  display: none;
}

.desktop-nav .nav-cta:hover {
  color: var(--white);
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(201, 161, 74, 0.25);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  transform: translateY(-7px);
}

.menu-icon::after {
  transform: translateY(7px);
}

.menu-toggle.is-open .menu-icon {
  background: transparent;
}

.menu-toggle.is-open .menu-icon::before {
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-icon::after {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 22px;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav button {
  width: 100%;
  padding: 12px;
  text-align: left;
}

.mobile-nav button:hover,
.mobile-nav button.is-active {
  color: var(--navy);
  background: var(--navy-soft);
}

.mobile-nav .mobile-cta {
  margin-top: 8px;
  text-align: center;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 132px 0 96px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(120px);
}

.hero-glow-one {
  top: -8%;
  left: -5%;
  width: 45vw;
  height: 45vw;
  background: rgba(0, 31, 61, 0.05);
}

.hero-glow-two {
  right: -5%;
  bottom: -10%;
  width: 38vw;
  height: 38vw;
  background: rgba(201, 161, 74, 0.12);
}

.hero-mark {
  position: absolute;
  top: 112px;
  right: 8%;
  width: 142px;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 744px) minmax(320px, 360px);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(0, 31, 61, 0.18);
  border-radius: 999px;
  background: rgba(0, 31, 61, 0.05);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.hero-title {
  width: min(100%, 744px);
  margin-top: 24px;
}

.hero-title h1 {
  color: var(--navy);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-title span {
  display: block;
  width: 100%;
  margin-top: -4px;
  padding-right: 40px;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 0.95;
  text-align: right;
}

.hero-subhead {
  max-width: 690px;
  margin-top: 28px;
  color: rgba(0, 31, 61, 0.82);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.42;
}

.hero-body {
  max-width: 640px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-gold {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(201, 161, 74, 0.2);
}

.button-gold:hover {
  background: var(--gold);
  box-shadow: 0 16px 32px rgba(201, 161, 74, 0.28);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(0, 31, 61, 0.25);
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 31, 61, 0.16);
}

.button-navy {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 31, 61, 0.16);
}

.button-navy:hover {
  background: var(--navy);
  box-shadow: 0 16px 32px rgba(0, 31, 61, 0.24);
}

.button.block {
  width: 100%;
}

.button.large {
  min-height: 64px;
  padding-inline: 40px;
  font-size: 20px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.trust-strip span,
.feature-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 31, 61, 0.76);
  font-size: 15px;
  font-weight: 700;
}

.trust-strip span::before,
.feature-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold);
}

.hero-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(0, 31, 61, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(0, 31, 61, 0.07);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border-radius: 16px;
  background: var(--gold-soft);
}

.card-kicker,
.section-label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.2;
}

.hero-card p:not(.card-kicker) {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.64;
}

.hero-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(0, 31, 61, 0.8);
  line-height: 1.45;
}

.hero-card li::before,
.included-card li::before,
.price-card li::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

section {
  scroll-margin-top: 92px;
}

.relatable {
  padding: 112px 0 144px;
  background: rgba(0, 31, 61, 0.035);
}

.relatable h2,
.section-intro h2,
.credibility h2,
.included h2,
.meet h2,
.pricing h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.25;
}

.relatable h2 {
  margin-bottom: 56px;
  text-align: center;
}

.split-thought {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}

.split-thought.reverse {
  flex-direction: row-reverse;
}

.split-thought.reverse p {
  text-align: right;
}

.split-thought p,
.center-copy,
.body-stack p,
.section-intro p,
.included p,
.support p,
.meet-copy p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.ornament {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: rgba(0, 31, 61, 0.5);
}

.ornament.second {
  color: rgba(201, 161, 74, 0.64);
}

.ornament svg,
.divider svg,
.card-icon svg,
.support-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ornament svg {
  stroke-width: 1.6;
}

.ornament .faint,
.divider .faint {
  opacity: 0.58;
}

.divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 40px 0;
  opacity: 0.34;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--navy);
}

.divider span {
  width: 80px;
  height: 68px;
  color: var(--navy);
}

.center-pull {
  margin: 48px auto;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 30px);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

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

.credibility {
  padding: 96px 0 128px;
  background: rgba(0, 31, 61, 0.045);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 64px;
}

.credibility-copy {
  display: grid;
  gap: 28px;
}

.body-stack {
  display: grid;
  gap: 24px;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.image-frame,
.meet-photo {
  position: relative;
}

.image-frame::before,
.meet-photo::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  z-index: -1;
  border-radius: 16px;
  background: var(--gold-soft);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  z-index: -1;
  border: 1px solid var(--navy-line);
  border-radius: 16px;
}

.image-frame img {
  width: 100%;
  max-height: 600px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow);
}

.outcomes {
  padding: 96px 0 128px;
  background: rgba(0, 31, 61, 0.035);
}

.section-intro {
  max-width: 768px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-intro p {
  margin-top: 24px;
}

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

.feature-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(0, 31, 61, 0.04);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 161, 74, 0.28);
  box-shadow: 0 18px 44px rgba(0, 31, 61, 0.08);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--gold);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
}

.feature-card p {
  color: var(--text-soft);
  line-height: 1.65;
}

.fit {
  padding: 96px 0 128px;
  background: var(--navy);
  color: var(--white);
}

.section-intro.light h2,
.section-intro.light p {
  color: var(--white);
}

.section-intro.light p {
  color: rgba(255, 255, 255, 0.8);
}

.section-intro.light .medium {
  color: var(--white);
  font-weight: 700;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 48px;
  max-width: 896px;
  margin: 0 auto;
}

.fit-grid div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  transition: background-color 200ms ease, color 200ms ease;
}

.fit-grid div:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.fit-grid span {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 900;
}

.pill-note {
  width: fit-content;
  max-width: 100%;
  margin: 64px auto 0;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.curriculum {
  padding: 96px 0 128px;
  background: rgba(0, 31, 61, 0.035);
}

.accordion-wrap {
  width: min(100% - 48px, 896px);
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 18px rgba(0, 31, 61, 0.04);
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  min-height: 70px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  transition: background-color 200ms ease;
}

.accordion-item button:hover,
.accordion-item.is-open button {
  background: rgba(0, 31, 61, 0.045);
}

.chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.accordion-item.is-open .chevron {
  transform: rotate(225deg);
}

.accordion-panel {
  padding: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  line-height: 1.65;
}

.accordion-panel ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.accordion-panel li {
  display: flex;
  gap: 12px;
}

.accordion-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.included {
  padding: 96px 0 128px;
  background: rgba(0, 31, 61, 0.045);
}

.included-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.included h2 {
  margin-bottom: 24px;
}

.included-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 31, 61, 0.04);
}

.included-card h3 {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
}

.included-card ul,
.price-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.included-card li,
.price-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
  line-height: 1.45;
}

.support {
  padding: 96px 0 128px;
  background: rgba(0, 31, 61, 0.055);
}

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

.support-grid article {
  display: flex;
  min-height: 312px;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  border: 1px solid rgba(0, 31, 61, 0.1);
  border-radius: 16px;
  background: rgba(0, 31, 61, 0.05);
  text-align: center;
  transition: background-color 200ms ease, transform 200ms ease;
}

.support-grid article:hover {
  transform: translateY(-2px);
  background: rgba(0, 31, 61, 0.09);
}

.support-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0, 31, 61, 0.09);
}

.support-icon.gold {
  background: var(--gold);
}

.support-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2;
}

.support-grid h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 26px;
}

.meet {
  padding: 96px 0 128px;
  background: rgba(0, 31, 61, 0.035);
}

.meet-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.meet-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow);
}

.meet-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(38px, 4.2vw, 52px);
}

blockquote {
  position: relative;
  margin: 36px 0 0;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
}

blockquote::before {
  content: "“";
  position: absolute;
  top: -24px;
  left: -16px;
  color: rgba(201, 161, 74, 0.22);
  font-size: 64px;
  font-style: normal;
}

.pricing {
  padding: 96px 0 128px;
  background: rgba(201, 161, 74, 0.055);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 544px;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.main-offer {
  border: 2px solid rgba(0, 31, 61, 0.18);
  box-shadow: var(--shadow);
}

.add-on {
  border: 1px solid var(--border);
  background: rgba(0, 31, 61, 0.04);
}

.corner-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 16px;
  border-bottom-left-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.3;
}

.main-offer h3 {
  padding-right: 74px;
}

.price-range {
  margin: 24px 0;
  color: var(--navy);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.price-range span {
  color: var(--text-faint);
  font-size: 18px;
  font-weight: 400;
}

.price-card ul,
.small-stack {
  flex: 1;
}

.price-card .button {
  width: 100%;
  min-height: 56px;
  margin-top: 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
}

.small-stack {
  display: grid;
  gap: 18px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.small-disclaimer {
  color: var(--text-faint);
  font-style: italic;
}

.final-cta {
  padding: 96px 0 128px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.22;
}

.final-cta p {
  max-width: 840px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.62;
}

.final-cta .button {
  margin-top: 44px;
}

.final-cta .education-disclaimer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 48px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-footer p {
  margin-top: 22px;
  color: var(--text-faint);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 84px;
}

.footer-links div {
  display: grid;
  gap: 12px;
}

.footer-links h4 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
}

.footer-links button,
.footer-links a {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 14px;
  text-align: left;
  transition: color 180ms ease;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--navy);
}

.footer-bottom {
  display: grid;
  gap: 10px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  color: rgba(0, 31, 61, 0.48);
  font-size: 12px;
  line-height: 1.7;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 31, 61, 0.42);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(100%, 448px);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 31, 61, 0.2);
}

.modal h2 {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.15;
}

.modal p {
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.55;
}

.modal form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.modal input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  color: var(--text);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-faint);
  font-size: 26px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--navy);
  background: var(--navy-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-grid .feature-card:nth-child(2) {
  transition-delay: 100ms;
}

.card-grid .feature-card:nth-child(3) {
  transition-delay: 200ms;
}

.card-grid .feature-card:nth-child(4) {
  transition-delay: 300ms;
}

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

  .hero-copy {
    text-align: center;
  }

  .hero-title {
    margin-inline: auto;
  }

  .hero-title h1 {
    white-space: normal;
  }

  .hero-title span {
    text-align: right;
    padding-right: 12px;
  }

  .hero-body,
  .hero-subhead {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-strip {
    justify-content: center;
  }

  .hero-card {
    width: min(100%, 560px);
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    align-items: flex-start;
    padding-top: 124px;
  }

  .hero-grid,
  .two-column,
  .included-grid,
  .meet-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .two-column,
  .meet-grid {
    gap: 56px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-title {
    margin-inline: auto;
  }

  .hero-title h1 {
    white-space: normal;
  }

  .hero-title span {
    text-align: right;
    padding-right: 12px;
  }

  .hero-body,
  .hero-subhead {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-strip {
    justify-content: center;
  }

  .hero-card {
    width: min(100%, 560px);
    margin: 0 auto;
    text-align: left;
  }

  .hero-mark {
    display: none;
  }

  .image-frame {
    max-width: 560px;
    margin-inline: auto;
    order: -1;
  }

  .included-card ul,
  .support-grid,
  .card-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .support-grid article {
    min-height: auto;
  }

  .meet-photo {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow,
  .accordion-wrap {
    width: min(100% - 48px, 100%);
  }

  .site-header {
    padding-block: 18px;
  }

  .logo-button img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 100vh;
    padding: 116px 0 76px;
  }

  .hero-title h1 {
    font-size: 48px;
    line-height: 1.08;
  }

  .hero-title span {
    font-size: 42px;
    margin-top: -8px;
  }

  .hero-subhead {
    font-size: 21px;
  }

  .hero-body,
  .split-thought p,
  .center-copy,
  .body-stack p,
  .section-intro p,
  .included p,
  .support p,
  .meet-copy p {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

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

  .trust-strip {
    gap: 12px 18px;
  }

  .trust-strip span {
    font-size: 14px;
  }

  .hero-card,
  .feature-card,
  .included-card,
  .support-grid article,
  .price-card,
  .modal {
    border-radius: 12px;
    padding: 28px;
  }

  .relatable,
  .credibility,
  .outcomes,
  .fit,
  .curriculum,
  .included,
  .support,
  .meet,
  .pricing,
  .final-cta {
    padding: 76px 0 96px;
  }

  .relatable h2 {
    margin-bottom: 42px;
  }

  .split-thought,
  .split-thought.reverse {
    flex-direction: column;
    gap: 18px;
  }

  .split-thought.reverse p {
    text-align: left;
  }

  .ornament {
    display: none;
  }

  .divider {
    margin: 32px 0;
  }

  .center-pull {
    margin-block: 38px;
  }

  .feature-row {
    gap: 12px 18px;
  }

  .fit-grid div {
    padding: 14px 0;
  }

  .pill-note {
    border-radius: 12px;
    font-size: 16px;
  }

  .accordion-item button {
    min-height: 64px;
    padding: 18px 20px;
    font-size: 18px;
  }

  .included-card ul {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
    gap: 56px;
  }

  .button.large {
    width: 100%;
    padding-inline: 24px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
