/* ══════════════════════════════════════════════════════
   MUTATE.DEV PROSPECTUS — STYLESHEET
   prospectus.mutate.dev
   ══════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --blue: #2E6FF3;
  --blue-dark: #1a4fcf;
  --blue-light: #EBF1FE;
  --navy: #0B1728;
  --navy-mid: #132140;
  --white: #FFFFFF;
  --off-white: #F5F8FF;
  --text-body: #2a3a55;
  --text-muted: #6278a0;
  --grid-line: rgba(46, 111, 243, 0.08);
  --accent: #4AE0C4;
  --tag-bg: rgba(46, 111, 243, 0.10);
}

/* ── RESET ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--off-white);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ─────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(46, 111, 243, 0.18);
}

.tag.white {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.grid-bg {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── LOGO ──────────────────────────────────────────── */
.logo {
  max-height: 38px;
}

/* ── COVER ─────────────────────────────────────────── */
#cover {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

#cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 111, 243, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 111, 243, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

#cover::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(46, 111, 243, 0.22) 0%, transparent 65%);
  right: -150px;
  top: -150px;
  pointer-events: none;
}

.cover-nav {
  position: relative;
  z-index: 2;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cover-nav .logo-wordmark {
  color: var(--white);
}

.cover-nav .logo-icon {
  background: var(--blue);
}

.cover-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
}

.cover-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.cover-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cover-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.cover-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.cover-title em {
  font-style: normal;
  color: var(--blue);
}

.cover-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.60);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.cover-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.cover-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.cover-stat-num span {
  color: var(--blue);
}

.cover-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.cover-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.10);
  align-self: center;
}

.cover-footer {
  position: relative;
  z-index: 2;
  padding: 24px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cover-footer-left {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.cover-footer-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'DM Mono', monospace;
}

/* ── SECTION WRAPPER ───────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(46, 111, 243, 0.15);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-intro {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ── OVERVIEW CARDS ────────────────────────────────── */
#overview {
  background: var(--white);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(46, 111, 243, 0.08);
  border: 2px solid rgba(46, 111, 243, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.overview-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
}

.overview-card:hover {
  background: var(--off-white);
}

.overview-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.overview-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.overview-card-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.overview-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* ── AFFILIATION STRIP ─────────────────────────────── */
#affiliation {
  background: #F8FAFC;
  padding: 56px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.affiliation-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.affiliation-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(11, 23, 40, 0.4);
  white-space: nowrap;
}

.affiliation-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
  flex: 1;
}

.logo-box {
  height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.affiliation-logos img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.affiliation-logos img.logo-standard {
  max-height: 72px;
}

.affiliation-logos img.logo-favored {
  max-height: 104px;
}

.affiliation-logos img:hover {
  opacity: 1;
}

.backer-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
}

.backer-name {
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  max-width: 150px;
  line-height: 1.4;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.backer-item:hover .backer-name {
  opacity: 1;
  color: var(--blue);
}

/* ── CURRICULUM ────────────────────────────────────── */
#curriculum {
  background: var(--off-white);
}

.phase-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.phase-grid::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue) 0%, rgba(46, 111, 243, 0.1) 100%);
  border-radius: 2px;
}

.phase-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 28px;
  padding: 0 0 36px;
  position: relative;
}

.phase-item:last-child {
  padding-bottom: 0;
}

.phase-bullet {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 6px var(--off-white);
}

.phase-bullet.muted {
  background: var(--navy-mid);
}

.phase-content {
  background: var(--white);
  border: 1.5px solid rgba(46, 111, 243, 0.10);
  border-radius: 16px;
  padding: 28px 32px;
  transition: border-color 0.2s;
}

.phase-content:hover {
  border-color: rgba(46, 111, 243, 0.30);
}

.phase-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.phase-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.phase-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.phase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.phase-tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--off-white);
  border: 1px solid rgba(46, 111, 243, 0.12);
  color: var(--text-body);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'DM Mono', monospace;
}

.phase-goal {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(46, 111, 243, 0.07);
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
}

.phase-duration {
  font-size: 11px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 100px;
  padding: 3px 10px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}

/* ── PROJECTS ──────────────────────────────────────── */
#projects {
  background: var(--white);
}

.projects-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.project-card {
  border: 1.5px solid rgba(46, 111, 243, 0.10);
  border-radius: 16px;
  padding: 32px;
  background: var(--off-white);
}

.project-card.featured {
  background: var(--navy);
  border-color: transparent;
  grid-column: 1 / -1;
}

.project-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-family: 'DM Mono', monospace;
}

.project-card.featured .project-card-num {
  color: rgba(255, 255, 255, 0.40);
}

