:root {
  --bg: #0c1220;
  --bg-card: #111d2e;
  --bg-surface: #162035;
  --fg: #f0ede6;
  --fg-muted: #8a9bb5;
  --accent: #e8b84b;
  --accent-warm: #c97c2e;
  --terracotta: #d4624b;
  --border: rgba(232, 184, 75, 0.12);
  --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;
}

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 80px 48px 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  font-style: italic;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-stats-panel {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  gap: 0;
  backdrop-filter: blur(12px);
}
.stat { padding: 0 16px; }
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  font-style: italic;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 4px;
}

/* ── Watchtower ── */
.watchtower { padding: 80px 48px; }
.watchtower-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.watchtower-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.watchtower-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.watchtower-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
  font-style: italic;
}
.watchtower-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── Features ── */
.features { padding: 80px 48px; background: var(--bg-surface); }
.features-header { text-align: center; margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; }
.features-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--fg);
  font-style: italic;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(232, 184, 75, 0.3); }
.feature-card--wide { grid-column: span 1; }
.feature-card-icon { margin-bottom: 16px; }
.feature-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 10px;
}
.feature-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }

/* ── Manifesto ── */
.manifesto { padding: 80px 48px; }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-label { margin-bottom: 32px; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.4;
  color: var(--fg);
  font-style: italic;
  max-width: 820px;
  margin-bottom: 12px;
}
.manifesto-source {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  margin-bottom: 56px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.m-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  font-style: italic;
  line-height: 1;
  margin-bottom: 10px;
}
.m-stat-desc { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.5; }

/* ── Closing ── */
.closing { padding: 100px 48px 80px; }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ── Footer ── */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 10px; }
.footer-name { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--fg); }
.footer-tagline { font-size: 0.78rem; color: var(--fg-muted); margin-bottom: 6px; letter-spacing: 0.04em; }
.footer-copy { font-size: 0.72rem; color: rgba(138, 155, 181, 0.5); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner, .watchtower-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats-panel { position: static; margin-top: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 24px; }
  .nav { padding: 16px 24px; }
  .hero, .watchtower, .features, .manifesto, .closing { padding: 60px 24px 40px; }
}
@media (max-width: 600px) {
  .hero-stats-panel { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}