/* Alchie Landing Page styles */
@import url('colors_and_type.css');

:root {
  --ach-accent: var(--brand-coral);
  --ach-page: #f7faf9;
  --ach-section-pad: 80px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ach-page);
  color: var(--fg-1);
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.ach-root { overflow-x: clip; }

/* ─── Reusable type ─────────────────────────────── */
.ach-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 18px;
}
.ach-eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 0 4px var(--brand-teal-light);
}
.ach-eyebrow--light { color: var(--brand-peach); }
.ach-eyebrow--peach { color: var(--brand-peach); }

.ach-h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  margin: 0 0 24px;
  text-wrap: balance;
}
[data-headline="all-display"] .ach-h1,
[data-headline="all-display"] .ach-h2,
[data-headline="all-display"] .ach-finalcta__h {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.005em;
}
[data-headline="bold-mix"] .ach-h1__accent,
[data-headline="bold-mix"] .ach-u-accent {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.005em;
}

.ach-h1__accent, .ach-u-accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.ach-h1__underline, .ach-u-accent__line {
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  width: 100%;
  height: 14px;
  display: var(--ach-fantasy, block);
}
.ach-u-accent--light { color: #fff; }
.ach-u-accent--nowrap { white-space: nowrap; }

.ach-h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--fg-1);
  margin: 0 0 16px;
  text-wrap: balance;
  max-width: 820px;
}
.ach-h2--light { color: #fff; }

.ach-h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--fg-1);
}
.ach-h3--light { color: #fff; }

.ach-h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--fg-1);
}

.ach-lead {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 28px;
  max-width: 580px;
  text-wrap: pretty;
}
.ach-lead--light { color: rgba(255,255,255,0.78); }
.ach-mw-md { max-width: 640px; }

.ach-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
.ach-body--light { color: rgba(255,255,255,0.74); }
.ach-body-sm { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0; }

.ach-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--fg-1);
}
.ach-link:hover { color: var(--brand-navy); }

/* ─── Buttons ───────────────────────────────────── */
.ach-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
  white-space: nowrap;
}
.ach-btn--lg { padding: 14px 24px; font-size: 15.5px; border-radius: 14px; }
.ach-btn:hover { transform: translateY(-1px); opacity: 0.94; }
.ach-btn:active { transform: scale(0.97); }

.ach-btn--primary {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,74,121,0.22), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Glass variants — translucent over light backgrounds */
.ach-btn--primary-glass {
  background: rgba(0, 74, 121, 0.86);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 rgba(0,0,0,0.08) inset,
    0 8px 24px rgba(0,74,121,0.18);
}
.ach-btn--primary-glass:hover { background: rgba(0, 74, 121, 0.92); }

.ach-btn--glass {
  background: rgba(255,255,255,0.55);
  color: var(--fg-1);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 1px 2px rgba(0,74,121,0.08),
    0 8px 24px rgba(0,74,121,0.10);
}
.ach-btn--glass:hover { background: rgba(255,255,255,0.7); }

.ach-btn--peach-glass {
  background: linear-gradient(180deg, rgba(255,210,166,0.95), rgba(255,168,166,0.92));
  color: var(--brand-navy-dark);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55) inset,
    0 -1px 0 rgba(0,0,0,0.06) inset,
    0 10px 28px rgba(255,168,166,0.32);
}
.ach-btn--peach-glass:hover { filter: brightness(1.04); }

.ach-btn--md { padding: 11px 18px; font-size: 14px; border-radius: 12px; }
.ach-btn--ghost {
  background: transparent;
  color: var(--fg-1);
  border-color: var(--border-strong);
}
.ach-btn--ghost:hover { background: rgba(0,74,121,0.05); }
.ach-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.ach-btn--ghost-light:hover { background: rgba(255,255,255,0.08); }
.ach-btn--outline {
  background: #fff;
  color: var(--brand-navy);
  border-color: var(--border-strong);
}
.ach-btn--peach {
  background: var(--brand-peach);
  color: var(--brand-navy-dark);
  box-shadow: 0 8px 24px rgba(255,168,166,0.25), inset 0 1px 0 rgba(255,255,255,0.45);
}

