:root {
  --bg-deep: #0B1437;
  --bg-card: #111C44;
  --bg-surface: #162052;
  --accent: #FF6B4A;
  --accent-glow: rgba(255, 107, 74, 0.15);
  --text-primary: #F0F2F8;
  --text-secondary: #8B95B8;
  --text-muted: #5A6588;
  --border: rgba(255, 255, 255, 0.06);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

.accent { color: var(--accent); }

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(11, 20, 55, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  border-radius: 8px;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
}
.nav-tagline {
  font-size: 14px;
  color: var(--text-secondary);
}

/* HERO */
.hero {
  padding: 140px 32px 80px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 120px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-visual {
  position: relative;
}
.hero-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px var(--accent-glow);
}

/* SECTIONS SHARED */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 40px;
}

/* SERVICES */
.services {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(255, 107, 74, 0.3);
  transform: translateY(-4px);
}
.service-icon {
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* EDGE */
.edge {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.edge-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.edge-description {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.edge-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.comparison-col {
  padding: 28px;
  border-radius: 12px;
}
.comparison-col.old {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.comparison-col.new {
  background: var(--accent-glow);
  border: 1px solid rgba(255, 107, 74, 0.25);
}
.comparison-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.comparison-col.new h4 {
  color: var(--accent);
}
.comparison-col ul {
  list-style: none;
}
.comparison-col li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.comparison-col li:last-child { border-bottom: none; }
.comparison-col.new li {
  color: var(--text-primary);
}

/* PROCESS */
.process {
  padding: 100px 0;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 64px;
  flex-shrink: 0;
}

/* PROOF */
.proof {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.niche {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.3s;
}
.niche:hover {
  border-color: rgba(255, 107, 74, 0.3);
}
.niche-emoji {
  font-size: 24px;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  text-align: center;
}
.closing-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.closing-text {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer .logo-mark {
  width: 28px;
  height: 28px;
  font-size: 14px;
}
.footer .logo-text {
  font-size: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding: 120px 20px 60px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .stat-divider { display: none; }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .edge-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .edge-comparison {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
  }
  .step-connector {
    width: 2px;
    height: 30px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--accent), transparent);
  }
  .niches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-tagline { display: none; }
  .section-inner, .nav-inner, .footer-inner {
    padding: 0 20px;
  }
}