/* =========================================================
   DEAL MAKERS — styles.css
   Premium SaaS-level acquisition infrastructure website
   ========================================================= */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0B0F1A;
  --bg2:      #111827;
  --surface:  #1A2238;
  --surface2: #222D45;
  --primary:  #4F8CFF;
  --accent:   #00FFC6;
  --text:     #E6EAF2;
  --text-muted: #8A94A8;
  --red:      #FF5F6D;
  --radius:   12px;
  --radius-lg: 20px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: auto; /* JS handles scroll */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
body::after {
  content: '';
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), opacity 0.2s;
  top: var(--cy, 50%);
  left: var(--cx, 50%);
}

body::before {
  content: '';
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(79, 140, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  top: var(--cy, 50%);
  left: var(--cx, 50%);
  transition: top 0.18s var(--ease-out), left 0.18s var(--ease-out);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; line-height: 1.15; }

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-muted); }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

.section { padding: 120px 0; position: relative; overflow: hidden; }
.section-light { background: var(--bg2); }
.section-dark  { background: var(--bg); }
.section-accent { background: linear-gradient(135deg, #0d1326 0%, #0B1A2A 100%); }
.section-cta   { background: var(--bg); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 255, 198, 0.07);
  border: 1px solid rgba(0, 255, 198, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}

.section-headline { margin-bottom: 1.4rem; }
.section-sub {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 1.4rem 2rem; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--text); text-decoration: none;
}
.logo-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: block;
}
.nav-links { display: flex; gap: 2.2rem; margin-left: auto; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-hamburger { display: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 12px 26px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.3s;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); }
.btn-primary:hover::before { opacity: 1; }

.btn-glow {
  box-shadow: 0 0 20px rgba(79, 140, 255, 0.35), 0 4px 16px rgba(0,0,0,0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 40px rgba(79, 140, 255, 0.55), 0 8px 32px rgba(0,0,0,0.5);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.btn-ghost:hover { color: var(--text); gap: 12px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(79, 140, 255, 0.35);
  color: var(--primary); font-size: 0.9rem; font-weight: 500;
  padding: 12px 26px; border-radius: 8px;
  text-decoration: none; margin-top: 2rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}
.btn-outline:hover { background: rgba(79,140,255,0.08); border-color: var(--primary); transform: translateY(-2px); }

.btn-large { padding: 16px 40px; font-size: 1rem; }

.nav-cta { font-size: 0.85rem; padding: 10px 22px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79, 140, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 140, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 198, 0.08) 0%, transparent 70%);
  bottom: -50px; right: 10%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-container > * { grid-column: 1; }
.hero-svg-wrap { grid-column: 2; grid-row: 1 / 6; display: flex; align-items: center; justify-content: center; }
.hero-svg { width: 100%; max-width: 580px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 255, 198, 0.07);
  border: 1px solid rgba(0, 255, 198, 0.2);
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 1.6rem;
}

.dot-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 198, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0, 255, 198, 0); }
}

.hero-headline { margin-bottom: 1.4rem; }
.hero-sub {
  font-size: 1.1rem; max-width: 520px;
  color: var(--text-muted); margin-bottom: 2.4rem; line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap;
  margin-bottom: 3.2rem;
}

.hero-stats {
  display: flex; gap: 0; align-items: center;
  background: rgba(26, 34, 56, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 1.4rem 2rem;
  backdrop-filter: blur(12px);
  width: fit-content;
}
.stat { text-align: center; padding: 0 1.6rem; }
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--text); line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-suffix { color: var(--accent); }
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.07);
}

/* ── SVG ANIMATIONS ── */
.svg-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2s var(--ease-out);
}
.svg-node { transition: opacity 0.6s var(--ease-out); }

.pulse-ring { animation: pulseRing 3s ease-in-out infinite; }
.pulse-ring-2 { animation: pulseRing 3s ease-in-out infinite 1s; }
@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.12); opacity: 0.05; }
}

/* ── PROBLEM ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.problem-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 95, 109, 0.04), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.problem-card:hover { transform: translateY(-6px); border-color: rgba(255,95,109,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.problem-card:hover::before { opacity: 1; }

.problem-icon { width: 48px; height: 48px; margin-bottom: 1.2rem; }
.problem-card h3 { margin-bottom: 0.8rem; font-size: 1.1rem; }
.problem-card p { font-size: 0.9rem; line-height: 1.7; }

/* ── REALITY SPLIT ── */
.reality-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.reality-left h2 { margin-bottom: 1.4rem; }
.reality-left p { margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.8; }

