:root {
  --bg: #0d0d0f;
  --surface: #141417;
  --surface2: #1c1c20;
  --accent: #c8f135;
  --accent-dim: rgba(200, 241, 53, 0.12);
  --text: #f2ede6;
  --text-muted: rgba(242, 237, 230, 0.55);
  --text-dim: rgba(242, 237, 230, 0.25);
  --border: rgba(242, 237, 230, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  padding: 100px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
}
.hero-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(200, 241, 53, 0.06);
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* PROOF STRIP */
.proof {
  padding: 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
}
.proof-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 120px;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* SECTION LABELS */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
}

/* AUTOMATION */
.automation {
  padding: 100px 60px;
}
.auto-header {
  margin-bottom: 60px;
}
.auto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.auto-card {
  background: var(--surface);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.auto-card:hover {
  background: var(--surface2);
}
.auto-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.auto-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.auto-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* PRODUCTS */
.products {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.products-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.products-image {
  width: 100%;
  height: auto;
  display: block;
}
.products-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  margin-top: 16px;
}
.niche-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.niche-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}
.niche-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 28px;
  font-style: normal;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 60px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-legal {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero {
    padding: 60px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-image-wrap { order: -1; }
  .proof { padding: 48px 24px; }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .proof-divider { display: none; }
  .automation { padding: 60px 24px; }
  .auto-grid { grid-template-columns: 1fr 1fr; }
  .products {
    padding: 60px 24px;
    grid-template-columns: 1fr;
  }
  .manifesto { padding: 60px 24px; }
  .footer { padding: 48px 24px; }
}

@media (max-width: 600px) {
  .auto-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .proof-number { font-size: 32px; }
  .nav-tagline { display: none; }
}