/* Fonts */
:root {
  --bg: #0b0f1a;
  --bg-card: #131929;
  --fg: #e8eaf0;
  --fg-muted: #8892a4;
  --accent: #f59e0b;
  --accent-dim: #b47706;
  --green: #22c55e;
  --border: #1e2636;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Automation Card */
.automation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.card-dot.green { background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.card-label { font-size: 0.8rem; color: var(--fg-muted); font-weight: 500; }
.card-flow { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.flow-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  width: 100%;
}
.flow-icon { font-size: 1.2rem; }
.flow-text { font-size: 0.9rem; color: var(--fg); }
.flow-arrow { font-size: 1.1rem; color: var(--fg-muted); padding-left: 2.5rem; line-height: 1; }

/* What it does */
.what-it-does { padding: 5rem 0; background: var(--bg); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* Verticals */
.verticals { padding: 5rem 0; background: #0e1525; }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.vertical-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
}
.vertical-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.vertical-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.vertical-item p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

/* How it works */
.how-it-works { padding: 5rem 0; background: var(--bg); }
.steps { display: flex; flex-direction: column; gap: 2.5rem; max-width: 680px; }
.step { display: flex; gap: 2rem; align-items: flex-start; }
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 80px;
  letter-spacing: -0.05em;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-content p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* Pricing */
.pricing { padding: 5rem 0; background: #0e1525; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(245,158,11,0.05);
}
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}
.pricing-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.pricing-period { font-size: 1.2rem; font-weight: 600; }
.pricing-desc { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Closing */
.closing { padding: 7rem 0; background: var(--bg); }
.closing-content { max-width: 760px; }
.closing-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.closing-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.75; max-width: 600px; }

/* Footer */
.footer { padding: 3rem 0; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* Mobile */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2rem; }
  .hero-right { order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 0.5rem; }
  .step-number { font-size: 1.8rem; }
  .nav-tagline { display: none; }
}