:root {
  --bg: #0c0c0e;
  --bg-surface: #161619;
  --bg-elevated: #1e1e22;
  --fg: #f0ede8;
  --fg-muted: #9b978f;
  --accent: #e8a849;
  --accent-glow: rgba(232, 168, 73, 0.15);
  --green: #6bca7a;
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* === NAV === */
.nav {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  border: 1px solid rgba(155, 151, 143, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.04);
}
.nav-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.2s;
  margin-left: 8px;
}
.nav-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  background: transparent;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(155,151,143,0.25);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-glow); }

/* === HERO CTAS === */
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* === CLOSING CTAS === */
.closing-ctas {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === HERO === */
.hero {
  padding: 100px 0 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  max-width: 750px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
}

/* === STATS BAR === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(155, 151, 143, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 80px 0;
}
.stat {
  background: var(--bg-surface);
  padding: 36px 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
}

/* === PROBLEM / SOLUTION === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
  align-items: start;
}
.split-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.split-label.problem { color: #e85454; }
.split-label.solution { color: var(--green); }
.split h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.split p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* === SERVICES === */
.services {
  padding: 80px 0;
}
.services-header {
  margin-bottom: 56px;
}
.services-header h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.services-header p {
  color: var(--fg-muted);
  font-size: 17px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-surface);
  border: 1px solid rgba(155, 151, 143, 0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s;
}
.service-card:hover {
  border-color: rgba(232, 168, 73, 0.3);
}
.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* === DIFFERENTIATOR === */
.diff {
  padding: 80px 0;
  border-top: 1px solid rgba(155, 151, 143, 0.08);
}
.diff h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
  max-width: 600px;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-item {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 3px solid var(--accent);
}
.diff-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.diff-item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 100px 0 60px;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing h2 em {
  font-style: normal;
  color: var(--accent);
}
.closing p {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(155, 151, 143, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-muted);
}
.footer-brand span { color: var(--accent); }
.footer-text {
  font-size: 13px;
  color: rgba(155, 151, 143, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
  .nav-tag { display: none; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { letter-spacing: -1px; }
}