:root {
  --bg: #08090e;
  --bg-2: #0d0f16;
  --bg-3: #111419;
  --fg: #f0f2f5;
  --fg-2: #8a8fa3;
  --fg-3: #5a5f6e;
  --accent: #00e5ff;
  --accent-dim: rgba(0,229,255,0.12);
  --accent-2: #ffb340;
  --border: rgba(255,255,255,0.06);
  --card-bg: rgba(255,255,255,0.03);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.1; }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(8,9,14,0.85);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.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 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-bg-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, rgba(0,0,0,0.6) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, rgba(0,0,0,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 32px;
}
.hero-stat-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--accent-dim);
  width: fit-content;
}
.hero-stat {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.4;
  max-width: 220px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 480px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(0,229,255,0.08);
  display: block;
}

/* Section styles */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 56px;
}

/* Manifesto */
.manifesto {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 32px;
}
.manifesto-text {
  font-size: 20px;
  color: var(--fg-2);
  line-height: 1.75;
  font-weight: 300;
}

/* Services */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.services-header { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.service-card {
  padding: 40px;
  background: var(--card-bg);
  transition: background 0.3s;
}
.service-card:hover { background: rgba(0,229,255,0.03); }
.service-card-wide { grid-column: 1 / -1; }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.service-desc {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 14px;
  color: var(--fg-2);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* How it works */
.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.how-header { margin-bottom: 64px; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: start;
  gap: 0;
}
.process-step {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}
.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.step-visual {}
.step-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  object-fit: cover;
}
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  position: relative;
}
.process-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.how-cta {
  margin-top: 56px;
  text-align: center;
}
.how-cta-text {
  font-size: 15px;
  color: var(--fg-3);
  font-style: italic;
}

/* Outcomes */
.outcomes {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes .outcomes-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px 0;
}
.outcomes-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.outcome-card {
  padding: 36px 28px;
  background: var(--card-bg);
}
.outcome-metric {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.outcome-label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}
.outcome-note {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}

/* Closing */
.closing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
  color: var(--fg-2);
}
.closing-body {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 64px;
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  padding: 28px 36px;
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 12px;
  background: var(--accent-dim);
  display: inline-block;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-3);
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-3);
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 80px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .process-steps { grid-template-columns: 1fr; }
  .process-connector { display: none; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-headline { letter-spacing: -1px; }
  .closing-statement { font-size: 18px; padding: 20px 24px; }
}