:root {
  --bg: #0a1628;
  --bg-card: #0d1a26;
  --bg-card-alt: #0f2035;
  --fg: #f4f0e8;
  --fg-muted: #a8a090;
  --accent: #c8763a;
  --accent-light: #e8a84a;
  --accent-dim: rgba(200, 118, 58, 0.12);
  --border: rgba(200, 118, 58, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.navbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  display: block;
  line-height: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  padding-right: 28px;
}
.stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-light);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 28px;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.circuit-art svg {
  width: 100%;
  max-width: 320px;
}

/* ── PILLARS ── */
.pillars {
  padding: 72px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar-icon {
  margin-bottom: 16px;
}
.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.pillar-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CURRICULUM ── */
.curriculum {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.curriculum-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 40px;
}
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
}
.course-level {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.course-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.course-topics {
  list-style: none;
}
.course-topics li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}
.course-topics li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.course-topics li:last-child {
  border-bottom: none;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 72px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent-light);
  margin-bottom: 24px;
  font-style: normal;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 48px;
}
.closing-logo {
  display: inline-block;
  line-height: 0;
}
.closing-logo img {
  height: 60px;
  width: auto;
}

/* ── FOOTER ── */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-logo-link {
  display: block;
  line-height: 0;
}
.footer-logo-link img {
  height: 28px;
  width: auto;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.footer-contact-link {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact-link:hover { color: var(--fg); }
.footer-contact-sep {
  color: var(--fg-muted);
  font-size: 11px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-company {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 11px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar, .hero, .pillars, .curriculum, .manifesto, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    order: -1;
  }
  .circuit-art svg {
    max-width: 220px;
    margin: 0 auto;
    display: block;
  }
  .hero-title {
    font-size: 40px;
  }
  .pillars-grid, .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
  .closing-title {
    font-size: 36px;
  }
  .manifesto-quote {
    font-size: 22px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right {
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  .stat-num {
    font-size: 22px;
  }
}