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

:root {
  --bg:        #03050d;
  --bg-alt:    #060a14;
  --surface:   rgba(12, 18, 35, 0.75);
  --surface-2: rgba(18, 26, 48, 0.85);
  --border:    rgba(255,255,255,0.06);
  --border-2:  rgba(255,255,255,0.12);
  --text:      #e8eeff;
  --text-muted:#4a5a7a;
  --text-dim:  #8898b8;
  --primary:   #7c3aed;
  --primary-2: #c084fc;
  --cyan:      #06b6d4;
  --cyan-2:    #22d3ee;
  --green:     #22c55e;
  --pink:      #ec4899;
  --orange:    #f97316;
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
code {
  font-family: 'JetBrains Mono', monospace;
  font-size: .8em;
  background: rgba(194,132,252,.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--primary-2);
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(3,5,13,.7);
  border-color: rgba(192,132,252,.15);
  backdrop-filter: blur(28px);
  box-shadow: 0 1px 40px rgba(124,58,237,.08);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.nav-icon { width: 28px; height: 28px; filter: drop-shadow(0 0 6px rgba(192,132,252,.6)); }
.nav-brand { font-weight: 700; font-size: .95rem; letter-spacing: -.01em; }
.brand-ai { color: var(--primary-2); text-shadow: 0 0 12px rgba(192,132,252,.7); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-links a { font-size: .85rem; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover { color: var(--primary-2); }
.nav-gh { display: flex; align-items: center; gap: 5px; }
.btn-nav {
  padding: 7px 16px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff !important;
  font-size: .82rem;
  font-weight: 600;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 16px rgba(124,58,237,.5);
}
.btn-nav:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 0 28px rgba(124,58,237,.7); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  background: rgba(3,5,13,.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(192,132,252,.1);
  gap: 2px;
}
.nav-mobile a { padding: 10px 0; font-size: .9rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.nav-mobile.open { display: flex; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 130px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; }
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.55) 0%, transparent 70%);
  top: -280px; left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(6,182,212,.3) 0%, transparent 70%);
  top: 80px; right: -120px;
  filter: blur(70px);
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(236,72,153,.2) 0%, transparent 70%);
  bottom: 0; left: -80px;
  filter: blur(80px);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,132,252,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,132,252,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-container { position: relative; }

.hero-logo-wrap { margin-bottom: 36px; }
.hero-logo {
  width: 280px;
  max-width: 80vw;
  border-radius: 14px;
  filter: drop-shadow(0 0 40px rgba(124,58,237,.5));
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(192,132,252,.35);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary-2);
  background: rgba(124,58,237,.1);
  letter-spacing: .03em;
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(124,58,237,.15), inset 0 0 20px rgba(124,58,237,.05);
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green), 0 0 16px rgba(34,197,94,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px var(--green), 0 0 16px rgba(34,197,94,.5); }
  50%      { opacity: .5; box-shadow: 0 0 4px var(--green); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 20px;
  text-shadow: 0 0 80px rgba(124,58,237,.2);
}
.gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(192,132,252,.4));
}

.hero-sub {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 0 24px rgba(124,58,237,.6), 0 4px 20px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(124,58,237,.8), 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: 10px;
  color: var(--text-dim);
  font-size: .92rem;
  font-weight: 500;
  border: 1px solid rgba(192,132,252,.2);
  background: rgba(124,58,237,.05);
  backdrop-filter: blur(8px);
  transition: border-color .2s, color .2s, box-shadow .2s;
}
.btn-ghost:hover {
  border-color: rgba(192,132,252,.5);
  color: var(--primary-2);
  box-shadow: 0 0 16px rgba(124,58,237,.2);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 600;
  border: 1px solid rgba(192,132,252,.2);
  background: rgba(124,58,237,.05);
  backdrop-filter: blur(8px);
  transition: border-color .2s, box-shadow .2s, color .2s;
}
.btn-outline:hover {
  border-color: rgba(192,132,252,.5);
  color: var(--primary-2);
  box-shadow: 0 0 20px rgba(124,58,237,.25);
}

/* Stats */
.hero-stats {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(192,132,252,.15);
  border-radius: 14px;
  background: rgba(12,18,35,.6);
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(124,58,237,.1), inset 0 1px 0 rgba(255,255,255,.05);
}
.stat { padding: 18px 28px; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #c084fc, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(192,132,252,.5));
}
.stat-label { font-size: .7rem; color: var(--text-muted); white-space: nowrap; }
.stat-divider { width: 1px; background: rgba(192,132,252,.1); align-self: stretch; }

