:root {
  --bg: #0A0F1E;
  --bg-card: #111827;
  --bg-elevated: #1a2438;
  --fg: #F0F4FF;
  --fg-muted: #8B9EC7;
  --accent-cyan: #00D4FF;
  --accent-amber: #F59E0B;
  --accent-green: #10B981;
  --accent-red: #EF4444;
  --border: #1E2D4A;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.logo-accent { color: var(--accent-cyan); }
.nav-status {
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* SECTION UTILITIES */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-inner.narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  color: var(--fg);
}

/* HERO */
.hero {
  padding: 60px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left { position: relative; }
.hero-right {}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
}

/* DASHBOARD WIDGET */
.dashboard-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.dash-header {
  background: var(--bg-elevated);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.dash-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--accent-green);
  font-weight: 600;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 1.5s infinite;
}
.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.dash-stat {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.dash-stat:last-child { border-right: none; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-value.cyan { color: var(--accent-cyan); }
.stat-value.amber { color: var(--accent-amber); }
.stat-value.green { color: var(--accent-green); }
.stat-label {
  font-size: 0.65rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash-feed {
  padding: 16px 18px;
}
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(30,45,74,0.5);
}
.feed-item:last-child { border-bottom: none; }
.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.feed-dot.cyan { background: var(--accent-cyan); box-shadow: 0 0 6px var(--accent-cyan); }
.feed-dot.green { background: var(--accent-green); box-shadow: 0 0 6px var(--accent-green); }
.feed-dot.amber { background: var(--accent-amber); box-shadow: 0 0 6px var(--accent-amber); }

/* FEATURES */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* TRIGGERS */
.triggers { background: var(--bg-elevated); }
.triggers-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.trigger-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.trigger-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent-cyan);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 2px;
}
.trigger-content h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.trigger-content p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes { background: var(--bg); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.outcome-stat {
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: center;
}
.outcome-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.outcome-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* PHILOSOPHY */
.philosophy { background: var(--bg-elevated); }
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--fg);
  border-left: 3px solid var(--accent-cyan);
  padding-left: 28px;
  margin-bottom: 32px;
}
.philosophy-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.philosophy-body:last-child { margin-bottom: 0; }

/* CLOSING */
.closing { background: var(--bg); }
.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .features-grid { grid-template-columns: 1fr; }
  .triggers-list { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-stats { grid-template-columns: 1fr; }
  .dash-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .dash-stat:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 56px 16px; }
  .section-inner.narrow { padding: 56px 16px; }
  .hero { padding: 40px 16px 60px; }
  .philosophy-quote { font-size: 1.2rem; padding-left: 20px; }
}