/* ============================================================
   LEARN MOBO — PUBLIC WEBSITE
   Shared stylesheet · built on the Mobo Design System tokens
   ============================================================ */

@import url('colors_and_type.css');

/* ---------- Website type overrides ----------
   Headers: Poppins (stand-in for Arlon Bold)
   Body:    Mulish  (stand-in for Lilliana Semi Bold)
   Drop in the real Arlon/Lilliana @font-face files to swap exactly. */
:root {
  --font-display: 'Poppins', 'Lexend', sans-serif;
  --font-body: 'Mulish', 'Nunito Sans', sans-serif;
}
body { font-weight: 600; }

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bg-surface);
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand-primary); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tint { background: var(--bg-tint); }
.section-soft { background: var(--bg-page); }
.section-dark { background: var(--bg-dark); color: var(--fg-inv); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
.section-dark .eyebrow { color: var(--brand-accent); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; color: var(--color-purple-900); line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 800; color: var(--color-purple-500); }
h4 { font-size: 1.2rem; font-weight: 700; color: var(--color-purple-500); }
p { text-wrap: pretty; }
.lede { font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.55; color: var(--fg-2); font-weight: 500; }
.muted { color: var(--fg-2); }
.accent-text { color: var(--brand-primary); }
.amber-text { color: var(--brand-accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 14px 28px; border: none; border-radius: var(--radius-full);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand-primary); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--color-purple-400); transform: translateY(-2px); }
.btn-accent { background: var(--brand-accent); color: #fff; box-shadow: 0 4px 16px rgba(253,140,23,0.30); }
.btn-accent:hover { background: #ef7e0a; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary); padding: 12px 26px; }
.btn-outline:hover { background: var(--brand-primary); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-purple-500); padding: 12px 18px; }
.btn-ghost:hover { color: var(--brand-primary); }
.btn-light { background: #fff; color: var(--color-purple-500); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { font-size: 18px; padding: 17px 36px; }
.btn-block { width: 100%; }
.link-arrow { font-family: var(--font-display); font-weight: 700; color: var(--brand-primary); display: inline-flex; align-items: center; gap: 6px; }
.link-arrow:hover { gap: 10px; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border-default);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.brand-text { font-family: var(--font-display); font-weight: 900; font-size: 20px; letter-spacing: -0.02em; }
.brand-text .l { color: var(--color-purple-200); }
.brand-text .m { color: var(--color-purple-500); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--color-purple-500);
  padding: 9px 14px; border-radius: var(--radius-full); transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--bg-tint); color: var(--brand-primary); }
.nav-link.is-active { color: var(--brand-primary); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown > .nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover > .nav-link svg, .nav-dropdown:focus-within > .nav-link svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 300px;
  background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: var(--radius-md); transition: background 0.14s; }
.dropdown-item:hover { background: var(--bg-tint); }
.dropdown-item .di-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--bg-tint); }
.dropdown-item .di-icon img { width: 26px; height: 26px; object-fit: contain; }
.dropdown-item .di-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--color-purple-900); padding-bottom: 7px; margin-bottom: 7px; border-bottom: 1px solid var(--border-default); }
.dropdown-item .di-sub { display: block; font-size: 13px; color: var(--fg-2); line-height: 1.35; }
.nav-cta { flex-shrink: 0; }
.nav-login { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--color-purple-500); padding: 9px 16px; border-radius: var(--radius-full); transition: background 0.15s, color 0.15s; flex-shrink: 0; }
.nav-login:hover { background: var(--bg-tint); color: var(--brand-primary); }

.nav-toggle { display: none; background: transparent; border: none; padding: 8px; border-radius: 10px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--color-purple-500); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 88px; position: relative; overflow: hidden; background: linear-gradient(180deg, #F1ECFF 0%, rgba(241,236,255,0) 70%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 32px; max-width: 36ch; }
.hero-stage {
  position: relative; border-radius: var(--radius-2xl); min-height: 440px;
  background: var(--bg-tint); display: grid; place-items: center; overflow: hidden;
  transition: background 0.4s ease;
}
.hero-stage::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,0.45); filter: blur(2px); }
.hero-illo { position: relative; z-index: 2; max-height: 380px; width: auto; transition: opacity 0.4s ease, transform 0.4s ease; }