/* ── Demo ──────────────────────────────────────────────────── */
.demo-section { background: var(--bg-alt); }
.video-wrap { position: relative; max-width: 920px; margin: 0 auto; }
.video-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse, rgba(124,58,237,.25) 0%, transparent 65%);
  pointer-events: none;
}
.video-frame {
  border-radius: 16px;
  border: 1px solid rgba(192,132,252,.2);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(192,132,252,.05),
    0 32px 80px rgba(0,0,0,.8),
    0 0 60px rgba(124,58,237,.15);
  position: relative;
}
.window-bar {
  background: rgba(12,18,35,.9);
  backdrop-filter: blur(12px);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(192,132,252,.1);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red    { background: #ff5f56; box-shadow: 0 0 6px rgba(255,95,86,.6); }
.dot.yellow { background: #ffbd2e; box-shadow: 0 0 6px rgba(255,189,46,.6); }
.dot.green  { background: #27c93f; box-shadow: 0 0 6px rgba(39,201,63,.6); }
.window-title { margin-left: 8px; font-size: .77rem; color: var(--text-muted); }
.demo-video { width: 100%; display: block; background: #000; max-height: 540px; object-fit: contain; }

/* ── Sections ──────────────────────────────────────────────── */
.section     { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-2);
  text-shadow: 0 0 12px rgba(192,132,252,.5);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  font-size: .97rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* ── Features ──────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  position: relative;
  background: rgba(12,18,35,.65);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  backdrop-filter: blur(16px);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(192,132,252,.04) 0%, transparent 60%);
  pointer-events: none;
}
.feature-card:hover {
  border-color: rgba(192,132,252,.3);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(124,58,237,.2), 0 20px 48px rgba(0,0,0,.5);
}
.feature-wide { grid-column: span 2; }

.feature-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,132,252,.8), transparent);
}
.accent-cyan {
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.8), transparent);
}

.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon-wrap.purple {
  background: rgba(124,58,237,.15);
  color: var(--primary-2);
  box-shadow: 0 0 16px rgba(124,58,237,.2), inset 0 0 12px rgba(124,58,237,.1);
}
.feature-icon-wrap.cyan {
  background: rgba(6,182,212,.12);
  color: var(--cyan-2);
  box-shadow: 0 0 16px rgba(6,182,212,.15), inset 0 0 12px rgba(6,182,212,.08);
}
.feature-icon-wrap.green {
  background: rgba(34,197,94,.12);
  color: #86efac;
  box-shadow: 0 0 16px rgba(34,197,94,.12);
}
.feature-icon-wrap.orange {
  background: rgba(249,115,22,.12);
  color: #fdba74;
  box-shadow: 0 0 16px rgba(249,115,22,.12);
}
.feature-icon-wrap.pink {
  background: rgba(236,72,153,.12);
  color: #f9a8d4;
  box-shadow: 0 0 16px rgba(236,72,153,.12);
}
.feature-icon-wrap.blue {
  background: rgba(59,130,246,.12);
  color: #93c5fd;
  box-shadow: 0 0 16px rgba(59,130,246,.12);
}

.feature-card h3 {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
  color: var(--text);
}
.feature-card p {
  font-size: .84rem;
  color: var(--text-dim);
  line-height: 1.68;
}

.feature-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.tag { padding: 3px 10px; border-radius: 99px; font-size: .68rem; font-weight: 600; letter-spacing: .02em; }
.tag-purple {
  background: rgba(124,58,237,.12);
  color: var(--primary-2);
  border: 1px solid rgba(192,132,252,.2);
  box-shadow: 0 0 8px rgba(124,58,237,.1);
}
.tag-cyan {
  background: rgba(6,182,212,.1);
  color: var(--cyan-2);
  border: 1px solid rgba(34,211,238,.2);
  box-shadow: 0 0 8px rgba(6,182,212,.1);
}