.section-svg { width: 100%; max-width: 400px; display: block; }
.chart-bar { transition: height 1s var(--ease-out), y 1s var(--ease-out); }

/* ── SOLUTION ── */
.solution-statement {
  display: flex; align-items: center; gap: 1.4rem;
  justify-content: center; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.solution-pill {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
}
.solution-pill--accent {
  background: linear-gradient(135deg, rgba(0,255,198,0.12), rgba(79,140,255,0.12));
  border-color: rgba(0,255,198,0.3);
  color: var(--accent);
}
.solution-arrow { font-size: 1.6rem; color: var(--text-muted); }

/* ── HOW IT WORKS / STEPS ── */
.steps-track { position: relative; margin-top: 4rem; }
.steps-line {
  position: absolute; left: 40px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--surface2), transparent);
}
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem;
  margin-bottom: 3.5rem; position: relative;
}
.step:last-child { margin-bottom: 0; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  color: var(--accent);
  background: rgba(0,255,198,0.08);
  border: 1px solid rgba(0,255,198,0.2);
  border-radius: 50%; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.08em;
  position: relative; z-index: 1;
  margin: 0 auto;
}
.step-content {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg); padding: 2rem 2.4rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-content:hover { border-color: rgba(79,140,255,0.2); box-shadow: 0 16px 50px rgba(0,0,0,0.25); }
.step-icon-wrap { width: 56px; height: 56px; margin-bottom: 1.2rem; }
.step-icon { width: 100%; height: 100%; }
.step-content h3 { margin-bottom: 0.8rem; }
.step-content p { font-size: 0.95rem; line-height: 1.8; }

/* ── DELIVERABLES ── */
.deliverables-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem; margin-top: 3.5rem;
}
.deliverable-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 1.6rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.deliverable-card:hover { transform: translateY(-4px); border-color: rgba(0,255,198,0.15); }
.del-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(0,255,198,0.1); border: 1px solid rgba(0,255,198,0.25);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.8rem; font-weight: 700;
}
.deliverable-card h4 { margin-bottom: 0.3rem; font-size: 0.95rem; }
.deliverable-card p { font-size: 0.85rem; line-height: 1.6; }

/* ── COMPARISON TABLE ── */
.comparison-table {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 3.5rem;
}
.comp-header, .comp-row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comp-row:last-child { border-bottom: none; }
.comp-cell {
  padding: 1.1rem 1.6rem;
  font-size: 0.9rem;
  display: flex; align-items: center;
}
.comp-label { color: var(--text-muted); font-size: 0.85rem; }
.comp-col-them, .comp-col-us {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.comp-col-them { color: var(--text-muted); }
.comp-col-us { color: var(--accent); border-bottom-color: var(--accent); }
.comp-them { color: var(--text-muted); font-size: 0.88rem; }
.comp-us {
  color: var(--accent); font-weight: 500; font-size: 0.88rem;
  background: rgba(0,255,198,0.03);
}
.comp-header { background: rgba(255,255,255,0.02); }

/* ── WHO IT'S FOR ── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem; }
.who-card {
  border-radius: var(--radius-lg); padding: 2.4rem;
  border: 1px solid;
}
.who-card--yes {
  background: rgba(0,255,198,0.04);
  border-color: rgba(0,255,198,0.15);
}
.who-card--no {
  background: rgba(255,95,109,0.03);
  border-color: rgba(255,95,109,0.12);
}
.who-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 100px; margin-bottom: 1.4rem;
}
.who-badge--yes { background: rgba(0,255,198,0.12); color: var(--accent); }
.who-badge--no  { background: rgba(255,95,109,0.1); color: #FF6B6B; }
.who-list { list-style: none; }
.who-list li {
  padding: 0.7rem 0;
  font-size: 0.92rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-left: 1.4rem; position: relative;
  line-height: 1.6;
}
.who-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--text-muted); font-size: 0.8rem;
}
.who-card--yes .who-list li::before { color: var(--accent); }
.who-card--no .who-list li::before { content: '×'; color: #FF6B6B; }
.who-list li:last-child { border-bottom: none; }

/* ── RESULTS ── */
.results-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.result-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 2.4rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.result-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.result-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(0,0,0,0.4); border-color: rgba(79,140,255,0.2); }
.result-market { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.result-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--text); line-height: 1; margin-bottom: 0.4rem;
}
.result-label { font-size: 0.8rem; color: var(--primary); font-weight: 500; margin-bottom: 1.2rem; }
.result-detail { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }
.result-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px;
  background: rgba(79,140,255,0.1); color: var(--primary);
  border-radius: 4px;
}