.project-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.project-card.featured .project-card-title {
  color: var(--white);
  font-size: 24px;
}

.project-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.project-card.featured .project-card-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
}

.project-features {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pf-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(46, 111, 243, 0.08);
  color: var(--blue);
  border: 1px solid rgba(46, 111, 243, 0.15);
}

.project-card.featured .pf-tag {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.70);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ── INSTRUCTOR ────────────────────────────────────── */
#instructor {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

#instructor::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 111, 243, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 111, 243, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.instructor-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.instructor-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.instructor-name {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.instructor-role {
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 28px;
}

.instructor-bio {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.exp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 7px;
}

.exp-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.exp-text strong {
  color: var(--white);
  font-weight: 600;
}

.instructor-years {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 111, 243, 0.15);
  border: 1px solid rgba(46, 111, 243, 0.30);
  border-radius: 100px;
  padding: 10px 20px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* ── LEARNING MODEL ────────────────────────────────── */
#learning {
  background: var(--off-white);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.model-card {
  background: var(--white);
  border: 1.5px solid rgba(46, 111, 243, 0.10);
  border-radius: 16px;
  padding: 32px;
}

.model-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.model-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.model-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.model-highlight {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ── GUARANTEE ─────────────────────────────────────── */
#guarantee {
  background: var(--white);
}

.guarantee-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.guarantee-hero {
  background: var(--blue);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.guarantee-hero::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  right: -60px;
  bottom: -60px;
}

.guarantee-hero-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.guarantee-hero-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.guarantee-stat {
  margin-bottom: 16px;
}

.guarantee-stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}

.guarantee-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  font-weight: 500;
  margin-top: 2px;
}

.guarantee-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 24px 0;
}

.guarantee-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.guarantee-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gs-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gs-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.gs-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.guarantee-eligibility {
  margin-top: 32px;
  background: var(--off-white);
  border: 1.5px solid rgba(46, 111, 243, 0.10);
  border-radius: 14px;
  padding: 24px 28px;
}

.ge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.ge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ge-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.ge-list li::before {
  content: '✓';
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}

/* ── FEES ──────────────────────────────────────────── */
#fees {
  background: var(--off-white);
}

.fees-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.fee-card {
  background: var(--white);
  border: 1.5px solid rgba(46, 111, 243, 0.10);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

.fee-card.recommended {
  border-color: var(--blue);
  background: var(--blue);
}

.rec-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.fee-plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fee-card.recommended .fee-plan-name {
  color: rgba(255, 255, 255, 0.65);
}

.fee-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.fee-card.recommended .fee-amount {
  color: var(--white);
}

.fee-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.fee-card.recommended .fee-sub {
  color: rgba(255, 255, 255, 0.60);
}

.fee-divider {
  height: 1px;
  background: rgba(46, 111, 243, 0.08);
  margin-bottom: 20px;
}

.fee-card.recommended .fee-divider {
  background: rgba(255, 255, 255, 0.15);
}

.fee-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fee-perks li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.fee-card.recommended .fee-perks li {
  color: rgba(255, 255, 255, 0.70);
}

.fee-perks li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.fee-card.recommended .fee-perks li::before {
  color: rgba(255, 255, 255, 0.80);
}

.fees-note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.fees-note strong {
  color: var(--navy);
}

/* ── REFUND TABLE ──────────────────────────────────── */
.refund-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 13px;
}

.refund-table th {
  text-align: left;
  padding: 10px 12px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(46, 111, 243, 0.1);
  font-size: 10px;
}

.refund-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(46, 111, 243, 0.05);
  color: var(--navy);
  font-weight: 500;
}

.refund-table tr:last-child td {
  border-bottom: none;
}

.refund-table tr:hover td {
  background: rgba(46, 111, 243, 0.02);
}

/* ── ELIGIBILITY ───────────────────────────────────── */
#eligibility {
  background: var(--white);
}

.elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.elig-card {
  border: 1.5px solid rgba(46, 111, 243, 0.10);
  border-radius: 16px;
  padding: 32px;
}

.elig-card.green {
  background: #f0faf7;
  border-color: rgba(74, 224, 196, 0.25);
}

.elig-card.amber {
  background: #fffaf0;
  border-color: rgba(251, 191, 36, 0.25);
}

.elig-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.elig-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.elig-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.elig-list .elig-check {
  color: #10b981;
  font-weight: 800;
}

.elig-list .elig-info {
  color: #f59e0b;
  font-weight: 800;
}

/* ── CTA ───────────────────────────────────────────── */
#cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 111, 243, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 111, 243, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

#cta::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 111, 243, 0.18) 0%, transparent 65%);
  left: -100px;
  bottom: -100px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-url {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s;
}

