:root {
  --bg: #0D1117;
  --surface: #161B22;
  --surface-2: #21262D;
  --fg: #E6EDF3;
  --fg-muted: #8B949E;
  --accent: #00E5A0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --border: #30363D;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { 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: 20px 40px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--fg); letter-spacing: -0.5px; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #00E5A0 0%, transparent 70%); top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #7C3AED 0%, transparent 70%); bottom: 50px; left: -100px; }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.25; }
.hero-content { position: relative; max-width: 860px; }
.hero-eyebrow { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 20px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede { font-size: 20px; color: var(--fg-muted); max-width: 560px; line-height: 1.5; }

/* ── MANIFESTO ── */
.manifesto { padding: 100px 40px; background: var(--surface); }
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 32px;
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}
.manifesto-body { font-size: 18px; color: var(--fg-muted); line-height: 1.7; }

/* ── FEATURES ── */
.features { padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 56px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.feature-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* ── PROCESS ── */
.process { padding: 100px 40px; background: var(--surface); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; margin-top: 48px; }
.step { padding: 32px; border-left: 1px solid var(--border); }
.step:first-child { border-left: none; }
.step-num { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--accent-dim); display: block; margin-bottom: 16px; }
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ── OUTCOMES ── */
.outcomes { padding: 100px 40px; }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.outcome { background: var(--surface); padding: 48px 32px; text-align: center; }
.outcome-stat { font-family: var(--font-display); font-size: 64px; font-weight: 800; color: var(--accent); display: block; margin-bottom: 12px; }
.outcome-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.5; }

/* ── CLOSING ── */
.closing { padding: 120px 40px; }
.closing-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 700; color: var(--fg); letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 20px; }
.closing-sub { font-size: 18px; color: var(--fg-muted); }

/* ── FOOTER ── */
.footer { padding: 60px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--fg); display: block; margin-bottom: 6px; }
.footer-desc { font-size: 14px; color: var(--fg-muted); }
.footer-note { font-size: 12px; color: var(--fg-muted); }

/* ── HERO AUDIENCE BADGES ── */
.hero-audiences { display: flex; align-items: center; gap: 10px; margin-top: 32px; }
.audience-badge {
  display: inline-block; padding: 6px 16px;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  color: var(--fg-muted); background: var(--surface);
  transition: border-color 0.2s, color 0.2s;
}
.audience-badge:hover { border-color: var(--accent); color: var(--accent); }
.audience-sep { font-size: 13px; color: var(--border); }

/* ── SERVICES (replaces Features) ── */
.services { padding: 100px 40px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-headline {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; letter-spacing: -1.5px; color: var(--fg); margin: -20px 0 56px;
}
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 40px; display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(0, 229, 160, 0.4); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.service-card-header { margin-bottom: 28px; }
.service-tier {
  display: inline-block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 12px;
}
.service-card-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--fg); margin-bottom: 12px; letter-spacing: -0.5px;
}
.service-card-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }
.service-list { list-style: none; margin: 0 0 32px; padding: 0; flex-grow: 1; }
.service-list li {
  font-size: 14px; color: var(--fg-muted); padding: 10px 0;
  border-bottom: 1px solid var(--border); position: relative; padding-left: 20px;
}
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 12px; top: 10px; }
.service-list li:last-child { border-bottom: none; }
.service-cta {
  display: inline-block; padding: 12px 24px; border: 1px solid var(--accent); border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--accent); text-decoration: none;
  transition: background 0.2s, color 0.2s; align-self: flex-start;
}
.service-cta:hover { background: var(--accent); color: var(--bg); }
.services-note { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-muted); font-style: italic; }
.services-note-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ── CLOSING CTA BUTTON ── */
.closing-cta {
  display: inline-block; margin-top: 32px; padding: 14px 32px;
  background: var(--accent); border-radius: 8px; font-size: 15px; font-weight: 600;
  color: #0D1117; text-decoration: none; transition: opacity 0.2s, transform 0.2s;
}
.closing-cta:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── ENTRANCE ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow      { animation: fadeUp 0.5s ease forwards; }
.hero-headline     { animation: fadeUp 0.5s ease 0.1s both; }
.hero-lede        { animation: fadeUp 0.5s ease 0.2s both; }
.hero-audiences   { animation: fadeUp 0.5s ease 0.3s both; }
.manifesto-quote  { animation: fadeUp 0.5s ease 0.1s both; }
.manifesto-body   { animation: fadeUp 0.5s ease 0.2s both; }
.services-headline { animation: fadeUp 0.5s ease 0.1s both; }
.service-card      { animation: fadeUp 0.5s ease 0.15s both; }
.service-card:nth-child(2) { animation-delay: 0.25s; }
.closing-headline { animation: fadeUp 0.5s ease 0.1s both; }
.closing-sub      { animation: fadeUp 0.5s ease 0.2s both; }
.closing-cta      { animation: fadeUp 0.5s ease 0.3s both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 120px 20px 80px; }
  .hero-headline { letter-spacing: -1.5px; }
  .manifesto, .services, .process, .outcomes, .closing { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .step { border-left: none; border-top: 1px solid var(--border); }
  .step:first-child { border-top: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}