:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --text: #e8e4dc;
  --text-muted: #8a8780;
  --accent: #ff4820;
  --accent-dim: rgba(255, 72, 32, 0.12);
  --border: rgba(232, 228, 220, 0.08);
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 100px 32px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* FORTYPE */
.fortype { padding: 72px 32px; border-bottom: 1px solid var(--border); }
.fortype-inner { max-width: 1100px; margin: 0 auto; }
.fortype-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.fortype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.fortype-card {
  background: var(--bg);
  padding: 36px 32px;
}
.fortype-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.fortype-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}
.fortype-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* AUTOMATIONS */
.automations { padding: 80px 32px; border-bottom: 1px solid var(--border); }
.automations-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.02em;
  color: var(--text);
}
.auto-list { display: flex; flex-direction: column; gap: 0; }
.auto-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.auto-item:last-child { border-bottom: none; }
.auto-num {
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 3px;
}
.auto-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}
.auto-body p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* APPROACH */
.approach { padding: 80px 32px; border-bottom: 1px solid var(--border); background: var(--surface); }
.approach-inner { max-width: 1100px; margin: 0 auto; }
.approach-badge {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.approach-col h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 14px;
}
.approach-col p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* OUTCOME */
.outcome { padding: 100px 32px; }
.outcome-inner { max-width: 1100px; margin: 0 auto; }
.outcome-content { max-width: 680px; }
.outcome-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 28px;
}
.outcome-body { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.outcome-sub { font-size: 14px; color: var(--text-muted); }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); }
.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-meta span { font-size: 13px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .fortype-grid, .approach-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
  .hero { padding: 72px 24px 60px; }
  .fortype, .automations, .approach, .outcome { padding: 56px 24px; }
  .site-footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .auto-item { grid-template-columns: 40px 1fr; gap: 16px; }
}