.cta-url:hover {
  background: var(--blue-dark);
}

.cta-footnote {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'DM Mono', monospace;
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: #060e1a;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.20);
}

.footer-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.20);
  font-family: 'DM Mono', monospace;
}

/* ── PRINT / PAGE BREAKS ───────────────────────────── */
@media print {
  #cover {
    min-height: unset;
    page-break-after: always;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (768px – 1080px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .container {
    padding: 0 32px;
  }

  .section {
    padding: 72px 0;
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instructor-inner {
    gap: 40px;
  }

  .fees-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .guarantee-layout {
    gap: 28px;
  }

  .guarantee-hero-title {
    font-size: 28px;
  }

  .guarantee-stat-num {
    font-size: 34px;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Cover */
  .cover-nav {
    padding: 20px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .cover-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .cover-body {
    padding: 40px 20px;
  }

  .cover-title {
    font-size: clamp(32px, 9vw, 48px);
    margin-bottom: 20px;
  }

  .cover-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .cover-stats {
    gap: 20px;
  }

  .cover-divider {
    display: none;
  }

  .cover-stat-num {
    font-size: 22px;
  }

  .cover-stat-label {
    font-size: 11px;
  }

  .cover-footer {
    padding: 16px 20px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* Sections */
  .section {
    padding: 56px 0;
  }

  .section-intro {
    margin-bottom: 36px;
    font-size: 15px;
  }

  /* Overview */
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-card {
    padding: 28px 24px;
  }

  /* Affiliation */
  #affiliation {
    padding: 32px 0;
  }

  .affiliation-inner {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .affiliation-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .affiliation-logos img {
    height: 40px;
  }

  .affiliation-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .logo-box {
    height: 90px;
    margin-bottom: 6px;
  }

  .affiliation-logos img.logo-standard {
    max-height: 52px;
  }

  .affiliation-logos img.logo-favored {
    max-height: 76px;
  }

  .backer-item {
    gap: 10px;
    width: 100%;
    min-width: unset;
  }

  .backer-name {
    font-size: 8px;
    max-width: 130px;
  }

  /* Curriculum */
  .phase-grid::before {
    left: 20px;
  }

  .phase-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .phase-bullet {
    width: 44px;
    height: 44px;
    font-size: 13px;
    border-radius: 12px;
  }

  .phase-content {
    padding: 22px 20px;
  }

  .phase-name {
    font-size: 17px;
  }

  .phase-desc {
    font-size: 13px;
  }

  /* Projects */
  .projects-layout {
    grid-template-columns: 1fr;
  }

  .project-card.featured {
    grid-column: 1;
  }

  .project-card {
    padding: 24px;
  }

  .project-card.featured .project-card-title {
    font-size: 20px;
  }

  /* Instructor */
  .instructor-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .instructor-name {
    font-size: 30px;
  }

  /* Learning Model */
  .model-grid {
    grid-template-columns: 1fr;
  }

  .model-card {
    padding: 24px;
  }

  /* Guarantee */
  .guarantee-layout {
    grid-template-columns: 1fr;
  }

  .guarantee-hero {
    padding: 32px 24px;
  }

  .guarantee-hero-title {
    font-size: 26px;
  }

  .guarantee-stat-num {
    font-size: 32px;
  }

  .guarantee-eligibility {
    padding: 20px;
  }

  /* Fees */
  .fees-layout {
    grid-template-columns: 1fr;
  }

  .fee-card {
    padding: 28px 24px;
  }

  /* Eligibility */
  .elig-grid {
    grid-template-columns: 1fr;
  }

  .elig-card {
    padding: 24px;
  }

  /* CTA */
  #cta {
    padding: 56px 0;
  }

  .cta-url {
    padding: 14px 32px;
    font-size: 15px;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (< 400px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }

  .cover-nav {
    padding: 16px;
  }

  .cover-body {
    padding: 32px 16px;
  }

  .cover-footer {
    padding: 16px;
  }

  .cover-title {
    font-size: 28px;
  }

  .cover-eyebrow {
    font-size: 10px;
  }

  .cover-sub {
    font-size: 14px;
  }

  .cover-stats {
    flex-direction: column;
    gap: 16px;
  }

  .section {
    padding: 44px 0;
  }

  .phase-item {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .phase-bullet {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 10px;
  }

  .phase-grid::before {
    left: 17px;
  }

  .phase-content {
    padding: 18px 16px;
  }

  .guarantee-hero {
    padding: 24px 20px;
  }

  .guarantee-hero-title {
    font-size: 22px;
  }

  #cta {
    padding: 44px 0;
  }
}