/* ─── Pills ─────────────────────────────────────── */
.ach-pill {
  display: inline-flex; align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}
.ach-pill--mint { background: var(--brand-mint-light); color: var(--brand-teal-dark); }
.ach-pill--teal { background: var(--brand-teal-light); color: var(--brand-teal-dark); }

/* ─── Nav ───────────────────────────────────────── */
.ach-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 32px;
  position: sticky; top: 12px; z-index: 50;
  background: rgba(247,250,249,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(180,205,220,0.4);
  border-radius: 18px;
  margin-top: 16px;
}
.ach-nav__links {
  display: flex; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.ach-nav__links a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--fg-1);
  text-decoration: none;
}
.ach-nav__links a:hover { color: var(--brand-navy); }
.ach-nav__cta { display: flex; align-items: center; gap: 18px; }

/* ─── Section base ──────────────────────────────── */
.ach-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--ach-section-pad) 32px;
  position: relative;
}
.ach-section__head { max-width: 820px; margin-bottom: 56px; }
.ach-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.ach-section__head--center .ach-eyebrow { justify-content: center; }
.ach-section__head--center .ach-h2,
.ach-section__head--center .ach-lead { margin-left: auto; margin-right: auto; }

/* ─── Hero ──────────────────────────────────────── */
.ach-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 32px 100px;
  align-items: center;
  position: relative;
}
.ach-hero__copy { padding-right: 24px; }
.ach-h1__accent { color: var(--fg-1); }

.ach-hero__ctas {
  display: flex; gap: 14px; align-items: center;
  margin-top: 8px;
}
.ach-hero__trust {
  display: flex; align-items: center; gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border);
}
.ach-trust-stat { display: flex; flex-direction: column; gap: 2px; }
.ach-trust-stat strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.ach-trust-stat span {
  font-size: 12.5px;
  color: var(--fg-2);
}
.ach-hero__divider {
  width: 1px; height: 32px;
  background: var(--border-strong);
}

/* Hero visual */
.ach-hero__visual {
  position: relative;
  aspect-ratio: 1 / 0.92;
  min-height: 460px;
}
.ach-hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(160deg, #ffe6c9 0%, #ffd4a3 50%, #ffa8a6 100%);
  box-shadow: var(--shadow-lg);
}
.ach-hero__photo-inner {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.45), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(0,74,121,0.18), transparent 60%),
    linear-gradient(160deg, #ffd4a3 0%, #ffa8a6 60%, #ff8e8b 100%);
  position: relative;
}
.ach-hero__cutout {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 92%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0, 74, 121, 0.22));
  pointer-events: none;
  display: block;
}
.ach-hero__burst {
  position: absolute;
  top: -28px; right: -22px;
  width: 90px;
  display: var(--ach-fantasy, block);
}
.ach-hero__arrow {
  position: absolute;
  bottom: 60px; left: -50px;
  width: 130px;
  display: var(--ach-fantasy, block);
}

/* Floating cards */
.ach-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-lg);
  border-radius: 18px;
  padding: 16px;
}
.ach-float-card--quiz {
  top: 60px; left: -34px;
  width: 280px;
  z-index: 3;
}
.ach-float-card__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.ach-float-card__icon {
  width: 42px; height: 42px;
  background: var(--brand-teal-light);
  border-radius: 12px;
  padding: 6px;
  object-fit: contain;
}
.ach-float-card__icon-lg {
  width: 54px; height: 54px;
  background: var(--brand-peach-light);
  border-radius: 14px;
  padding: 6px;
  object-fit: contain;
}
.ach-float-card__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-teal);
}
.ach-float-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--fg-1);
  margin-top: 2px;
}
.ach-float-card__progress {
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.ach-float-card__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-mint));
  border-radius: 999px;
}
.ach-float-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--fg-2);
  font-weight: 600;
}

.ach-float-card--xp {
  bottom: 24px; right: -30px;
  width: 220px;
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.ach-float-card__big {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--brand-navy);
  line-height: 1;
  letter-spacing: -0.01em;
}
.ach-float-card__sub {
  font-size: 12px;
  color: var(--fg-2);
  margin-top: 4px;
  font-weight: 600;
}

