:root {
  --navy-950: #081d2f;
  --navy-900: #102a43;
  --navy-800: #173f5f;
  --teal-700: #087f7b;
  --teal-600: #0b928c;
  --teal-100: #dff4f1;
  --gold-500: #f2b84b;
  --gold-100: #fff2cf;
  --coral-500: #e26d5a;
  --blue-100: #e8f1f8;
  --sky-100: #e9f6ff;
  --lilac-100: #eeeaff;
  --lilac-500: #7264d8;
  --cream: #f7f4ec;
  --paper: #fffefa;
  --white: #ffffff;
  --ink: #182532;
  --muted: #536476;
  --line: #dce4e8;
  --shadow: 0 28px 70px rgba(8, 29, 47, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shell: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
svg { display: block; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy-900); }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50% 50% 48% 52% / 42% 45% 55% 58%;
  color: var(--white);
  background: var(--teal-700);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  transform: rotate(-3deg);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; letter-spacing: -0.02em; }
.brand-copy span { margin-top: 4px; color: var(--teal-700); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy-900);
  background: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
}
.menu-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.site-nav {
  position: fixed;
  inset: 74px 0 auto;
  display: none;
  padding: 18px 20px 26px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 30px rgba(8, 29, 47, 0.08);
}
.site-nav.open { display: grid; }
.site-nav a { padding: 12px; color: var(--navy-900); font-size: 15px; font-weight: 700; text-decoration: none; }
.site-nav a:hover { color: var(--teal-700); }
.site-nav .nav-cta { margin-top: 8px; border-radius: 10px; color: var(--white); background: var(--navy-900); text-align: center; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--navy-900);
  background:
    radial-gradient(circle at 7% 3%, rgba(114, 100, 216, 0.16), transparent 25%),
    radial-gradient(circle at 93% 10%, rgba(11, 146, 140, 0.28), transparent 31%),
    linear-gradient(135deg, #fffefa 0%, #f7fbfa 38%, #def2ee 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 520px;
  height: 520px;
  right: -310px;
  bottom: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,100,216,.13), rgba(114,100,216,0) 68%);
}
.hero-grid { position: relative; z-index: 2; display: grid; gap: 50px; padding-block: 64px 58px; }
.hero-copy { max-width: 700px; }
.eyebrow, .section-label {
  margin: 0 0 16px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--teal-700); }
