:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --surface-2: #18181f;
  --border: #1e1e28;
  --text: #e8e8f0;
  --text-2: #9898a8;
  --text-3: #5c5c6e;
  --accent: #4f8ef7;
  --accent-2: #f7c94f;
  --accent-3: #8f4ff7;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  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 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-dot {
  width: 7px;
  height: 7px;
  background: #3ecf6e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(62, 207, 110, 0.6);
  animation: pulse 2s infinite;
}
.nav-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  margin-bottom: 28px;
}
.eyebrow-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(79, 142, 247, 0.3);
  padding: 6px 14px;
  border-radius: 4px;
}
.hero-content {
  max-width: 700px;
}
.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline br { display: block; }
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: 'DM Mono', monospace;
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 13px;
  color: var(--text-3);
  max-width: 120px;
  line-height: 1.4;
}

/* SECTIONS */
.automations, .howitworks, .testimonials, .vision {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 56px;
}
.section-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  max-width: 560px;
}

/* AUTOMATIONS GRID */
.automation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.automation-card {
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.automation-card:hover { background: var(--surface-2); }
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.automation-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.automation-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* HOW IT WORKS */
.howitworks { border-top: 1px solid var(--border); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
}
.step {
  flex: 1;
  padding-right: 0;
}
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.step-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.step-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: var(--border);
  margin: 28px 24px 0;
}
.process-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  max-width: 600px;
}
.process-callout p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}
.process-callout strong { color: var(--text); }

/* TESTIMONIALS / INSIGHTS */
.testimonials {
  border-top: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  margin: 0 32px 0;
  max-width: calc(1100px - 64px);
  width: calc(100% - 64px);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.insight { display: flex; flex-direction: column; gap: 12px; }
.insight-stat {
  font-family: 'DM Mono', monospace;
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.insight-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.quote-block {
  border-left: 2px solid var(--accent);
  padding-left: 28px;
}
.quote-block blockquote {
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.quote-block cite {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* VISION */
.vision {
  border-top: 1px solid var(--border);
}
.vision-content {
  max-width: 680px;
}
.vision-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px;
}
.vision-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 32px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-family: 'DM Mono', monospace;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  display: block;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.footer-col span {
  font-size: 13px;
  color: var(--text-2);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-3);
  font-family: 'DM Mono', monospace;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero-headline { font-size: 42px; }
  .hero-stats { gap: 24px; }
  .stat-value { font-size: 26px; }
  .automations, .howitworks, .testimonials, .vision { padding: 60px 20px; }
  .testimonials { margin: 0 20px; width: calc(100% - 40px); }
  .automation-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector {
    width: 1px;
    height: 32px;
    margin: 0 0 0 0;
    align-self: stretch;
    background: var(--border);
  }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 32px; flex-wrap: wrap; }
}