.ach-float-card--alquie {
  bottom: -10px; left: 40px;
  width: 110px;
  height: 110px;
  display: var(--ach-fantasy, flex);
  align-items: center; justify-content: center;
  border-radius: 24px;
  padding: 8px;
  background: rgba(255,255,255,0.95);
}
.ach-float-card--alquie img {
  width: 100%; height: 100%; object-fit: contain;
}

/* ─── Problem ──────────────────────────────────── */
.ach-problem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ach-problem__card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.ach-problem__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ach-problem__num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ach-accent);
  margin-bottom: 18px;
}
.ach-problem__card .ach-h4 { margin-bottom: 8px; }

/* ─── Solution ─────────────────────────────────── */
.ach-solution > .ach-feature {
  margin-bottom: 64px;
}
.ach-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.ach-feature__copy { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.ach-feature__icon {
  width: 56px; height: 56px;
  background: linear-gradient(160deg, var(--brand-peach-light), var(--brand-coral-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.ach-feature__icon img { width: 100%; height: 100%; object-fit: contain; }
.ach-feature__copy .ach-h3 { margin: 0; }
.ach-feature__copy .ach-body { margin: 0; }
.ach-feature__shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
  background: #fff;
}
.ach-feature__shot img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.ach-feature__shot-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(255, 168, 166, 0.25), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.ach-solution__more {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ach-solution__card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.ach-solution__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ach-accent);
}
.ach-solution__icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(160deg, var(--brand-peach-light), var(--brand-coral-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  margin-bottom: 18px;
}
.ach-solution__icon-wrap img { width: 100%; height: 100%; object-fit: contain; }
.ach-solution__card .ach-h4 { margin-bottom: 6px; }

/* Schools dashboard shot */
.ach-schools__shot {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.ach-schools__shot-label {
  max-width: 720px;
}
.ach-schools__shot-label .ach-eyebrow { margin-bottom: 8px; }
.ach-schools__shot-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.ach-schools__shot-frame img { width: 100%; display: block; }

/* ─── How it works ─────────────────────────────── */
.ach-howitworks__track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
.ach-howitworks__step {
  text-align: center;
  padding: 32px 20px;
}
.ach-howitworks__step-icon {
  position: relative;
  width: 88px; height: 88px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.ach-howitworks__step-icon img { width: 100%; height: 100%; object-fit: contain; }
.ach-howitworks__step-num {
  position: absolute;
  top: -10px; right: -10px;
  width: 32px; height: 32px;
  background: var(--brand-navy);
  color: #fff;
  border-radius: 50%;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--ach-page);
}
.ach-howitworks__connect {
  align-self: center;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
}
.ach-howitworks__connect svg { width: 100%; height: auto; }
.ach-howitworks__step .ach-body { max-width: 280px; margin: 0 auto; }

/* ─── Pedagogy ─────────────────────────────────── */
.ach-pedagogy {
  background: var(--brand-navy);
  background-image:
    radial-gradient(circle at 8% 10%, rgba(0, 122, 108, 0.35), transparent 40%),
    radial-gradient(circle at 92% 90%, rgba(255, 168, 166, 0.18), transparent 45%),
    linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
  border-radius: 40px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}
[data-pedagogy="light"] .ach-pedagogy {
  background: #fff;
  border: 1.5px solid var(--border);
}
[data-pedagogy="light"] .ach-h2--light,
[data-pedagogy="light"] .ach-h3--light,
[data-pedagogy="light"] .ach-pedagogy__card {
  color: var(--fg-1);
}
[data-pedagogy="light"] .ach-h2--light { color: var(--fg-1); }
[data-pedagogy="light"] .ach-h3--light { color: var(--fg-1); }
[data-pedagogy="light"] .ach-body--light { color: var(--fg-2); }
[data-pedagogy="light"] .ach-lead--light { color: var(--fg-2); }
[data-pedagogy="light"] .ach-pedagogy__card { background: var(--surface-page); border-color: var(--border); }
[data-pedagogy="light"] .ach-pedagogy__ref { color: var(--brand-teal); }
[data-pedagogy="light"] .ach-eyebrow--light { color: var(--brand-teal); }
[data-pedagogy="light"] .ach-eyebrow--peach { color: var(--brand-coral); }
[data-pedagogy="light"] .ach-u-accent--light { color: var(--fg-1); }

.ach-pedagogy__head { max-width: 760px; margin-bottom: 56px; }
.ach-pedagogy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ach-pedagogy__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ach-pedagogy__card .ach-eyebrow { margin-bottom: 14px; }
.ach-pedagogy__ref {
  margin-top: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--brand-peach);
  letter-spacing: 0.04em;
}

/* ─── Outcomes ─────────────────────────────────── */
.ach-outcomes__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: end;
}
.ach-outcomes__stats {
  display: flex; gap: 16px;
}
.ach-stat {
  flex: 1;
  border-radius: 22px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.ach-stat strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ach-stat span {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}
.ach-stat--coral {
  background: var(--brand-coral);
  color: var(--brand-navy-dark);
}
.ach-stat--peach {
  background: var(--brand-peach);
  color: var(--brand-navy-dark);
}
.ach-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ach-outcomes__card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 6px;
  align-items: start;
}
.ach-outcomes__num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--brand-coral);
  letter-spacing: 0.04em;
  grid-row: 1 / span 2;
  line-height: 1;
  padding-top: 4px;
}
.ach-outcomes__card .ach-h3 {
  margin: 0 0 8px;
  color: var(--brand-navy-dark);
  font-size: 22px;
}
.ach-outcomes__card .ach-body {
  color: var(--fg-2);
}

