:root {
  --bg: #0a0f0b;
  --bg-card: #0f1f14;
  --bg-card-hover: #142618;
  --fg: #e8f5e0;
  --fg-muted: #7a9a72;
  --accent: #b4ff4a;
  --accent-dim: rgba(180, 255, 74, 0.12);
  --accent-glow: rgba(180, 255, 74, 0.08);
  --warning: #ff6b4a;
  --warning-dim: rgba(255, 107, 74, 0.08);
  --border: rgba(180, 255, 74, 0.1);
  --border-strong: rgba(180, 255, 74, 0.2);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { 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 0;
  background: rgba(10, 15, 11, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--fg); background: var(--accent-dim); }
.nav-link-cta {
  background: var(--accent);
  color: #0a0f0b;
  font-weight: 600;
}
.nav-link-cta:hover { opacity: 0.9; background: var(--accent); color: #0a0f0b; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 32px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #b4ff4a 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1a3a2a 0%, transparent 70%);
  bottom: 0;
  left: 10%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-accent {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 500px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* ── PAIN ── */
.pain {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.pain-inner { max-width: 1200px; margin: 0 auto; }
.pain-header { margin-bottom: 56px; }
.pain-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 12px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pain-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-card-icon { margin-bottom: 4px; }
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.pain-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.pain-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
}
.pain-tag-worse { background: var(--warning-dim); color: var(--warning); }

/* ── SIGNAL ── */
.signal {
  padding: 100px 32px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.signal-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.signal-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.signal-radar {
  position: relative;
  width: 280px;
  height: 280px;
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: radar-ping 3s ease-out infinite;
}
.radar-ring-1 { width: 80px; height: 80px; opacity: 0.6; animation-delay: 0s; }
.radar-ring-2 { width: 160px; height: 160px; opacity: 0.3; animation-delay: 0.6s; }
.radar-ring-3 { width: 240px; height: 240px; opacity: 0.15; animation-delay: 1.2s; }
@keyframes radar-ping {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}
.radar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.radar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.radar-dot-1 { top: 15%; left: 30%; }
.radar-dot-2 { top: 22%; right: 18%; }
.radar-dot-3 { bottom: 20%; right: 22%; }
.radar-dot-4 { bottom: 28%; left: 16%; }
.radar-dot-5 { top: 50%; left: 8%; }
.signal-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0 20px;
}
.signal-body { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 32px; }
.signal-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}
.pillar-icon { flex-shrink: 0; }

/* ── SERVICES ── */
.services { padding: 100px 32px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 56px; }
.services-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 12px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { background: var(--bg-card-hover); border-color: var(--border-strong); }
.service-card-pricing { border-color: var(--accent); background: var(--accent-dim); }
.pricing-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(180,255,74,0.15);
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.service-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }
.pricing-tiers { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.tier { display: flex; justify-content: space-between; align-items: center; }
.tier-name { font-size: 13px; font-weight: 600; color: var(--fg); }
.tier-price { font-size: 13px; color: var(--accent); font-weight: 600; }

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 32px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  max-width: 800px;
  margin-bottom: 64px;
}
.quote-mark { margin-bottom: 24px; }
.manifesto-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 16px;
}
.manifesto-quote cite { font-size: 14px; color: var(--fg-muted); font-style: normal; }
.manifesto-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.m-point {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-point h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.m-point p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ── CLOSING ── */
.closing { padding: 100px 32px; }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline { margin-bottom: 48px; }
.closing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.closing-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg);
}
.closing-numbers {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.closing-stat { display: flex; flex-direction: column; gap: 6px; }
.closing-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.closing-desc { font-size: 14px; color: var(--fg-muted); }
.closing-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.closing-body p { font-size: 16px; color: var(--fg-muted); line-height: 1.75; }

/* ── FOOTER ── */
.footer {
  padding: 64px 32px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--fg-muted); max-width: 300px; line-height: 1.6; }
.footer-links {
  display: flex;
  gap: 48px;
  margin: 48px 0 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.footer-col span { font-size: 14px; color: var(--fg); }
.footer-bottom p { font-size: 13px; color: var(--fg-muted); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content,
  .signal-inner,
  .pain-grid,
  .services-grid,
  .manifesto-points,
  .closing-body {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 100px; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .signal-visual { display: none; }
  .pain-grid,
  .services-grid,
  .manifesto-points { gap: 12px; }
  .closing-numbers { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 600px) {
  .hero { padding: 80px 20px 60px; }
  .pain, .signal, .services, .manifesto, .closing { padding: 60px 20px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: auto; height: 1px; }
  .stat { padding: 16px 20px; }
}