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

:root {
  --bg: #0c0f14;
  --bg-2: #111520;
  --bg-card: #141820;
  --amber: #f59e0b;
  --amber-dim: rgba(245,158,11,0.12);
  --amber-glow: rgba(245,158,11,0.08);
  --text: #e8e2d9;
  --text-muted: #6b7280;
  --text-dim: #9ca3af;
  --border: rgba(255,255,255,0.06);
  --radius: 6px;
  --radius-lg: 12px;
  --font-display: 'Cabinet Grotesk', system-ui, sans-serif;
  --font-body: 'General Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(12,15,20,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
}
.nav-name { letter-spacing: -0.02em; }
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Sections base */
section { padding: 96px 32px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-dim);
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 96px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

/* Ticker */
.hero-ticker {
  border-left: 1px solid var(--amber-dim);
  padding-left: 20px;
}
.ticker-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.ticker-items { display: flex; flex-direction: column; gap: 8px; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}
.ticker-check {
  color: var(--amber);
  font-size: 12px;
}

/* Automations card */
.automations-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.automations-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
}
.automations-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.automation-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.automation-row:last-of-type { border-bottom: none; }
.auto-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.auto-info { flex: 1; }
.auto-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-display);
}
.auto-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.auto-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 20px;
}
.auto-status.live {
  background: rgba(16,185,129,0.12);
  color: #10b981;
  animation: blip 3s ease-in-out infinite;
}
@keyframes blip {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.automations-footer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* How it works */
.how-it-works {
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.step {
  flex: 1;
  padding: 0 32px 0 0;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 24px;
  flex-shrink: 0;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--amber-dim);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Services */
.services {
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-card);
  padding: 32px;
  transition: background 0.2s ease;
}
.service-card:hover { background: var(--bg-2); }
.service-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}
.service-card-cta {
  background: linear-gradient(135deg, var(--bg-card), rgba(245,158,11,0.04));
  display: flex;
  align-items: center;
}
.service-cta-inner { width: 100%; }
.cta-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.cta-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}
.cta-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}
.cta-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.05em;
}

/* Testimonials */
.testimonials {
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
}
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.vertical {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.vertical-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.vertical-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.vertical-case {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Closing */
.closing { padding: 120px 32px; }
.closing-inner { max-width: 700px; }
.closing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber-dim);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-sub {
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-vision {
  border-left: 2px solid var(--amber-dim);
  padding-left: 24px;
}
.closing-vision p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.closing-vision p:last-child {
  color: var(--amber);
  font-style: italic;
  font-size: 17px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { display: none; }
  .steps-grid {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector {
    width: 40px;
    height: 1px;
    margin: 0;
    background: var(--border);
  }
  .services-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 20px; }
  .hero { padding: 64px 20px; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 38px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}