:root {
  --bg: #0C1824;
  --surface: #111D2B;
  --surface-alt: #162236;
  --fg: #F4EDE3;
  --fg-muted: rgba(244, 237, 227, 0.55);
  --accent: #FF5500;
  --accent-dim: rgba(255, 85, 0, 0.12);
  --border: rgba(244, 237, 227, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.navbar-brand .brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--fg);
}

.navbar-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 72px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

.stat-row {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
}

.stat-block {
  flex: 1;
  padding: 24px 20px;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-block + .stat-block {
  border-left: none;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
  line-height: 1.5;
}

.hero-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.hero-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── SHARED SECTION ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 48px;
}

/* ── THECIRCLE ── */
.thecircle {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.thecircle-inner {
  max-width: 1100px;
}

.circle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.circle-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.circle-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.circle-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}

.circle-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── CURRICULUM ── */
.curriculum {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.curriculum-inner {
  max-width: 1100px;
}

.week-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.week-item {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.week-item:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.week-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.week-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 28px 24px;
  min-width: 140px;
  border-right: 1px solid var(--border);
  background: var(--surface);
}

.week-content {
  padding: 28px 24px;
}

.week-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 10px;
}

.week-content p {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── WHAT YOU GET ── */
.whatyouget {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.wyog-inner {
  max-width: 1100px;
}

.deliverable-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.deliverable {
  display: flex;
  gap: 20px;
  padding: 28px 28px;
  border-bottom: 1px solid var(--border);
}

.deliverable:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.deliverable:nth-last-child(-n+2) {
  border-bottom: none;
}

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

.deliverable-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 6px;
}

.deliverable-text p {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.65;
}

.wyog-note {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
}

.manifesto-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 20px;
}

/* ── CLOSING ── */
.closing {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 900px;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 48px;
}

.closing-rule {
  height: 3px;
  width: 64px;
  background: var(--accent);
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
}

.footer-inner {
  max-width: 1100px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.footer-legal {
  font-size: 11px;
  font-weight: 300;
  color: rgba(244, 237, 227, 0.28);
  line-height: 1.7;
  max-width: 600px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .circle-grid {
    grid-template-columns: 1fr;
  }

  .week-grid {
    grid-template-columns: 1fr;
  }

  .week-item:nth-child(odd) {
    border-right: none;
  }

  .week-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .week-item:last-child {
    border-bottom: none;
  }

  .deliverable-list {
    grid-template-columns: 1fr;
  }

  .deliverable:nth-child(odd) {
    border-right: none;
  }

  .deliverable:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .deliverable:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; }
  .thecircle { padding: 56px 24px; }
  .curriculum { padding: 56px 24px; }
  .whatyouget { padding: 56px 24px; }
  .manifesto { padding: 56px 24px; }
  .closing { padding: 56px 24px; }
  .footer { padding: 40px 24px; }
  .stat-row { flex-direction: column; }
  .stat-block + .stat-block { border-left: 1px solid var(--border); border-top: none; }
}