:root {
  --bg: #08111f;
  --panel: #0f1d31;
  --panel-2: #13253d;
  --text: #e8eef8;
  --muted: #9eb0c8;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #4fd1c5;
  --accent-2: #7dd3fc;
  --danger: #fb7185;
  --success: #34d399;
  --warn: #fbbf24;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #06101d 0%, #0a1628 100%);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(6, 16, 29, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; padding: 1rem 0;
}
.brand { font-weight: 800; font-size: 1.2rem; letter-spacing: 0.03em; }
nav { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero, .section { padding: 5rem 0; }
.hero-grid, .demo-grid, .pricing-grid, .proof-grid, .feature-grid, .waitlist-box {
  display: grid; gap: 1.5rem;
}
.hero-grid { grid-template-columns: 1.2fr 1fr; align-items: center; }
.proof-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.demo-grid { grid-template-columns: 1fr 1.1fr; align-items: center; }
.pricing-grid { grid-template-columns: repeat(2, 1fr); }
.waitlist-box { grid-template-columns: 1fr 1fr; align-items: start; }
.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
.hero-copy, .section-heading p, .feature-card p, .plan-copy, .workflow-list, .waitlist-box p, .proof-grid p {
  color: var(--muted);
}
.hero-actions { display: flex; gap: 1rem; margin: 1.5rem 0; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.2rem; border-radius: 999px; border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #062033; font-weight: 800;
}
.btn-small { padding: 0.65rem 1rem; }
.btn-secondary {
  background: transparent; color: var(--text); border-color: var(--line);
}
.hero-points, .price-card ul, .workflow-list { padding-left: 1.1rem; }
.hero-card, .feature-card, .price-card, .dashboard-mock, .waitlist-form, .proof-grid > div {
  background: rgba(15, 29, 49, 0.85);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}
.hero-card, .dashboard-mock, .feature-card, .price-card, .proof-grid > div { padding: 1.4rem; }
.metric-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1rem;
}
.metric-label, .mock-label { display: block; color: var(--muted); font-size: 0.85rem; margin-bottom: 0.2rem; }
.pipeline-list { display: grid; gap: 0.8rem; }
.pipeline-item {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.9rem 1rem;
  border-radius: 14px; background: var(--panel-2); border: 1px solid var(--line); color: var(--muted);
}
.pipeline-item span:first-child { color: var(--text); }
.due-today { border-color: rgba(251, 191, 36, 0.45); }
.won { border-color: rgba(52, 211, 153, 0.35); }
.lost { border-color: rgba(251, 113, 133, 0.35); }
.section-dark { background: rgba(255,255,255,0.02); }
.section-accent { background: linear-gradient(180deg, rgba(79,209,197,0.08), rgba(125,211,252,0.04)); }
.section-heading { margin-bottom: 2rem; }
.section-heading.center { text-align: center; }
.feature-card h3, .price-card .plan-name { margin-bottom: 0.6rem; }
.price-card.featured { outline: 2px solid rgba(79, 209, 197, 0.5); transform: translateY(-4px); }
.price { font-size: 2.4rem; font-weight: 800; margin: 0 0 0.8rem; }
.price span { font-size: 1rem; color: var(--muted); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.8rem; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 600; }
.pill {
  display: inline-flex; align-items: center; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
}
.pill.warn { background: rgba(251, 191, 36, 0.15); color: var(--warn); }
.pill.success { background: rgba(52, 211, 153, 0.15); color: var(--success); }
.pill.neutral { background: rgba(125, 211, 252, 0.12); color: var(--accent-2); }
.waitlist-form { padding: 1.4rem; display: grid; gap: 1rem; }
.waitlist-form label { display: grid; gap: 0.45rem; font-weight: 600; }
.waitlist-form input, .waitlist-form select {
  padding: 0.9rem 1rem; border-radius: 14px; border: 1px solid var(--line); background: #091526; color: var(--text);
}
.form-message { min-height: 1.2rem; color: var(--accent); margin: 0; }
.site-footer { border-top: 1px solid var(--line); padding: 1.2rem 0 2rem; color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero-grid, .proof-grid, .feature-grid, .demo-grid, .pricing-grid, .waitlist-box { grid-template-columns: 1fr; }
  nav { display: none; }
}