/* sorting cards */
.sort-label { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-2); margin-bottom: 14px; }
.sort-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 520px; }
.sort-card {
  text-align: left; background: #fff; border: 2px solid var(--border-default); border-radius: var(--radius-lg);
  padding: 16px 18px; transition: border-color 0.16s, transform 0.16s, box-shadow 0.16s; cursor: pointer;
  display: flex; flex-direction: column; gap: 3px;
}
.sort-card:hover { border-color: var(--brand-primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sort-card.is-active { border-color: var(--brand-primary); box-shadow: var(--shadow-brand); }
.sort-card .sc-title { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--color-purple-900); }
.sort-card .sc-sub { font-size: 13.5px; color: var(--fg-2); line-height: 1.35; }
.hero-cta-row { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; min-height: 52px; }
.hero-branch { margin-top: 20px; font-size: 15px; color: var(--fg-2); }
.hero-branch a { color: var(--brand-primary); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.hero-branch a:hover { color: var(--color-purple-400); }

/* ---------- Generic grids / cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-sm); transition: transform 0.16s, box-shadow 0.16s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--fg-2); }
.card-num { font-family: var(--font-display); font-weight: 900; font-size: 15px; width: 34px; height: 34px; border-radius: var(--radius-full); background: var(--bg-tint); color: var(--brand-primary); display: grid; place-items: center; margin-bottom: 16px; }

.feature-icon { width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--bg-tint); display: grid; place-items: center; margin-bottom: 18px; }
.feature-icon img { width: 38px; height: 38px; object-fit: contain; }

/* split media row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { border-radius: var(--radius-2xl); background: var(--bg-tint); min-height: 360px; display: grid; place-items: center; padding: 32px; }
.split-media.amber { background: var(--brand-accent-light); }
.split-media.coral { background: var(--color-pink-100); }
.split-media img { max-height: 300px; width: auto; }

/* laptop + phone combo */
.device-combo { position: relative; width: 100%; max-width: 380px; aspect-ratio: 1 / 0.86; }
.device-combo .dc-laptop { position: absolute; left: 0; bottom: 4%; width: 82%; height: auto; max-height: none; }
.device-combo .dc-phone { position: absolute; right: 0; bottom: 0; width: 33%; height: auto; max-height: none; transform: rotate(7deg); filter: drop-shadow(0 14px 22px rgba(40,20,60,0.22)); }

/* checklist */
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; color: var(--fg-1); }
.check-list .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: var(--radius-full); background: var(--state-success); display: grid; place-items: center; margin-top: 2px; }
.check-list .ck svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 3; }

