:root {
  --bg: #0b0d12;
  --bg-surface: #13161f;
  --bg-elevated: #1a1e2a;
  --fg: #f0ede8;
  --fg-muted: #8b8a84;
  --accent: #e8b44f;
  --accent-dim: #c49030;
  --good: #3ecf8e;
  --warn: #f5a623;
  --border: #22263a;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(232, 180, 79, 0.12);
  border: 1px solid rgba(232, 180, 79, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(232,180,79,0.07) 0%, transparent 70%),
    var(--bg);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 780px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* DASHBOARD WIDGET */
.hero-dashboard {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 820px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.dash-header {
  background: var(--bg-elevated);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dash-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.dash-dot.red { background: #ff5f57; }
.dash-dot.yellow { background: #febc2e; }
.dash-dot.green { background: #28c840; }
.dash-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-left: 8px;
  font-family: var(--font-body);
}
.dash-body {
  padding: 28px 32px 24px;
}
.dash-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
}
.dash-col { display: flex; flex-direction: column; gap: 20px; }
.dash-metric { display: flex; flex-direction: column; gap: 4px; }
.dash-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.dash-value { font-size: 14px; font-weight: 500; color: var(--fg); }
.dash-good { color: var(--good); }

.dash-feed-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.dash-event {
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
}
.dash-event.ok {
  background: rgba(62, 207, 142, 0.06);
  border-left-color: rgba(62, 207, 142, 0.4);
  color: #a8f0d0;
}
.dash-event.warn {
  background: rgba(245, 166, 35, 0.08);
  border-left-color: rgba(245, 166, 35, 0.5);
  color: #fcd8a0;
}
.dash-time { font-size: 10px; opacity: 0.65; }

.dash-status-bar {
  margin-top: 24px;
  padding: 10px 16px;
  background: rgba(62, 207, 142, 0.08);
  border: 1px solid rgba(62, 207, 142, 0.15);
  border-radius: 8px;
  font-size: 12px;
  color: var(--good);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 8px var(--good);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* HOW IT WORKS */
.how {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.how-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 20px;
}
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 600px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
}
.step { display: flex; flex-direction: column; gap: 12px; }
.step-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: rgba(232, 180, 79, 0.2);
  line-height: 1;
  margin-bottom: 4px;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.features-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1100px;
}
.feature-card {
  background: var(--bg-elevated);
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-icon {
  color: var(--accent);
  width: 44px;
  height: 44px;
  background: rgba(232, 180, 79, 0.1);
  border: 1px solid rgba(232, 180, 79, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.manifesto p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto p:last-child { margin-bottom: 0; }

/* CLOSING */
.closing {
  padding: 120px 40px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 56px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(139, 138, 132, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 120px 24px 60px; }
  .dash-row { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .how, .features, .manifesto, .closing, .footer { padding: 64px 24px; }
  .nav { padding: 16px 24px; }
}