:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface2: #1e1e1e;
  --fg: #f0f0f0;
  --fg-muted: #888;
  --accent: #00E060;
  --accent-dim: rgba(0,224,96,0.12);
  --border: #2a2a2a;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  padding: 3px 10px;
  background: var(--surface2);
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,224,96,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Hero right — mockup stack */
.mockup-stack {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.mockup-thumb {
  flex: 1;
}
.mockup-thumb.highlighted {
  transform: translateY(24px);
}
.thumb-preview.gaming {
  background: #1a1a2e;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.mockup-thumb.highlighted .thumb-preview.gaming {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(0,224,96,0.15);
}
.thumb-game {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(240,240,240,0.4);
  margin-bottom: 6px;
}
.thumb-hook {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: rgba(240,240,240,0.5);
  line-height: 1.2;
  margin-bottom: 12px;
}
.thumb-hook.strong {
  color: var(--fg);
}
.thumb-face {
  width: 36px;
  height: 36px;
}
.thumb-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 28px;
  height: 28px;
}
.mockup-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 8px;
}
.mockup-label.ctr {
  color: var(--accent);
  font-weight: 600;
}

/* Pains */
.pains { background: var(--surface); padding: 100px 0; }
.pains .section-headline { margin-bottom: 56px; max-width: 500px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.pain-icon {
  width: 40px;
  height: 40px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.pain-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Services */
.services { padding: 100px 0; }
.services-header { margin-bottom: 56px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(0,224,96,0.4); }
.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}
.service-icon.green { color: var(--accent); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Process */
.process { background: var(--surface); padding: 100px 0; }
.process .section-headline { margin-bottom: 60px; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.step-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.step-arrow {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pricing */
.pricing { padding: 100px 0; }
.pricing .section-headline { margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card.featured {
  background: var(--surface2);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(0,224,96,0.1);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 20px;
  color: var(--fg-muted);
  font-weight: 400;
}
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Closing */
.closing {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1a0d 100%);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-content { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 20px;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
}
.footer-tag {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 80px;
  }
  .mockup-stack { flex-direction: row; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .stat { flex: 1; min-width: 120px; }
  .pain-grid,
  .service-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 16px; }
  .step-arrow { display: none; }
  .section-inner { padding: 0 24px; }
  .nav { padding: 16px 24px; }
}