:root {
  --bg: #080b11;
  --surface: #0e1218;
  --surface-2: #141a23;
  --border: #1e2530;
  --fg: #e8edf5;
  --fg-2: #8a95a6;
  --fg-3: #505a6b;
  --accent: #ff4f1f;
  --accent-2: #4f8fff;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 32px;
  background: rgba(8, 11, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 79, 31, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(79, 143, 255, 0.04) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
.label-dot {
  width: 6px;
  height: 6px;
  background: #3dffa0;
  border-radius: 50%;
  box-shadow: 0 0 6px #3dffa0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--fg);
}
.highlight {
  display: block;
  color: var(--accent);
  -webkit-text-stroke: 0px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hero-bench {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.bench-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bench-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bench-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}
.bench-num.before { color: var(--fg-3); }
.bench-num.after { color: var(--accent); }
.bench-unit {
  font-size: 14px;
  color: var(--fg-3);
  font-weight: 500;
}
.bench-arrow {
  opacity: 0.4;
}
.hero-cta {
  font-size: 16px;
  color: var(--fg-2);
}
.hero-cta strong { color: var(--accent); }

/* BENCHMARKS */
.benchmarks { padding: 80px 32px; border-top: 1px solid var(--border); }
.benchmarks-inner { max-width: 900px; margin: 0 auto; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub { color: var(--fg-2); margin-bottom: 48px; font-size: 17px; }
.bench-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bench-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.bench-game {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-2);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bench-bar-wrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.bench-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.bench-bar-label { color: var(--fg-3); width: 38px; flex-shrink: 0; font-weight: 500; }
.bench-bar-fill {
  height: 6px;
  border-radius: 3px;
  flex: 1;
  max-width: 160px;
}
.before-fill { background: var(--fg-3); }
.after-fill { background: linear-gradient(90deg, var(--accent), #ff8c5a); }
.bench-bar-val { color: var(--fg-2); font-weight: 600; min-width: 60px; text-align: right; }
.bench-diff {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}

/* SERVICES */
.services { padding: 80px 32px; background: var(--surface); border-top: 1px solid var(--border); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(255, 79, 31, 0.3); }
.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 79, 31, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.service-card p { font-size: 14px; color: var(--fg-2); line-height: 1.6; }

/* PROCESS */
.process { padding: 80px 32px; border-top: 1px solid var(--border); }
.process-inner { max-width: 900px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}
.step { max-width: 220px; }
.step-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--fg-2); line-height: 1.6; }
.step-connector { padding: 0 24px; }

/* PRICING */
.pricing { padding: 80px 32px; background: var(--surface); border-top: 1px solid var(--border); }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-card {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 56px;
  text-align: left;
  margin-top: 40px;
}
.price-tag {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -3px;
}
.price-label {
  font-size: 18px;
  color: var(--fg-2);
  margin-bottom: 4px;
}
.price-duration {
  font-size: 14px;
  color: var(--fg-3);
  margin-bottom: 32px;
}
.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg-2);
}
.price-note {
  font-size: 13px;
  color: var(--fg-3);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials { padding: 80px 32px; border-top: 1px solid var(--border); }
.testimonials-inner { max-width: 900px; margin: 0 auto; }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.test-quote {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.test-author {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  font-family: var(--font-head);
}

/* CLOSING */
.closing {
  padding: 100px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-sub { font-size: 17px; color: var(--fg-2); line-height: 1.7; }

/* FOOTER */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; color: var(--fg-3); margin-bottom: 8px; }
.footer-copy { font-size: 12px; color: var(--fg-3); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero-bench { flex-direction: column; gap: 16px; }
  .bench-num { font-size: 44px; }
  .nav-links { display: none; }
  .bench-grid, .services-grid, .test-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .step { max-width: 100%; text-align: left; }
  .pricing-card { padding: 32px 28px; }
  .price-tag { font-size: 52px; }
}
@media (max-width: 480px) {
  .section-title { font-size: 26px; }
  .hero-headline { font-size: 36px; letter-spacing: -1px; }
}