/* ---------- Social proof / logos ---------- */
.proof-label { text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 28px; }
.logo-band { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.logo-chip {
  height: 56px; padding: 0 26px; border-radius: var(--radius-md);
  background: #fff; border: 1px dashed var(--border-strong); display: flex; align-items: center; gap: 10px;
  color: var(--fg-3); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
}
.logo-chip .dot { width: 22px; height: 22px; border-radius: 6px; background: var(--bg-tint); }

/* finalized partner wordmark tiles */
.partner-band { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; max-width: 940px; margin: 0 auto; }
.partner-logo {
  height: 96px; padding: 0 30px; min-width: 156px; border-radius: var(--radius-md);
  background: #fff; border: 1px solid var(--border-default); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.partner-logo:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.partner-logo img { max-height: 46px; max-width: 178px; width: auto; object-fit: contain; display: block; }
.partner-logo.tall img { max-height: 74px; max-width: 100px; }

/* testimonials */
.testimonial { background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-xl); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px; }
.section-dark .testimonial { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.testimonial .quote { font-size: 18px; line-height: 1.55; color: var(--fg-1); font-weight: 500; }
.section-dark .testimonial .quote { color: rgba(255,255,255,0.92); }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .who .av { width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--brand-primary-light); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.testimonial .who .nm { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.testimonial .who .rl { font-size: 13px; color: var(--fg-2); }
.section-dark .testimonial .who .rl { color: rgba(255,255,255,0.6); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 64px 0 56px; }
.page-hero .breadcrumb { font-size: 13px; color: var(--fg-2); margin-bottom: 18px; font-family: var(--font-display); font-weight: 600; }
.page-hero .breadcrumb a:hover { color: var(--brand-primary); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.page-hero h1 { margin-bottom: 20px; }

/* ---------- Pricing ---------- */
.audience-pick { display: flex; justify-content: center; margin-bottom: 32px; }
.price-tabs { display: inline-flex; gap: 4px; background: var(--bg-tint); padding: 5px; border-radius: 14px; border: 1px solid var(--border-default); }
.price-tab { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--color-purple-500); padding: 10px 20px; border-radius: 10px; border: none; background: transparent; cursor: pointer; transition: all 0.16s; white-space: nowrap; }
.price-tab:hover { color: var(--brand-primary); }
.price-tab.is-active { background: #fff; color: var(--brand-primary); box-shadow: var(--shadow-sm); }
.billing-toggle { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--fg-2); }
.toggle-switch { width: 52px; height: 30px; border-radius: var(--radius-full); background: #C7CCD8; position: relative; border: none; transition: background 0.2s; }
.toggle-switch .knob { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.toggle-switch.annual { background: var(--state-success); }
.toggle-switch.annual .knob { transform: translateX(22px); }
.save-pill { font-family: var(--font-display); font-weight: 800; font-size: 12px; color: var(--state-success); background: rgba(45,201,126,0.12); padding: 4px 10px; border-radius: var(--radius-full); }

.price-card { background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-xl); padding: 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative; }
.price-card.featured { border: 2px solid var(--brand-primary); box-shadow: var(--shadow-brand); }
.price-card .pc-badge { position: absolute; top: -13px; left: 32px; background: var(--brand-accent); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: 0.04em; padding: 5px 14px; border-radius: var(--radius-full); }
.price-card .pc-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--color-purple-900); }
.price-card .pc-for { font-size: 14px; color: var(--fg-2); margin: 6px 0 22px; min-height: 40px; }
.price-card .pc-price { font-family: var(--font-display); font-weight: 900; font-size: 44px; color: var(--color-purple-900); line-height: 1; letter-spacing: -0.03em; }
.price-card .pc-price small { font-size: 16px; font-weight: 600; color: var(--fg-2); letter-spacing: 0; }
.price-card .pc-note { font-size: 13px; color: var(--fg-2); margin-top: 8px; min-height: 20px; }
.price-card .pc-features { display: flex; flex-direction: column; gap: 11px; margin: 24px 0 28px; }
.price-card .pc-features li { display: flex; gap: 10px; font-size: 14.5px; color: var(--fg-1); line-height: 1.4; }
.price-card .pc-features .ck { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-tint); display: grid; place-items: center; margin-top: 1px; }
.price-card .pc-features .ck svg { width: 12px; height: 12px; stroke: var(--brand-primary); stroke-width: 3; }
.price-card .pc-cta { margin-top: auto; }

/* tables */
.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.data-table th, .data-table td { padding: 16px 20px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--border-default); }
.data-table th { font-family: var(--font-display); font-weight: 800; color: var(--color-purple-500); background: var(--bg-page); font-size: 14px; }
.data-table td { color: var(--fg-1); }
.data-table tr:last-child td { border-bottom: none; }
.data-table .row-free td { background: rgba(45,201,126,0.07); font-weight: 700; }

.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border-default); font-size: 15px; }
.compare-table thead th { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--color-purple-900); }
.compare-table .rh { font-weight: 700; color: var(--fg-2); width: 22%; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--color-purple-900); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex-shrink: 0; width: 22px; height: 22px; transition: transform 0.2s; color: var(--brand-primary); }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--fg-2); font-size: 16px; line-height: 1.6; }