/* ── TRANSPARENCY ── */
.transparency-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.trans-item {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.trans-item:hover { transform: translateY(-5px); border-color: rgba(0,255,198,0.2); }
.trans-icon { width: 48px; height: 48px; margin: 0 auto 1.2rem; }
.trans-item h4 { margin-bottom: 0.6rem; }
.trans-item p { font-size: 0.88rem; line-height: 1.7; }

/* ── FAQ ── */
.faq-list { margin-top: 3.5rem; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.faq-q {
  padding: 1.4rem 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem; color: var(--text-muted);
  transition: transform 0.3s var(--ease-out), color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
  padding: 0 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }
.faq-a p { font-size: 0.95rem; line-height: 1.8; }

/* ── CTA ── */
.section-cta { padding: 140px 0; }
.cta-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.cta-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,140,255,0.1), transparent 70%);
  top: -100px; left: -100px;
}
.cta-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,255,198,0.08), transparent 70%);
  bottom: -80px; right: 0;
}

.cta-headline { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 1.4rem; }
.cta-sub { font-size: 1.05rem; max-width: 560px; margin: 0 auto 3rem; }

.cta-box {
  max-width: 620px; margin: 0 auto 3rem;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 3rem;
  position: relative; z-index: 1;
}
.cta-box::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(79,140,255,0.3), rgba(0,255,198,0.3), transparent, transparent);
  z-index: -1;
  opacity: 0.5;
}
.cta-box-label {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.8rem;
}
.cta-box-desc { font-size: 0.92rem; margin-bottom: 2rem; }
.cta-btn { width: 100%; justify-content: center; }
.cta-fine { font-size: 0.72rem; margin-top: 1rem; color: var(--text-muted); opacity: 0.6; }

.cta-trust {
  display: flex; flex-wrap: wrap; gap: 1rem 2.5rem;
  justify-content: center;
}
.cta-trust span { font-size: 0.82rem; color: var(--text-muted); }

/* CTA pulse animation */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(79,140,255,0.35), 0 4px 16px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 60px rgba(79,140,255,0.6), 0 8px 32px rgba(0,0,0,0.5); }
}
.cta-btn { animation: ctaGlow 3s ease-in-out infinite; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 2fr; gap: 3rem; align-items: start;
}
.footer-brand p { font-size: 0.85rem; margin-top: 0.8rem; max-width: 260px; }
.footer-links {
  display: flex; flex-direction: column; gap: 0.8rem;
  padding-top: 0.2rem;
}
.footer-links a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-legal p { font-size: 0.75rem; color: var(--text-muted); opacity: 0.5; margin-bottom: 0.4rem; line-height: 1.6; }

/* ── REVEAL ANIMATIONS ── */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.35s; }
.stagger-4 { transition-delay: 0.5s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,15,26,0.97);
  backdrop-filter: blur(20px);
  z-index: 99; padding: 7rem 2rem 3rem;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-link {
  display: block; padding: 1.2rem 0;
  font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 700;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-cta {
  margin-top: 2rem;
  color: var(--accent); border-bottom: none;
  font-size: 1.1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-container > * { grid-column: 1; }
  .hero-svg-wrap { grid-row: auto; display: none; }
  .reality-split { grid-template-columns: 1fr; gap: 3rem; }
  .who-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    margin-left: auto;
  }
  .nav-hamburger span {
    width: 24px; height: 2px; background: var(--text);
    border-radius: 2px; transition: all 0.3s;
  }
  body::before, body::after { display: none; }
  body { cursor: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .comp-cell { padding: 0.9rem 1rem; font-size: 0.82rem; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .hero { padding: 120px 0 60px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  .hero-stats { flex-direction: column; width: 100%; gap: 1rem; }
  .stat-divider { width: 60%; height: 1px; }
  .solution-statement { flex-direction: column; }
  .cta-box { padding: 2rem 1.4rem; }
  .comparison-table { overflow-x: auto; }
  .comp-header, .comp-row { min-width: 480px; }
}