/* ── Pipelines ─────────────────────────────────────────────── */
.pipelines-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pipeline-card {
  background: rgba(12,18,35,.65);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.pipeline-card:hover {
  border-color: rgba(192,132,252,.25);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(124,58,237,.15), 0 16px 40px rgba(0,0,0,.4);
}
.pipeline-header { padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ml-header  { background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(99,102,241,.06)); }
.llm-header { background: linear-gradient(135deg, rgba(168,85,247,.12), rgba(236,72,153,.06)); }
.pipeline-badge-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pipeline-badge { padding: 4px 12px; border-radius: 6px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; }
.ml-badge  { background: rgba(59,130,246,.2); color: #93c5fd; box-shadow: 0 0 10px rgba(59,130,246,.15); }
.llm-badge { background: rgba(168,85,247,.2); color: var(--primary-2); box-shadow: 0 0 10px rgba(168,85,247,.15); }
.pipeline-sub { font-size: .72rem; color: var(--text-muted); }
.pipeline-steps { padding: 24px; display: flex; flex-direction: column; gap: 0; }
.pstep { display: flex; align-items: flex-start; gap: 14px; }
.pstep-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 10px currentColor, 0 0 20px rgba(255,255,255,.1);
}
.pstep strong { font-size: .85rem; font-weight: 600; color: var(--text); }
.pstep p { font-size: .76rem; color: var(--text-muted); margin-top: 2px; line-height: 1.5; }
.pstep-connector { width: 1px; height: 18px; background: linear-gradient(to bottom, rgba(192,132,252,.2), transparent); margin-left: 4px; }

/* ── Code Gen ──────────────────────────────────────────────── */
.codegen-layout { max-width: 860px; }
.codegen-tabs { display: flex; gap: 3px; margin-bottom: -1px; position: relative; z-index: 1; }
.tab-btn {
  padding: 9px 18px;
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(255,255,255,.07);
  border-bottom: none;
  background: rgba(12,18,35,.6);
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
  font-family: inherit;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
}
.tab-btn.active {
  background: rgba(18,26,48,.9);
  color: var(--primary-2);
  border-color: rgba(192,132,252,.25);
  box-shadow: 0 0 14px rgba(124,58,237,.15);
  text-shadow: 0 0 10px rgba(192,132,252,.5);
}
.tab-btn:hover:not(.active) { color: var(--text); background: rgba(18,26,48,.5); }

.code-block {
  background: rgba(9,13,25,.85);
  border: 1px solid rgba(192,132,252,.15);
  border-radius: 0 12px 12px 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(124,58,237,.08), 0 24px 48px rgba(0,0,0,.5);
}
.code-block.hidden { display: none; }
.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(192,132,252,.08);
  background: rgba(18,26,48,.5);
}
.code-lang { font-family: 'JetBrains Mono', monospace; font-size: .78rem; color: var(--text-muted); }
.code-badge {
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(192,132,252,.12);
  color: var(--primary-2);
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 0 8px rgba(124,58,237,.2);
}
pre { padding: 24px; overflow-x: auto; font-family: 'JetBrains Mono', monospace; font-size: .8rem; line-height: 1.75; }
code { font-family: inherit; background: none; padding: 0; border-radius: 0; color: inherit; }
.c  { color: #2d3a52; }
.k  { color: var(--primary-2); text-shadow: 0 0 8px rgba(192,132,252,.4); }
.fn { color: var(--cyan-2); text-shadow: 0 0 8px rgba(34,211,238,.3); }
.s  { color: #86efac; }
.n  { color: #fb923c; }

/* ── Integrations ──────────────────────────────────────────── */
.integrations-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.int-card {
  background: rgba(12,18,35,.65);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 20px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(12px);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: default;
}
.int-card:hover {
  border-color: rgba(192,132,252,.4);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(124,58,237,.25), 0 8px 24px rgba(0,0,0,.4);
}
.int-icon { font-size: 1.5rem; filter: drop-shadow(0 0 4px rgba(255,255,255,.1)); }
.int-name { font-size: .78rem; font-weight: 600; color: var(--text); }
.int-desc { font-size: .66rem; color: var(--text-muted); text-align: center; }

/* ── Download ──────────────────────────────────────────────── */
.download-version-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-dim);
  background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 40px;
}
.download-release-link {
  color: var(--primary-2);
  transition: color .15s;
}
.download-release-link:hover { color: #fff; }

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform .15s, border-color .2s, box-shadow .2s;
  text-decoration: none;
  color: var(--text);
}
.download-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124,58,237,.45);
  box-shadow: 0 8px 32px rgba(124,58,237,.18);
}
.download-os-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(124,58,237,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-2);
}
.download-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.download-os {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}
.download-file {
  font-size: .72rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--primary-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.download-arch {
  font-size: .72rem;
  color: var(--text-muted);
}
.download-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color .15s, transform .15s;
}
.download-card:hover .download-arrow {
  color: var(--primary-2);
  transform: translateY(2px);
}

/* ── CTA ───────────────────────────────────────────────────── */
.cta-section { background: var(--bg); padding-bottom: 80px; }
.cta-card {
  position: relative;
  background: rgba(12,18,35,.7);
  border: 1px solid rgba(192,132,252,.2);
  border-radius: 28px;
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 80px rgba(124,58,237,.1), inset 0 1px 0 rgba(255,255,255,.05);
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,132,252,.6), rgba(34,211,238,.4), transparent);
}
.cta-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  bottom: -100px; right: 5%;
  filter: blur(50px);
}
.cta-icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  position: relative;
  filter: drop-shadow(0 0 16px rgba(192,132,252,.7));
}
.cta-card h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 10px;
  position: relative;
  text-shadow: 0 0 40px rgba(124,58,237,.2);
}
.cta-card p { color: var(--text-dim); margin-bottom: 36px; font-size: .95rem; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { border-top: 1px solid rgba(192,132,252,.08); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; }
.footer-icon { width: 22px; height: 22px; filter: drop-shadow(0 0 5px rgba(192,132,252,.4)); }
.footer-links { display: flex; gap: 24px; margin-left: auto; }
.footer-links a { font-size: .82rem; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--primary-2); }
.footer-copy { font-size: .75rem; color: var(--text-muted); width: 100%; }

/* ── Scroll animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-wide  { grid-column: span 2; }
  .integrations-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .pipelines-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-wide  { grid-column: span 1; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 60%; height: 1px; }
  .hero-title { font-size: 2.1rem; }
  .cta-card { padding: 48px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { margin-left: 0; }
}
@media (max-width: 480px) {
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo { width: 200px; }
  .codegen-tabs { flex-wrap: wrap; }
}