/* ---------- Who-it's-for (school-first) ---------- */
.who-feature {
  display: flex; gap: 30px; align-items: center;
  padding: 36px; margin-bottom: 14px;
  background: var(--bg-tint); border: 2px solid var(--brand-primary-light);
}
.who-feature .feature-icon { width: 84px; height: 84px; flex-shrink: 0; background: #fff; }
.who-feature .feature-icon img { width: 56px; height: 56px; }
.who-feature-body { display: block; }
.who-feature-body h3 { margin: 10px 0 8px; }
.who-feature-body p { color: var(--fg-2); max-width: 62ch; margin-bottom: 14px; }
.who-tag {
  display: inline-block; font-family: var(--font-display); font-weight: 800;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-primary); background: #fff; padding: 5px 12px; border-radius: var(--radius-full);
}
.who-branch-label {
  text-align: center; font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-3); margin: 30px 0 20px;
}
.who-mini { display: flex; flex-direction: column; }
.who-mini h3 { font-size: 1.15rem; }
.who-mini p { color: var(--fg-2); }
.who-mini .link-arrow { margin-top: auto; }
@media (max-width: 720px) {
  .who-feature { flex-direction: column; align-items: flex-start; padding: 28px; }
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--bg-dark); border-radius: var(--radius-2xl); padding: 64px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 19px; max-width: 52ch; margin: 0 auto 32px; }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .blob { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-band .blob-1 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(114,97,237,0.34), transparent 70%); top: -120px; left: -80px; }
.cta-band .blob-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(253,140,23,0.20), transparent 70%); bottom: -120px; right: -60px; }

/* ---------- Demo embed ---------- */
.demo-frame { max-width: 940px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-default); background: #fff; }

/* ---------- Standards matrix ---------- */
.std-wrap { overflow-x: auto; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); border: 1px solid var(--border-default); background: #fff; }
.std-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 840px; }
.std-table th, .std-table td { padding: 20px 22px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border-default); }
.std-table thead th { background: var(--bg-page); border-bottom: 2px solid var(--border-strong); }
.std-table thead th:first-child { background: transparent; vertical-align: bottom; }
.std-table thead .th-lead { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-3); }
.std-table thead .th-abbr { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; padding: 5px 13px; border-radius: var(--radius-full); display: inline-block; }
.std-table thead .th-full { display: block; margin-top: 9px; font-size: 12.5px; color: var(--fg-3); font-weight: 500; max-width: 24ch; line-height: 1.35; }
.std-table .mod { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--color-purple-900); width: 22%; }
.std-table tbody tr:last-child td { border-bottom: none; }
.std-cell { font-size: 14px; color: var(--fg-2); line-height: 1.46; display: flex; gap: 10px; }
.std-cell .ck { flex-shrink: 0; width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; margin-top: 2px; }
.std-cell .ck svg { width: 11px; height: 11px; }
.std-code { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-3); letter-spacing: 0.02em; }
.std-detail { max-width: 760px; margin: 18px auto 0; border: 1px solid var(--border-default); border-radius: var(--radius-lg); background: #fff; overflow: hidden; }
.std-detail > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 20px; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--fg-2); }
.std-detail > summary::-webkit-details-marker { display: none; }
.std-detail-chev { display: inline-flex; transition: transform 0.2s ease; }
.std-detail-chev svg { width: 16px; height: 16px; }
.std-detail[open] .std-detail-chev { transform: rotate(180deg); }
.std-detail-body { padding: 4px 24px 22px; border-top: 1px solid var(--border-default); }
.std-detail-intro { font-size: 13px; color: var(--fg-3); line-height: 1.5; margin: 16px 0 14px; }
.std-detail-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.std-detail-list li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; padding-bottom: 11px; border-bottom: 1px solid var(--border-subtle, var(--border-default)); }
.std-detail-list li:last-child { border-bottom: none; padding-bottom: 0; }
.std-detail-mod { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--color-purple-900); min-width: 230px; }
.std-detail-codes { font-family: var(--font-mono); font-size: 12px; color: var(--fg-2); letter-spacing: 0.02em; }
.std-detail-codes em { font-family: var(--font-body); font-style: normal; font-size: 11.5px; color: var(--fg-3); }
.std-detail-na { font-family: var(--font-body); font-size: 12.5px; color: var(--fg-3); letter-spacing: 0; }
@media (max-width: 640px) { .std-table th, .std-table td { padding: 14px 16px; } }

