@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
  --bg: #0f0f0f;
  --bg-card: #1a1a1a;
  --fg: #f5f0eb;
  --fg-muted: #a89f95;
  --accent: #e8603c;
  --accent-glow: #ff7a54;
  --accent-soft: rgba(232, 96, 60, 0.12);
  --warm: #f5c563;
  --warm-soft: rgba(245, 197, 99, 0.1);
  --sage: #7eb88a;
  --radius: 16px;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Syne', sans-serif;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* HERO */
.hero {
  padding: 120px 0 80px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-glow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--accent-glow);
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-proof .stat {
  display: flex;
  flex-direction: column;
}

.hero-proof .stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--warm);
}

.hero-proof .stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* VERTICALS */
.verticals {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.verticals h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.verticals .section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 48px;
}

.vert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.vert-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s;
}

.vert-card:hover {
  border-color: var(--accent);
}

.vert-card .vert-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.vert-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.vert-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* HOW IT WORKS */
.how {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.step {
  position: relative;
  padding-left: 48px;
}

.step-num {
  position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-glow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.feat-card .feat-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.feat-tag.autopilot { background: var(--accent-soft); color: var(--accent-glow); }
.feat-tag.smart { background: var(--warm-soft); color: var(--warm); }
.feat-tag.scale { background: rgba(126, 184, 138, 0.12); color: var(--sage); }

.feat-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto 20px;
}

.closing h2 .highlight {
  color: var(--accent-glow);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

footer p {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

footer .brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--fg);
  font-size: 1rem;
  margin-bottom: 8px;
}

/* HERO CTA BUTTONS */
.hero-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 12px;
  transition: background 0.2s;
}
.hero-cta-btn:hover { background: var(--accent-glow); }

.hero-ghost-btn {
  display: inline-block;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 0;
  transition: color 0.2s;
}
.hero-ghost-btn:hover { color: var(--fg); }

/* RESPONSIVE */
@media (max-width: 680px) {
  .hero { padding: 80px 0 60px; }
  .hero-proof { gap: 24px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .feat-grid { grid-template-columns: 1fr; }
  .vert-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .vert-grid { grid-template-columns: 1fr; }
}