:root {
  --bg: #FAFAF7;
  --bg-alt: #F2F0EB;
  --fg: #0D1B2A;
  --fg-muted: #4A5568;
  --accent: #C9A84C;
  --accent-dark: #A8893A;
  --border: #E2DFD8;
  --card-bg: #FFFFFF;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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


html { scroll-behavior: smooth; }


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


/* ── Navigation ── */
.nav {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  padding: 6rem 2rem 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-overline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 44ch;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.06);
}
.hero-card--accent {
  border-color: var(--accent);
  background: linear-gradient(135deg, #1a2e4a 0%, #0D1B2A 100%);
  color: #fff;
}
.hero-card--accent .hero-card-label { color: rgba(255,255,255,0.7); }
.hero-card--accent .hero-card-sub { color: rgba(255,255,255,0.5); }
.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.hero-card-value {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-card--accent .hero-card-value { color: var(--accent); }
.hero-card-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── Stats ── */
.stats {
  background: var(--fg);
  padding: 4rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 2rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  max-width: 18ch;
  margin: 0 auto;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── Pillars ── */
.pillars {
  padding: 6rem 2rem;
  background: var(--bg);
}
.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.pillar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pillar:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.12);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.pillar-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.pillar-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Platform ── */
.platform {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.platform-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.platform-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-top: 1rem;
  margin-bottom: 2rem;
  max-width: 44ch;
}
.platform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.platform-list-item {
  font-size: 0.95rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}
.platform-list-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.platform-blockquote {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
}
.platform-blockquote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1rem;
}
.platform-blockquote cite {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: normal;
  font-weight: 500;
}

/* ── Closing ── */
.closing {
  padding: 7rem 2rem;
  background: var(--fg);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 58ch;
  margin: 0 auto 1.25rem;
  line-height: 1.75;
}
.closing-sub:last-child {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.15rem;
}

/* ── Footer ── */
.footer {
  padding: 4rem 2rem;
  background: #060e1a;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.footer-copy {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  max-width: 48ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  max-width: 68ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-divider { display: none; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .platform-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .nav-tagline { display: none; }
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .pillars, .platform, .closing { padding: 4rem 1.25rem; }
}