:root {
  --ink: #1b2a3a;
  --bg: #eef2f6;
  --surface: #ffffff;
  --primary: #0060b0;
  --primary-ink: #004c8c;
  --accent: #f07820;
  --line: #d7dfe8;
  --muted: #6e7f90;
  --slate: #8b9cad;
  --danger: #c0392b;
  --ok: #1f9d6b;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(20,32,43,.06), 0 8px 24px rgba(20,32,43,.06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

a { color: var(--primary); }

.wordmark {
  font-family: "Spectral", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Auth screens: centered card */
.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.brand .mark {
  font-family: "Spectral", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
}
.brand .tag { color: var(--muted); font-size: 13px; }

h1 { font-family: "Spectral", Georgia, serif; font-size: 22px; margin: 18px 0 4px; }
.sub { color: var(--muted); font-size: 14px; margin: 0 0 22px; }

label { display: block; font-size: 13px; font-weight: 600; margin: 14px 0 6px; }

input[type=text], input[type=email], input[type=password] {
  width: 100%;
  padding: 11px 12px;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}
input:focus {
  outline: 2px solid rgba(31,95,176,.35);
  border-color: var(--primary);
}

.btn {
  display: inline-block;
  width: 100%;
  margin-top: 22px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.btn:hover { background: var(--primary-ink); }

.alt { margin-top: 18px; font-size: 14px; text-align: center; color: var(--muted); }

.notice { padding: 10px 12px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; }
.notice.error { background: #fdecea; color: var(--danger); border: 1px solid #f5c6c0; }
.notice.ok { background: #e8f6ef; color: #12764f; border: 1px solid #b9e3cf; }
.notice.info { background: #eaf1fa; color: var(--primary-ink); border: 1px solid #c5d8ef; }

.field-error { color: var(--danger); font-size: 12px; margin-top: 4px; }

/* Placeholder consoles */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container { max-width: 960px; margin: 0 auto; padding: 32px 24px; }
.muted { color: var(--muted); }
.logout { font-size: 14px; }

/* ===== Admin console ===== */
.admin-nav {
  display: flex; gap: 4px; align-items: center;
}
.admin-nav a {
  padding: 8px 12px; border-radius: 7px; font-size: 14px; font-weight: 500;
  color: var(--ink); text-decoration: none;
}
.admin-nav a:hover { background: #eef3f8; }
.admin-nav a.active { background: var(--primary); color: #fff; }

.page-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 0 20px;
}
.page-head h1 { font-family: "Spectral", serif; font-size: 24px; margin: 0; }

.btn-sm {
  display: inline-block; width: auto; margin: 0; padding: 8px 14px;
  font-size: 13px; font-weight: 600; border-radius: 7px; cursor: pointer;
  background: var(--primary); color: #fff; border: none; text-decoration: none;
}
.btn-sm:hover { background: var(--primary-ink); }
.btn-sm.ghost { background: #fff; color: var(--primary); border: 1px solid var(--line); }
.btn-sm.ghost:hover { background: #f3f7fb; }
.btn-sm.danger { background: #fff; color: var(--danger); border: 1px solid #f0c8c3; }
.btn-sm.ok { background: var(--ok); }

table.grid { width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
table.grid th, table.grid td { text-align: left; padding: 11px 14px; font-size: 14px;
  border-bottom: 1px solid var(--line); vertical-align: top; }
table.grid th { background: #f5f8fb; font-weight: 600; color: var(--muted);
  font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
table.grid tr:last-child td { border-bottom: none; }

.pill { display: inline-block; padding: 2px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 600; }
.pill.gray { background: #eceff3; color: var(--muted); }
.pill.blue { background: #e5eefb; color: var(--primary-ink); }
.pill.green { background: #e2f3ea; color: #12764f; }
.pill.amber { background: #fbf0d8; color: #8a6412; }
.pill.red { background: #fdecea; color: var(--danger); }

.form-card { background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; max-width: 780px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea { width: 100%; padding: 11px 12px; font-size: 14px; border: 1px solid var(--line);
  border-radius: 8px; background: #fbfcfd; font-family: inherit; resize: vertical; }
select { width: 100%; padding: 11px 12px; font-size: 15px; border: 1px solid var(--line);
  border-radius: 8px; background: #fbfcfd; }
.inline-form { display: inline; margin: 0; }
.opt-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.opt-row input[type=text] { flex: 1; }
.opt-row label { margin: 0; font-weight: 500; font-size: 13px; white-space: nowrap; }
.hint { color: var(--muted); font-size: 13px; margin: 4px 0 0; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow); }
.tile:hover { border-color: var(--primary); }
.tile h3 { font-family: "Spectral", serif; margin: 0 0 6px; font-size: 18px; }
.tile p { margin: 0; color: var(--muted); font-size: 13px; }
.module-grid th, .module-grid td { padding: 8px 10px; }
.num { width: 70px; }

/* ===== Exam runner ===== */
.exam-bar {
  position: sticky; top: 0; z-index: 10; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.exam-bar .sec { font-family: "Spectral", serif; font-size: 16px; }
.exam-bar .timer { font-variant-numeric: tabular-nums; font-weight: 600; font-size: 18px;
  background: rgba(255,255,255,.12); padding: 6px 14px; border-radius: 8px; }
.exam-bar .timer.low { background: var(--danger); }
.exam-wrap { max-width: 760px; margin: 0 auto; padding: 24px; }
.qcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px; margin-bottom: 18px; }
.qnum { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: 10px; }
.passage { background: #f6f8fa; border-left: 3px solid var(--accent); padding: 12px 14px;
  border-radius: 6px; margin-bottom: 14px; white-space: pre-wrap; font-size: 15px; }
.qstem { font-size: 16px; margin-bottom: 14px; white-space: pre-wrap; }
.qimg { max-width: 100%; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 14px; }
.choice { display: flex; align-items: flex-start; gap: 10px; padding: 11px 12px;
  border: 1px solid var(--line); border-radius: 8px; margin-bottom: 8px; cursor: pointer; }
.choice:hover { background: #f6f9fc; }
.choice input { margin-top: 3px; }
.gridin input { width: 220px; font-size: 16px; padding: 10px 12px; }
.exam-footer { display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0 40px; }
.save-state { font-size: 13px; color: var(--muted); }
.big-btn { padding: 12px 22px; font-size: 15px; font-weight: 600; border: none; border-radius: 8px;
  background: var(--primary); color: #fff; cursor: pointer; }
.big-btn:hover { background: var(--primary-ink); }
.break-card { max-width: 520px; margin: 60px auto; text-align: center; }
.result-hero { display: flex; gap: 24px; flex-wrap: wrap; margin: 20px 0 28px; }
.score-tile { flex: 1; min-width: 160px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; text-align: center; }
.score-tile .n { font-family: "Spectral", serif; font-size: 40px; font-weight: 600; }
.score-tile.total .n { color: var(--primary); }
.score-tile .l { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.rev-q { padding: 12px 0; border-bottom: 1px solid var(--line); }
.rev-q .rs { font-size: 13px; }
.rev-q .ok { color: var(--ok); font-weight: 600; }
.rev-q .no { color: var(--danger); font-weight: 600; }

/* ===== Brand marks ===== */
.auth-logo { display: block; margin: 0 auto 10px; height: 108px; width: auto; }
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-lockup img { height: 34px; width: auto; }
.brand-lockup .bt { font-family: "Spectral", Georgia, serif; font-weight: 600;
  font-size: 18px; color: var(--ink); letter-spacing: -0.01em; line-height: 1; }
.brand-lockup .bt small { display: block; font-family: "Inter", sans-serif; font-weight: 500;
  font-size: 11px; color: var(--slate); letter-spacing: .02em; }
.exam-bar .brand-white { color: #fff; font-family: "Spectral", serif; font-weight: 600; font-size: 17px; }
.exam-bar .brand-white .dot { color: var(--accent); }
.rev-q .skip { color: var(--slate); font-weight: 600; }

/* ===== One-question navigation ===== */
.exam-wrap { padding-bottom: 140px; }
.exam-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  background: var(--surface); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(20,32,43,.06); padding: 12px 16px 10px;
}
.exam-nav-inner { max-width: 760px; margin: 0 auto; display: flex; align-items: center; gap: 10px; }
.nav-btn { padding: 9px 14px; font-size: 14px; font-weight: 600; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; color: var(--ink); cursor: pointer; white-space: nowrap; }
.nav-btn:hover:not(:disabled) { background: #f3f7fb; border-color: var(--primary); }
.nav-btn:disabled { opacity: .45; cursor: default; }
.nav-btn.finish { background: var(--primary); color: #fff; border: none; margin-left: auto; }
.nav-btn.finish:hover { background: var(--primary-ink); }
.navigator { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; justify-content: center;
  max-height: 76px; overflow-y: auto; }
.nav-num { width: 30px; height: 30px; padding: 0; font-size: 13px; font-weight: 600;
  border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--muted); cursor: pointer; }
.nav-num:hover { border-color: var(--primary); }
.nav-num.answered { background: #e5eefb; color: var(--primary-ink); border-color: #bcd3ef; }
.nav-num.current { outline: 2px solid var(--primary); outline-offset: 1px; color: var(--primary); }
.exam-nav .save-state { max-width: 760px; margin: 8px auto 0; text-align: center; }

/* ===== Public landing ===== */
.site-header {
  position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; padding: 12px 28px;
}
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 500; }
.site-nav a:hover { color: var(--primary); }
.header-cta { display: flex; align-items: center; gap: 10px; }

.hero {
  text-align: center; padding: 72px 24px 64px;
  background: radial-gradient(1200px 400px at 50% -10%, rgba(0,96,176,.10), transparent 70%);
}
.hero img.logo { height: 128px; margin-bottom: 22px; }
.hero h1 { font-family: "Spectral", serif; font-size: 44px; line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.02em; }
.hero h1 .hl { color: var(--primary); }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 auto 28px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-lg { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px;
  font-size: 15px; font-weight: 600; border-radius: 9px; text-decoration: none; cursor: pointer; border: none; }
.btn-lg.primary { background: var(--primary); color: #fff; }
.btn-lg.primary:hover { background: var(--primary-ink); }
.btn-lg.ghost { background: #fff; color: var(--primary); border: 1px solid var(--line); }
.btn-lg.ghost:hover { border-color: var(--primary); }
.btn-lg.accent { background: var(--accent); color: #fff; }
.btn-lg.accent:hover { filter: brightness(.95); }

.section { max-width: 1000px; margin: 0 auto; padding: 56px 24px; }
.section h2 { font-family: "Spectral", serif; font-size: 30px; text-align: center; margin: 0 0 8px; }
.section .sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 36px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); }
.feature .ic { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center;
  background: #e5eefb; color: var(--primary); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.feature h3 { font-family: "Spectral", serif; font-size: 19px; margin: 0 0 8px; }
.feature p { color: var(--muted); font-size: 14px; margin: 0; }

.exam-band { background: linear-gradient(135deg, var(--primary), var(--primary-ink)); color: #fff;
  text-align: center; padding: 56px 24px; }
.exam-band h2 { font-family: "Spectral", serif; font-size: 30px; margin: 0 0 10px; }
.exam-band p { opacity: .9; max-width: 560px; margin: 0 auto 26px; }

.site-footer { border-top: 1px solid var(--line); padding: 30px 24px; text-align: center;
  color: var(--muted); font-size: 14px; }
.site-footer a { color: var(--primary); text-decoration: none; }

/* ============================================================
   2026 modernization pass (motion, focus, elevation, type, responsive)
   ============================================================ */

:root {
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow-sm: 0 1px 2px rgba(20,32,43,.05);
  --shadow-md: 0 2px 6px rgba(20,32,43,.06), 0 10px 28px rgba(20,32,43,.07);
  --shadow-lg: 0 8px 24px rgba(20,32,43,.10), 0 24px 60px rgba(20,32,43,.10);
}

/* Motion: smooth, subtle */
.btn, .btn-sm, .btn-lg, .big-btn, .nav-btn, .nav-num,
.tile, .feature, .choice, input, select, textarea, .site-nav a {
  transition: background-color .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), box-shadow .18s var(--ease),
              transform .12s var(--ease);
}
.btn:active, .btn-sm:active, .btn-lg:active, .big-btn:active { transform: translateY(1px) scale(.99); }

/* Hover lift on cards */
.tile:hover, .feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.qcard { box-shadow: var(--shadow-md); }
.card { box-shadow: var(--shadow-md); }
tr:hover > td { background: rgba(0,96,176,.03); }

/* Accessible focus rings everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .choice:focus-within,
.nav-num:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,96,176,.28);
  border-radius: 8px;
}

/* Type: a touch larger and tighter for a confident, current feel */
.hero h1 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.025em; }
.section h2, .exam-band h2 { letter-spacing: -0.02em; }
h1 { letter-spacing: -0.015em; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* Richer hero backdrop (layered brand aurora) */
.hero {
  background:
    radial-gradient(900px 380px at 18% -8%, rgba(0,96,176,.12), transparent 60%),
    radial-gradient(720px 340px at 88% 0%, rgba(240,120,32,.10), transparent 60%);
}

/* Buttons get a soft elevation */
.btn-lg.primary, .btn-lg.accent { box-shadow: 0 6px 18px rgba(0,96,176,.20); }
.btn-lg.accent { box-shadow: 0 6px 18px rgba(240,120,32,.22); }

/* Responsive: let wide tables scroll instead of squashing */
@media (max-width: 720px) {
  table.grid { display: block; overflow-x: auto; white-space: nowrap; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 44px; }
  .site-nav { display: none; }
  .exam-nav-inner { flex-wrap: wrap; }
  .navigator { order: 3; width: 100%; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .tile:hover, .feature:hover { transform: none; }
}

/* ============================================================
   Vibrant pass — gradients, color, life (brand blue + orange)
   ============================================================ */

:root {
  --grad-primary: linear-gradient(135deg, #1478d2 0%, #0060b0 55%, #004c8c 100%);
  --grad-accent:  linear-gradient(135deg, #ff9a3d 0%, #f07820 60%, #d96410 100%);
  --grad-brand:   linear-gradient(120deg, #0060b0, #1478d2 45%, #f07820);
}

/* --- Gradient buttons --- */
.btn, .big-btn, .btn-lg.primary, .btn-sm:not(.ghost):not(.danger):not(.ok), .nav-btn.finish {
  background: var(--grad-primary);
  border: none;
  color: #fff;
}
.btn:hover, .big-btn:hover, .btn-lg.primary:hover, .nav-btn.finish:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 22px rgba(0,96,176,.30);
}
.btn-lg.accent { background: var(--grad-accent); }
.btn-lg.accent:hover { filter: brightness(1.06); box-shadow: 0 8px 22px rgba(240,120,32,.32); }
.btn-sm.ok { background: linear-gradient(135deg, #27b57e, #1f9d6b); border: none; }

/* --- Hero: gradient headline highlight + livelier backdrop --- */
.hero .hl {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero {
  background:
    radial-gradient(1000px 420px at 15% -10%, rgba(0,96,176,.16), transparent 60%),
    radial-gradient(820px 380px at 90% -4%, rgba(240,120,32,.14), transparent 60%),
    linear-gradient(180deg, #f6f9fd 0%, var(--bg) 100%);
}

/* --- Entrance animation (hero + cards) --- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero img.logo   { animation: rise .5s var(--ease) both; }
.hero h1         { animation: rise .5s .08s var(--ease) both; }
.hero p.lead     { animation: rise .5s .16s var(--ease) both; }
.hero .hero-cta  { animation: rise .5s .24s var(--ease) both; }
.feature, .tile  { animation: rise .45s var(--ease) both; }
.feature:nth-child(2), .tile:nth-child(2) { animation-delay: .07s; }
.feature:nth-child(3), .tile:nth-child(3) { animation-delay: .14s; }
.feature:nth-child(4) { animation-delay: .21s; }

/* --- Cards: gradient hairline top + colorful icons --- */
.feature, .tile { position: relative; overflow: hidden; }
.feature::before, .tile::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad-brand); opacity: 0; transition: opacity .2s var(--ease);
}
.feature:hover::before, .tile:hover::before { opacity: 1; }
.feature .ic {
  background: var(--grad-primary); color: #fff;
  box-shadow: 0 6px 14px rgba(0,96,176,.25);
}
.feature:nth-child(even) .ic { background: var(--grad-accent); box-shadow: 0 6px 14px rgba(240,120,32,.28); }

/* --- Section headings: gradient underline flourish --- */
.section h2::after, .exam-band h2::after {
  content: ""; display: block; width: 56px; height: 4px; border-radius: 4px;
  background: var(--grad-accent); margin: 12px auto 0;
}
.exam-band h2::after { background: rgba(255,255,255,.85); }

/* --- Exam band: deeper gradient + orange glow --- */
.exam-band {
  background:
    radial-gradient(620px 280px at 85% 10%, rgba(240,120,32,.35), transparent 60%),
    linear-gradient(135deg, #0a70c8, #0060b0 45%, #063d6e);
}

/* --- Exam runner: gradient top bar + timer chip --- */
.exam-bar { background: linear-gradient(90deg, #0f2b45, #143a5c 55%, #0f2b45); }
.exam-bar .timer { background: var(--grad-primary); }
.exam-bar .timer.low { background: var(--grad-accent); }
.nav-num.answered { background: linear-gradient(135deg, #e5eefb, #d3e5f8); }
.nav-num.current { box-shadow: 0 0 0 2px var(--primary); outline: none; }

/* --- Results: gradient hero number --- */
.score-tile.total .n {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.score-tile { border-top: 3px solid transparent; }
.score-tile.total { border-top-color: var(--accent); }

/* --- Auth cards: brand gradient top edge --- */
.auth-shell .card { border-top: 4px solid transparent; border-image: var(--grad-brand) 1; }

/* --- Topbar: active nav underline glow --- */
.admin-nav a.active { background: var(--grad-primary); }
.site-nav a { position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--grad-accent); transition: right .22s var(--ease);
}
.site-nav a:hover::after { right: 0; }

/* --- Pills: a touch more saturated --- */
.pill.green { background: #d9f2e6; }
.pill.amber { background: #fdeccb; }
.pill.blue  { background: #dcebfa; }

@media (prefers-reduced-motion: reduce) {
  .hero img.logo, .hero h1, .hero p.lead, .hero .hero-cta, .feature, .tile { animation: none; }
}

/* ============================================================
   Landing content sections: stats, program, success stories, universities
   ============================================================ */

.stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 16px; max-width: 900px; margin: -26px auto 0; padding: 0 24px; position: relative; z-index: 2; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); text-align: center; padding: 18px 12px; }
.stat .n { font-family: "Spectral", serif; font-size: 30px; font-weight: 600; color: var(--primary); }
.stat .l { font-size: 13px; color: var(--muted); }

.prog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.prog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 26px; }
.prog-card h3 { font-family: "Spectral", serif; font-size: 20px; margin: 0 0 10px; }
.prog-card ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.prog-card .tagline { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }

.success-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; }
.student-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 24px; text-align: center; }
.student-card .avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; font-family: "Spectral", serif; font-size: 26px; font-weight: 600;
  color: #fff; background: var(--grad-primary); overflow: hidden; }
.student-card:nth-child(even) .avatar { background: var(--grad-accent); }
.student-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.student-card h4 { margin: 0 0 4px; font-size: 16px; }
.student-card .score { font-family: "Spectral", serif; font-size: 24px; font-weight: 600; color: var(--primary); }
.student-card .uni { font-size: 13px; color: var(--muted); margin-top: 4px; }

.uni-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.uni-pill { padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); font-size: 14px; font-weight: 500; color: var(--ink); }

.page-hero { text-align: center; padding: 56px 24px 40px;
  background: radial-gradient(800px 320px at 50% -10%, rgba(0,96,176,.12), transparent 65%); }
.page-hero h1 { font-family: "Spectral", serif; font-size: 36px; margin: 0 0 12px; letter-spacing: -0.02em; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-primary); color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.step h4 { margin: 0 0 6px; font-size: 15px; }
.step p { margin: 0; font-size: 13px; color: var(--muted); }