/* ─── For schools ──────────────────────────────── */
.ach-schools__split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.ach-schools__head {
  margin-bottom: 56px;
  max-width: 1080px;
}
.ach-schools__head .ach-eyebrow { margin-bottom: 14px; }
.ach-schools__h2 {
  white-space: nowrap;
}
.ach-schools__copy { padding-top: 0; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.ach-schools__points { display: flex; flex-direction: column; gap: 20px; }
.ach-schools__point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.ach-schools__check {
  width: 32px; height: 32px;
  background: var(--brand-teal);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

/* ─── Social proof ─────────────────────────────── */
.ach-social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ach-social__card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 20px;
}
.ach-social__q {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.45;
  color: var(--fg-1);
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.ach-social__by {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.ach-social__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-mint));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.ach-social__name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px; color: var(--fg-1); }
.ach-social__role { font-size: 12.5px; color: var(--fg-2); margin-top: 1px; }
.ach-social__school { font-size: 11.5px; color: var(--fg-3); margin-top: 1px; }

.ach-social__logos {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: 22px;
  align-items: center;
}
.ach-social__logos-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.ach-social__logos-row {
  display: flex; gap: 36px; flex-wrap: wrap; justify-content: center;
}
.ach-social__logo {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  opacity: 0.65;
}

/* ─── Pricing ──────────────────────────────────── */
.ach-pricing__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}
.ach-pricing__card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 28px 28px 26px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ach-pricing__card--featured {
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,168,166,0.18), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--brand-navy-light) 100%);
}
.ach-pricing__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 18px;
  margin-bottom: 6px;
}
.ach-pricing__name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg-1);
  margin: 0;
  letter-spacing: -0.005em;
}
.ach-pricing__price {
  display: flex; flex-direction: column; align-items: flex-end;
  text-align: right;
}
.ach-pricing__amount {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.015em;
  color: var(--brand-navy);
  line-height: 1;
}
.ach-pricing__suffix {
  font-size: 12px;
  color: var(--fg-2);
  font-weight: 600;
  margin-top: 4px;
}
.ach-pricing__sub {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 4px;
  margin-bottom: 18px;
}
.ach-pricing__list {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.ach-pricing__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--fg-1);
  font-weight: 500;
}
.ach-pricing__check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
}
.ach-pricing__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  object-fit: contain;
  background: rgba(255,255,255,0.7);
  border-radius: 6px;
  padding: 2px;
}
.ach-pricing__card .ach-btn { margin-top: auto; width: 100%; }

.ach-pricing__schools {
  max-width: 960px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 26px;
}

