:root {
  --bg: #080b12;
  --bg-2: #0d1117;
  --surface: #131922;
  --surface-2: #1a2232;
  --border: #1e2a3a;
  --text: #e8edf5;
  --text-2: #8892a4;
  --text-3: #4a5568;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-mid: rgba(245, 158, 11, 0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

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

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 11, 18, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
}
.tagline {
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--font-body);
}

/* Hero */
.hero {
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

/* Dashboard Widget */
.hero-dashboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.05), 0 40px 80px rgba(0,0,0,0.5);
}
.dash-header {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dot.red { background: #ef4444; }
.dash-dot.amber { background: #f59e0b; }
.dash-dot.green { background: #22c55e; }
.dash-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  margin-left: 8px;
}
.dash-metrics {
  display: flex;
  padding: 20px 24px;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.metric {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}
.metric:not(:last-child) {
  border-right: 1px solid var(--border);
}
.metric-val {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.metric-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dash-chart {
  padding: 16px 24px 0;
}
.dash-chart svg { width: 100%; height: 80px; }
.dash-clients {
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.client-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.client-bar span {
  font-size: 11px;
  color: var(--text-2);
  width: 90px;
  flex-shrink: 0;
}
.bar {
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.7;
}

.hero-bg-accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Stats */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.stat-item {
  flex: 1;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 100px 40px;
}
.features-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.features-header p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 500px;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 40px 36px;
}
.feature-icon {
  margin-bottom: 20px;
}
.feature h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.feature p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 24px;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 24px;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.manifesto-inner > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}
.closing-rings {
  width: 140px;
  height: 140px;
  margin: 0 auto 40px;
}
.closing-rings svg { width: 100%; height: 100%; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 18px;
  color: var(--text-2);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-2);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { padding: 40px 20px; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .features { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 20px; }
  .closing { padding: 60px 20px; }
  .footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .closing-rings { width: 100px; height: 100px; }
}