/* ---------- Newsletter form ---------- */
.signup-form { display: flex; gap: 10px; max-width: 480px; }
.signup-form input { flex: 1; font-family: var(--font-body); font-size: 16px; padding: 15px 20px; border-radius: var(--radius-full); border: 2px solid var(--border-default); background: #fff; color: var(--fg-1); }
.signup-form input:focus { outline: none; border-color: var(--brand-primary); }
.signup-note { font-size: 13px; color: var(--fg-2); margin-top: 12px; }

/* ---------- Stat / pull ---------- */
.pull { border-left: 4px solid var(--brand-accent); padding-left: 24px; }
.pull p { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--color-purple-900); line-height: 1.25; letter-spacing: -0.01em; }
.section-dark .pull p { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand-text { font-size: 24px; }
.footer-brand .brand-text .m { color: #fff; }
.footer-brand .brand-logo { height: 52px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 34ch; font-size: 15px; }
.footer-col h5 { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 15px; transition: color 0.14s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13.5px; color: rgba(255,255,255,0.5); }
.legal-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.legal-links a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.legal-links a:hover { color: #fff; }
.pbc-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.16); padding: 8px 14px; border-radius: var(--radius-full); }
.pbc-badge .pbc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--state-success); }
.social-row { display: flex; align-items: center; gap: 4px; }
.social-row a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: rgba(255,255,255,0.6); transition: color 0.15s, background 0.15s; }
.social-row a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.social-row svg { width: 19px; height: 19px; display: block; }

/* ---------- Reveal (very subtle) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Mobile nav panel ---------- */
.mobile-panel { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .hero-grid, .page-hero-grid, .split { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-stage { min-height: 320px; order: -1; }
  .split-media { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-inner { gap: 12px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-login { display: inline-flex; align-items: center; margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .mobile-panel { display: block; position: fixed; inset: 72px 0 auto 0; background: #fff; border-bottom: 1px solid var(--border-default); box-shadow: var(--shadow-lg); padding: 16px 24px 24px; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 99; }
  .mobile-panel.open { transform: none; opacity: 1; visibility: visible; }
  .mobile-panel a:not(.btn) { display: block; padding: 13px 8px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--color-purple-500); border-bottom: 1px solid var(--border-default); }
  .mobile-panel a.sub { padding-left: 20px; font-size: 15px; font-weight: 500; color: var(--fg-2); }
  .mobile-panel .btn { display: none; }
}
@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .audience-pick { margin-bottom: 24px; }
  .price-tabs { display: grid; grid-template-columns: 1fr 1fr; width: 100%; max-width: 340px; }
  .price-tab { padding: 10px 8px; font-size: 13px; text-align: center; }
  .price-tab:first-child { grid-column: 1 / -1; }
  /* Smaller illustrations on phones so they don't dominate the screen */
  .hero { padding: 36px 0 28px; }
  /* Full-width, wrapping CTAs so long labels don't blow out the layout width */
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; white-space: normal; }
  /* Stack the schools outcome stat cards so labels aren't cut off */
  .throughline-row { flex-direction: column; }
  .hero-stage { min-height: auto; }
  .hero-stage::after { width: 190px; height: 190px; }
  .hero-illo { max-height: 140px; }
  .split-media { min-height: auto; padding: 16px; }
  .split-media img { max-height: 128px; }
  .device-combo { max-width: 190px; }
  .feature-icon { width: 48px; height: 48px; }
  .feature-icon img { width: 30px; height: 30px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sort-grid { grid-template-columns: 1fr; max-width: 100%; }
  .cta-band { padding: 48px 24px; }
  .signup-form { flex-direction: column; }
  .signup-form .btn { width: 100%; }
  .compare-table, .data-table { font-size: 13px; }
  .compare-table th, .compare-table td, .data-table th, .data-table td { padding: 12px 12px; }

  /* Minimal footer on phones: logo + social + copyright only.
     All footer nav links are reachable from the mobile menu. */
  .site-footer { padding: 20px 0 16px; }
  .footer-grid { display: flex; justify-content: center; margin-bottom: 0; }
  .footer-brand { text-align: center; margin: 0; }
  .footer-brand .brand-logo { height: 26px; }
  .footer-brand p { display: none; }
  .footer-col { display: none; }
  .footer-bottom { flex-direction: column-reverse; align-items: center; text-align: center; border-top: none; padding-top: 14px; gap: 12px; }
  .footer-bottom p { font-size: 11.5px; }
  .legal-links { gap: 16px; }
  .legal-links a { font-size: 11.5px; }
  .social-row a { width: 32px; height: 32px; }
  .social-row svg { width: 17px; height: 17px; }
}
