:root {
  --bg: #0c0f14;
  --bg-elevated: #141820;
  --bg-card: #1a1f2a;
  --fg: #e8e6e1;
  --fg-muted: #9a9690;
  --fg-dim: #6b6760;
  --accent: #e8a44a;
  --accent-soft: rgba(232, 164, 74, 0.12);
  --accent-glow: rgba(232, 164, 74, 0.25);
  --green: #5cb87a;
  --green-soft: rgba(92, 184, 122, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
}

* { 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.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* --- HERO --- */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
}

.hero-badge span { font-size: 16px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  max-width: 780px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.6;
}

/* --- PROOF BAR --- */
.proof-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.proof-item .proof-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-item .proof-label {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* --- SERVICES --- */
.services {
  padding: 100px 0;
}

.section-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 600px;
}

.section-desc {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(232, 164, 74, 0.2);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-elevated);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.step {
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(232, 164, 74, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* --- NICHES --- */
.niches {
  padding: 100px 0;
}

.niches-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.niche-pill {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  transition: border-color 0.3s, background 0.3s;
}

.niche-pill:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* --- CLOSING --- */
.closing {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing .container { position: relative; z-index: 1; }

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

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

footer p {
  color: var(--fg-dim);
  font-size: 14px;
}

footer a {
  color: var(--fg-muted);
  text-decoration: none;
}

footer a:hover { color: var(--accent); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero { min-height: auto; padding: 80px 0 60px; }

  .hero h1 { font-size: 38px; }

  .section-title { font-size: 30px; }

  .closing h2 { font-size: 32px; }

  .niches-flex { gap: 8px; }
  .niche-pill { padding: 10px 20px; font-size: 14px; }
}

@media (max-width: 480px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  body { font-size: 16px; }

  .container { padding: 0 20px; }
}

/* --- SITE HEADER (landing nav) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(12, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.site-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.site-login-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}

.site-login-btn:hover {
  color: var(--accent);
  border-color: rgba(232, 164, 74, 0.3);
}