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

:root {
  --bg: #0d0d0d;
  --surface: #161616;
  --surface-2: #1e1e1e;
  --border: #2a2a2a;
  --text: #f0ece4;
  --text-muted: #888;
  --accent: #d4a847;
  --accent-dim: #a07c2e;
  --positive: #5cb85c;
}

html { font-size: 16px; }

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: default;
}

/* HERO */
.hero {
  padding: 140px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
}

/* UI PANEL */
.hero-ui {
  display: flex;
  justify-content: center;
}

.ui-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
}

.ui-panel-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.ui-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ui-dot.red { background: #ff5f57; }
.ui-dot.amber { background: #febc2e; }
.ui-dot.green { background: #28c840; }

.ui-panel-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: 0.04em;
}

.ui-body { padding: 20px; }

.ui-metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.ui-metric-label { font-size: 0.78rem; color: var(--text-muted); }

.ui-metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.ui-metric-value.positive { color: var(--positive); }

.ui-list-header {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 0 8px;
}

.ui-list-item {
  font-size: 0.82rem;
  color: var(--text);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ui-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* MODULES */
.modules {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.modules-header { margin-bottom: 48px; }

.modules-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.module-card {
  background: var(--surface);
  padding: 32px;
}

.module-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.module-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.module-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-body:last-child { margin-bottom: 0; }

/* CLOSING */
.closing {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.closing-stats {
  display: flex;
  align-items: center;
  gap: 48px;
}

.stat-item { text-align: left; }

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header { padding: 0 24px; }
  .header-nav { display: none; }

  .hero {
    padding: 100px 24px 60px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-headline { font-size: 2.2rem; }
  .hero-sub { max-width: 100%; }

  .modules { padding: 60px 24px; }
  .modules-grid { grid-template-columns: 1fr; }

  .manifesto { padding: 60px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }

  .closing { padding: 60px 24px; }
  .closing-headline { font-size: 2rem; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }

  .closing-stats { gap: 28px; flex-wrap: wrap; }
  .stat-value { font-size: 1.8rem; }
}