/* ─── Final CTA ────────────────────────────────── */
.ach-finalcta {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--ach-section-pad) 32px;
}
.ach-finalcta__inner {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 198, 145, 0.28), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(74, 169, 117, 0.25), transparent 55%),
    linear-gradient(135deg, #007a6c 0%, #004a79 100%);
  border-radius: 40px;
  padding: 96px 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.ach-finalcta__copy { max-width: 680px; }
.ach-finalcta__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.ach-finalcta__stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--brand-peach);
  line-height: 1;
  margin-bottom: 4px;
}
.ach-finalcta__stat span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
}
.ach-finalcta__h {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 32px;
  text-wrap: balance;
}
.ach-finalcta__accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.ach-finalcta__accent .ach-u-accent__line {
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  width: 100%; height: 14px;
}
.ach-finalcta__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.ach-finalcta__note {
  margin-top: 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.ach-finalcta__alquie {
  width: 220px;
  display: var(--ach-fantasy, block);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.3));
}
.ach-finalcta__burst-1 {
  position: absolute;
  top: 32px; left: 36%;
  width: 70px;
  display: var(--ach-fantasy, block);
}
.ach-finalcta__burst-2 {
  position: absolute;
  bottom: 40px; right: 30%;
  width: 60px;
  display: var(--ach-fantasy, block);
}

/* ─── Footer ───────────────────────────────────── */
.ach-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 40px;
  border-top: 1.5px solid var(--border);
}
.ach-footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.ach-footer__col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin: 0 0 18px;
}
.ach-footer__col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.ach-footer__col a {
  font-size: 14.5px;
  color: var(--fg-1);
  text-decoration: none;
}
.ach-footer__col a:hover { color: var(--brand-navy); }
.ach-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-3);
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1080px) {
  .ach-hero { grid-template-columns: 1fr; gap: 80px; }
  .ach-hero__visual { max-width: 540px; margin: 0 auto; }
  .ach-problem__grid { grid-template-columns: repeat(2, 1fr); }
  .ach-solution__more { grid-template-columns: 1fr; }
  .ach-feature, .ach-feature--alt { grid-template-columns: 1fr; gap: 32px; }
  .ach-feature--alt .ach-feature__copy { order: 0; }
  .ach-feature--alt .ach-feature__shot { order: 0; }
  .ach-hero__cutout { width: 78%; right: 0%; }
  .ach-pedagogy__grid { grid-template-columns: 1fr; }
  .ach-pricing__row { grid-template-columns: 1fr; }
  .ach-pricing__schools { grid-template-columns: 1fr; }
  .ach-outcomes__grid { grid-template-columns: 1fr; }
  .ach-outcomes__top { grid-template-columns: 1fr; }
  .ach-schools__split { grid-template-columns: 1fr; gap: 40px; }
  .ach-schools__copy { position: static; }
  .ach-schools__h2 { white-space: normal; }
  .ach-social__grid { grid-template-columns: 1fr; }
  .ach-footer__top { grid-template-columns: 1fr 1fr; }
  .ach-finalcta__inner { grid-template-columns: 1fr; padding: 56px 32px; }
  .ach-finalcta__alquie { width: 160px; margin: 0 auto; }
  .ach-howitworks__track { grid-template-columns: 1fr; gap: 12px; }
  .ach-howitworks__connect { display: none; }
  :root { --ach-section-pad: 80px; }
}

@media (max-width: 640px) {
  .ach-nav__links { display: none; }
  .ach-nav__cta .ach-link { display: none; }
  .ach-problem__grid { grid-template-columns: 1fr; }
  .ach-solution__more { grid-template-columns: 1fr; }
  .ach-outcomes__stats { flex-direction: column; }
  .ach-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .ach-hero { padding-top: 32px; }
  .ach-float-card--quiz { left: 0; width: 240px; top: 12px; }
  .ach-float-card--xp { right: 0; width: 180px; bottom: 60px; }
  .ach-pedagogy { padding: 64px 28px; border-radius: 28px; }
  .ach-finalcta__inner { padding: 48px 24px; border-radius: 28px; }
  .ach-section { padding-left: 20px; padding-right: 20px; }
  .ach-finalcta { padding-left: 20px; padding-right: 20px; }
  .ach-footer { padding-left: 20px; padding-right: 20px; }
}