.eyebrow span { width: 28px; height: 2px; background: var(--gold-500); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -0.035em; line-height: 1.06; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(2.75rem, 9vw, 5.8rem); font-weight: 500; }
h1 em {
  color: var(--teal-700);
  font-style: normal;
  background: linear-gradient(100deg, var(--teal-700), #4b7fc0 60%, var(--lilac-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 { margin-bottom: 18px; color: var(--navy-900); font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 500; }
h3 { color: var(--navy-900); line-height: 1.25; }
.hero-lead { max-width: 680px; margin-bottom: 28px; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.button-row { display: flex; flex-direction: column; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--gold-500); }
.button-primary:hover { background: #ffc85f; }
.button-secondary { color: var(--navy-900); border-color: rgba(16,42,67,.18); background: rgba(255,255,255,.75); }
.button-secondary:hover { border-color: var(--teal-700); background: var(--white); }
.hero-note { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0 0; color: var(--muted); font-size: 14px; }
.hero-note svg { flex: 0 0 20px; width: 20px; margin-top: 3px; fill: none; stroke: var(--teal-700); stroke-width: 2.5; }
.hero-visual { position: relative; min-height: 390px; }
.visual-ring {
  position: absolute;
  inset: 10% 7% 3%;
  border: 1px solid rgba(8, 127, 123, 0.28);
  border-radius: 48% 52% 41% 59% / 47% 39% 61% 53%;
  transform: rotate(-8deg);
}
.aspire-badge {
  position: absolute;
  inset: 48px 26px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border: 1px solid rgba(8,127,123,.16);
  border-radius: 44% 56% 45% 55% / 50% 43% 57% 50%;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 78% 18%, rgba(242,184,75,.28), transparent 24%),
    radial-gradient(circle at 15% 90%, rgba(114,100,216,.11), transparent 28%),
    linear-gradient(145deg, #ffffff, #edf9f7);
  box-shadow: 0 34px 90px rgba(23, 63, 95, 0.16);
  transform: rotate(2deg);
  animation: badge-drift 8s ease-in-out infinite;
}
.badge-kicker { color: var(--teal-700); font-size: 13px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.aspire-badge strong { max-width: 280px; margin-block: 10px 12px; font-family: Georgia, serif; font-size: clamp(2.2rem, 10vw, 3.7rem); font-weight: 500; line-height: .98; letter-spacing: -.05em; }
.badge-line { width: 58px; height: 4px; margin-bottom: 14px; border-radius: 4px; background: var(--gold-500); }
.aspire-badge > span:last-child { color: var(--muted); font-size: 13px; font-weight: 700; }
.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(16,42,67,.08);
  border-radius: 13px;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23,63,95,.14);
  font-size: 12px;
  line-height: 1.3;
}
.floating-card span:last-child { display: grid; }
.floating-card-one { left: 0; top: 30px; }
.floating-card-two { right: 0; bottom: 28px; }
.mini-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 9px; }
.mini-icon svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.mini-icon-teal { color: var(--teal-700); background: var(--teal-100); }
.mini-icon-gold { color: #9a6400; background: var(--gold-100); }
.dot-cluster {
  position: absolute;
  right: 9%;
  top: 10px;
  width: 62px;
  height: 62px;
  opacity: .5;
  background-image: radial-gradient(var(--lilac-500) 2px, transparent 2px);
  background-size: 12px 12px;
}
.hero-orb { position: absolute; border: 1px solid rgba(8,127,123,.12); border-radius: 50%; }
.hero-orb-one { width: 260px; height: 260px; right: -120px; top: -70px; }
.hero-orb-two { width: 180px; height: 180px; left: -130px; bottom: 45px; }
.hero-band {
  position: relative;
  z-index: 2;
  border-top: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(158,229,223,.2), transparent 25%),
    linear-gradient(105deg, var(--navy-900), #135e6c 58%, var(--teal-700));
  backdrop-filter: blur(12px);
}
.stat-row { display: grid; }
.stat-row div { position: relative; display: grid; gap: 2px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.stat-row div::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 3px;
  left: 0;
  top: 12px;
  border-radius: 4px;
  background: var(--gold-500);
}
.stat-row div:last-child { border-bottom: 0; }
.stat-row strong { color: var(--white); padding-top: 7px; font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.stat-row span { color: #c7e2e3; font-size: 13px; }

.section { padding-block: 78px; }
.section-white { background: var(--white); }
.split-intro { display: grid; gap: 24px; }
.intro-copy { color: var(--muted); font-size: 1.05rem; }
.intro-copy p:last-child { margin-bottom: 0; }
.level-card {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 52px;
  padding: 28px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(242,184,75,.28), transparent 24%),
    radial-gradient(circle at 5% 100%, rgba(114,100,216,.28), transparent 27%),
    linear-gradient(125deg, var(--navy-900), #155b6b 56%, var(--teal-700));
  box-shadow: 0 28px 75px rgba(16,42,67,.18);
}
.level-number {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 18px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
  box-shadow: 10px 10px 0 rgba(255,255,255,.16);
}
.level-card .section-label { color: #9ee5df; }
.level-card h3 { margin-bottom: 10px; color: var(--white); font-family: Georgia, serif; font-size: 1.8rem; font-weight: 500; }
.level-card p:last-child { margin-bottom: 0; color: #d9e7ec; }
.why-section {
  background:
    radial-gradient(circle at 96% 6%, rgba(114,100,216,.09), transparent 20%),
    linear-gradient(180deg, #faf8f2, #f6f4ec);
}
.section-heading { display: grid; gap: 10px; margin-bottom: 34px; }
.section-heading > p { max-width: 590px; margin-bottom: 0; color: var(--muted); }
.benefit-grid { display: grid; gap: 14px; }
.benefit-card {
  position: relative;
  min-height: 220px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(16,42,67,.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 30px rgba(23,63,95,.05);
}
.benefit-card:nth-child(2) { background: linear-gradient(145deg, #ffffff, var(--sky-100)); }
.benefit-card:nth-child(3) { background: linear-gradient(145deg, #ffffff, #e9f7f2); }
.benefit-card:nth-child(4) { background: linear-gradient(145deg, #ffffff, var(--gold-100)); }
.benefit-card:nth-child(5) { background: linear-gradient(145deg, #ffffff, var(--lilac-100)); }
.benefit-card:nth-child(6) { background: linear-gradient(145deg, #ffffff, #fbe7e3); }
.benefit-card:nth-child(7) { background: linear-gradient(145deg, #ffffff, var(--blue-100)); }
.benefit-card::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  right: -34px;
  bottom: -34px;
  border-radius: 50%;
  background: var(--teal-100);
}
.benefit-card:nth-child(3)::after { background: var(--sky-100); }
.benefit-card:nth-child(4)::after { background: var(--gold-100); }
.benefit-card:nth-child(5)::after { background: var(--lilac-100); }
.benefit-card:nth-child(6)::after { background: #fbe4df; }
.benefit-card:nth-child(7)::after { background: var(--blue-100); }
.benefit-number { display: inline-block; margin-bottom: 32px; color: var(--teal-700); font-size: 12px; font-weight: 850; letter-spacing: .14em; }
.benefit-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.benefit-featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(158,229,223,.28), transparent 35%),
    linear-gradient(145deg, var(--navy-900), #15576a);
  box-shadow: 0 24px 55px rgba(16,42,67,.18);
}
.benefit-featured h3, .benefit-featured .benefit-number { color: var(--white); }
.benefit-featured p { color: #cbd9e2; }
.benefit-featured::after { background: var(--gold-500); }

.fit-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(114,100,216,.32), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(242,184,75,.28), transparent 34%),
    linear-gradient(125deg, #16445f, #0e7075 58%, #4963a9);
}
.fit-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -230px;
  top: -190px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.fit-grid { display: grid; gap: 36px; }
.fit-copy { position: relative; z-index: 2; }
.fit-copy h2 { color: var(--white); }
.fit-copy > p:not(.section-label) { color: #d7e7ed; font-size: 1.05rem; }
.section-label-light { color: #9ee5df; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-500); font-weight: 800; text-underline-offset: 5px; }
.check-panel {
  position: relative;
  z-index: 2;
  padding: 26px;
  border: 1px solid rgba(16,42,67,.08);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 80px rgba(4,24,40,.28);
  backdrop-filter: blur(12px);
}
.check-panel h3 { margin-bottom: 20px; font-size: 1.2rem; }
.check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; color: #3f5363; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 12px;
  font-weight: 900;
}
.study-section { background: linear-gradient(180deg, var(--white), #fbfdfd); }
.centred-heading { text-align: left; }
.subject-grid { display: grid; gap: 16px; }
.subject-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(16,42,67,.08);
  border-top: 6px solid transparent;
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.subject-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(8,29,47,.1); }
.subject-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: auto; }
.subject-icon { display: grid; width: 55px; height: 55px; place-items: center; border-radius: 15px; }
.subject-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.level-pill { padding: 5px 10px; border-radius: 100px; color: var(--navy-900); background: rgba(255,255,255,.72); font-size: 11px; font-weight: 850; }
.subject-card h3 { margin: 28px 0 10px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.subject-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.subject-digital { background: #e8f4f8; }
.subject-digital {
  color: var(--white);
  border-top-color: #58d0c7;
  background:
    radial-gradient(circle at 95% 5%, rgba(158,229,223,.22), transparent 30%),
    linear-gradient(145deg, var(--navy-900), #185f71);
  box-shadow: 0 22px 50px rgba(16,42,67,.17);
}
.subject-digital h3 { color: var(--white); }
.subject-digital p { color: #d2e5eb; }
.subject-digital .level-pill { color: var(--white); background: rgba(255,255,255,.13); }
.subject-digital .subject-icon { color: #bdf2ed; background: rgba(255,255,255,.12); }
.subject-care { border-top-color: var(--coral-500); background: #fbece8; }
.subject-care .subject-icon { color: #aa4b3b; background: #f7d3cb; }
.subject-english { border-top-color: var(--teal-600); background: #e8f5ef; }
.subject-english .subject-icon { color: #227150; background: #cce9db; }
.subject-maths { border-top-color: var(--gold-500); background: #fff4d9; }
.subject-maths .subject-icon { color: #92630d; background: #f8dfa7; }

.entry-section {
  background:
    radial-gradient(circle at 15% 100%, rgba(11,146,140,.1), transparent 26%),
    var(--cream);
}
.entry-card { display: grid; padding: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.entry-label {
  display: grid;
  min-height: 220px;
  place-content: center;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 28% 18%, rgba(242,184,75,.34), transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(158,229,223,.25), transparent 38%),
    linear-gradient(145deg, #0e6f72, var(--navy-900));
  text-align: center;
}
.entry-label span { font-family: Georgia, serif; font-size: clamp(4rem, 19vw, 7rem); line-height: .9; letter-spacing: -.06em; }
.entry-label p { margin: 14px 0 0; color: #bdd1dc; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.entry-copy { padding: 30px; }
.entry-copy > p:not(.section-label) { color: var(--muted); font-size: 1.03rem; }
.reassurance { display: flex; gap: 14px; margin-top: 26px; padding: 18px; border-radius: 14px; background: var(--teal-100); }
.reassurance svg { flex: 0 0 28px; width: 28px; fill: none; stroke: var(--teal-700); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.reassurance p { margin: 0; color: #2e5455; font-size: 14px; }

.pathway-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(114,100,216,.12), transparent 23%),
    radial-gradient(circle at 4% 90%, rgba(242,184,75,.19), transparent 27%),
    linear-gradient(180deg, #fffefa, #fbf3df);
}
.pathway { display: grid; gap: 14px; }
.path-step { padding: 22px; border-radius: var(--radius-md); }
.path-step span { display: block; margin-bottom: 4px; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.path-step strong { font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.path-start { color: var(--navy-900); border: 1px solid #d8d1f0; background: var(--lilac-100); }
.path-start span { color: var(--muted); }
.path-aspire {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-700), #365aa9);
  box-shadow: 8px 8px 0 rgba(114,100,216,.18);
}
.path-aspire span { color: #bfe9e5; }
.path-arrow { color: var(--gold-500); font-family: Georgia, serif; font-size: 34px; line-height: 1; text-align: center; transform: rotate(90deg); }
.path-options { display: grid; gap: 10px; }
.path-options div { position: relative; display: grid; padding: 18px 18px 18px 56px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.path-options div:nth-child(1) { border-left: 5px solid var(--teal-600); }
.path-options div:nth-child(2) { border-left: 5px solid var(--lilac-500); }
.path-options div:nth-child(3) { border-left: 5px solid var(--coral-500); }
.path-options div:nth-child(4) { border-left: 5px solid var(--gold-500); }
.path-options span { position: absolute; left: 16px; top: 18px; color: var(--teal-700); font-size: 11px; font-weight: 850; }
.path-options strong { color: var(--navy-900); font-size: 16px; }
.path-options small { color: var(--muted); font-size: 12px; }
.progress-note { margin: 30px 0 0; padding: 18px 20px; border-left: 4px solid var(--gold-500); color: var(--navy-900); background: var(--gold-100); font-weight: 700; }

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 14%, rgba(114,100,216,.42), transparent 25%),
    radial-gradient(circle at 92% 85%, rgba(158,229,223,.28), transparent 29%),
    linear-gradient(125deg, var(--navy-900), #145d6b 52%, #176f75);
  text-align: center;
}
.cta-inner { position: relative; z-index: 2; max-width: 780px; }
.final-cta h2 { color: var(--white); }
.final-cta .cta-inner > p:not(.section-label, .cta-small) { max-width: 600px; margin: 0 auto 28px; color: #d7e7ed; font-size: 1.05rem; }
.button-light {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 14px 34px rgba(3,22,36,.24);
  cursor: pointer;
  font-family: inherit;
}
.button-light:hover { background: #ffc95f; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.email-address { margin: 18px auto 0 !important; color: #d7e7ed !important; font-size: 15px !important; }
.email-address strong { color: var(--white); font-weight: 800; }
.copy-status { min-height: 22px; margin: 7px auto 0 !important; color: #ffe3a3 !important; font-size: 13px !important; font-weight: 800; }
.final-cta:focus { outline: none; }
.cta-small { max-width: 620px; margin: 20px auto 0; color: #aec7d1; font-size: 13px; }
.cta-shape { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); }
.cta-shape-one { width: 300px; height: 300px; left: -140px; top: -120px; }
.cta-shape-two { width: 380px; height: 380px; right: -180px; bottom: -220px; }
.site-footer { color: var(--muted); border-top: 1px solid var(--line); background: var(--white); }
.footer-inner { display: grid; gap: 24px; padding-block: 32px; }
.brand-footer { color: var(--navy-900); }
.brand-footer .brand-mark { background: var(--gold-500); color: var(--navy-950); }
.brand-footer .brand-copy span { color: var(--teal-700); }
.footer-inner p { max-width: 520px; margin: 0; font-size: 13px; }
.back-top { color: var(--navy-900); font-size: 13px; font-weight: 800; text-underline-offset: 4px; }

@keyframes badge-drift {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-8px); }
}

@media (min-width: 600px) {
  .shell { width: min(calc(100% - 64px), var(--shell)); }
  .button-row { flex-direction: row; flex-wrap: wrap; }
  .button { min-width: 190px; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .stat-row div { padding: 28px 24px 22px; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 0; }
  .stat-row div::before { left: 24px; top: 15px; }
  .stat-row div:first-child { padding-left: 0; }
  .stat-row div:first-child::before { left: 0; }
  .stat-row div:last-child { border-right: 0; }
  .split-intro { grid-template-columns: .95fr 1.05fr; gap: 60px; }
  .level-card { grid-template-columns: auto 1fr; align-items: center; gap: 34px; padding: 36px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .subject-grid { grid-template-columns: repeat(2, 1fr); }
  .entry-card { grid-template-columns: .8fr 1.5fr; }
  .footer-inner { grid-template-columns: auto 1fr auto; align-items: center; }
}

@media (min-width: 900px) {
  .nav-wrap { min-height: 82px; }
  .menu-button { display: none; }
  .site-nav { position: static; display: flex; align-items: center; gap: 3px; padding: 0; border: 0; background: none; box-shadow: none; }
  .site-nav a { padding: 9px 11px; font-size: 13px; }
  .site-nav .nav-cta { margin: 0 0 0 8px; padding-inline: 16px; }
  .hero-grid { grid-template-columns: 1.18fr .82fr; align-items: center; gap: 54px; min-height: 640px; padding-block: 72px; }
  .hero-visual { min-height: 470px; }
  .aspire-badge { inset: 56px 22px 70px; padding: 46px; }
  .floating-card-one { left: -20px; top: 34px; }
  .floating-card-two { right: -20px; }
  .section { padding-block: 108px; }
  .section-heading { grid-template-columns: 1fr .72fr; align-items: end; gap: 70px; margin-bottom: 46px; }
  .section-heading h2 { margin-bottom: 0; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-featured { grid-row: span 2; min-height: 454px; display: flex; flex-direction: column; justify-content: flex-end; }
  .benefit-featured .benefit-number { position: absolute; left: 25px; top: 25px; }
  .fit-grid { grid-template-columns: .82fr 1.18fr; align-items: center; gap: 90px; }
  .check-panel { padding: 38px; }
  .centred-heading { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; text-align: center; }
  .centred-heading > p { margin-inline: auto; }
  .subject-grid { grid-template-columns: repeat(4, 1fr); }
  .entry-label { min-height: 470px; }
  .entry-copy { align-self: center; padding: 54px; }
  .pathway { grid-template-columns: .7fr 50px .8fr 60px 2fr; align-items: center; }
  .path-arrow { transform: none; }
  .path-options { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
