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

:root {
  --bg:        #060b18;
  --bg-2:      #0a1020;
  --panel:     #0e1628;
  --panel-2:   #141f38;
  --panel-3:   #1a2848;
  --text:      #eef2ff;
  --muted:     #8898c8;
  --muted-2:   #b7c0e0;
  --line:      rgba(255,255,255,0.08);
  --brand:     #7c9cff;
  --brand-2:   #52e1c4;
  --accent:    #ffd166;
  --red:       #ff6b6b;
  --grad:      linear-gradient(135deg, #7c9cff 0%, #52e1c4 100%);
  --grad-warm: linear-gradient(135deg, #ffd166 0%, #ff9f43 100%);
  --glow:      0 0 40px rgba(124,156,255,0.18);
  --glow-2:    0 0 60px rgba(82,225,196,0.15);
  --radius:    18px;
  --radius-lg: 28px;
  --shadow:    0 4px 32px rgba(0,0,0,0.45);
  --shadow-lg: 0 8px 64px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

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

/* ─── Background Orbs ──────────────────────────────────────── */
.bg-orbs {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-orbs span {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.10;
  animation: orb-float 22s ease-in-out infinite;
}
.bg-orbs span:nth-child(1) {
  width: 700px; height: 700px; background: #7c9cff;
  top: -20%; left: -15%; animation-duration: 24s;
}
.bg-orbs span:nth-child(2) {
  width: 600px; height: 600px; background: #52e1c4;
  top: 35%; right: -18%; animation-duration: 19s; animation-delay: -9s;
}
.bg-orbs span:nth-child(3) {
  width: 450px; height: 450px; background: #a78bfa;
  bottom: 5%; left: 20%; animation-duration: 27s; animation-delay: -15s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(50px, -70px) scale(1.1); }
  66%       { transform: translate(-35px, 45px) scale(0.94); }
}

/* ─── Utilities ────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-2);
}
.kicker::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--brand-2); border-radius: 2px;
}

.tag {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  background: rgba(124,156,255,0.1); color: var(--brand);
  border: 1px solid rgba(124,156,255,0.22);
}

/* fade-in on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.2,.8,.3,1), transform 0.65s cubic-bezier(.2,.8,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 0 28px;
  background: rgba(6,11,24,0.65);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled { background: rgba(6,11,24,0.92); box-shadow: 0 2px 28px rgba(0,0,0,0.45); }
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-size: 20px; font-weight: 800; letter-spacing: -0.03em;
  text-decoration: none; color: var(--text);
  display: flex; align-items: center; gap: 3px;
}
.nav-logo .accent { color: var(--brand-2); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted-2);
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; font-weight: 600; border-radius: 12px;
  padding: 12px 26px; text-decoration: none; cursor: pointer;
  border: none; transition: all 0.22s cubic-bezier(.2,.8,.3,1);
  white-space: nowrap; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, #7c9cff 0%, #6b7fff 50%, #9a7cff 100%);
  color: #fff; box-shadow: 0 4px 24px rgba(124,156,255,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 36px rgba(124,156,255,0.5);
  filter: brightness(1.08);
}
.btn-secondary {
  background: rgba(255,255,255,0.06); color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-sm { font-size: 13px; padding: 9px 18px; border-radius: 9px; }
.btn-lg { font-size: 17px; padding: 16px 36px; border-radius: 14px; }
.btn-outline-brand {
  background: transparent; color: var(--brand);
  border: 1px solid rgba(124,156,255,0.35);
}
.btn-outline-brand:hover { background: rgba(124,156,255,0.08); transform: translateY(-1px); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero { padding: 96px 0 72px; text-align: center; position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(124,156,255,0.08); border: 1px solid rgba(124,156,255,0.2);
  font-size: 13px; font-weight: 500; color: var(--brand); margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.35); }
}

.hero h1 {
  font-size: clamp(42px, 6.5vw, 74px); font-weight: 900;
  line-height: 1.04; letter-spacing: -0.04em;
  margin-bottom: 22px; max-width: 920px; margin-left: auto; margin-right: auto;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px); color: var(--muted-2);
  max-width: 580px; margin: 0 auto 44px; line-height: 1.72;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 64px;
}

.hero-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap;
}
.hero-stat { text-align: center; padding: 0 36px; }
.hero-stat .num {
  font-size: 30px; font-weight: 900; letter-spacing: -0.03em;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat .label { font-size: 13px; color: var(--muted); margin-top: 3px; }
.proof-divider { width: 1px; height: 40px; background: var(--line); flex-shrink: 0; }

/* ─── Dashboard Preview ────────────────────────────────────── */
.dashboard-wrap {
  position: relative; max-width: 860px; margin: 0 auto 16px;
  padding-top: 16px;
}
.dashboard-preview {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.dashboard-preview::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.dash-bar {
  background: rgba(10,16,32,0.98); padding: 13px 20px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line);
}
.dash-dots { display: flex; gap: 7px; }
.dash-dots span { width: 12px; height: 12px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.dash-title { font-size: 13px; color: var(--muted); margin-left: 10px; letter-spacing: -0.01em; }
.dash-body {
  background: var(--panel); padding: 24px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px;
}
.dash-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
}
.dash-card-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
}
.dash-card-val { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.dash-card-val.up { color: var(--brand-2); }
.dash-card-val.warn { color: var(--accent); }
.dash-card-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.dash-brief {
  grid-column: 1 / -1;
  background: rgba(124,156,255,0.06); border: 1px solid rgba(124,156,255,0.14);
  border-radius: 14px; padding: 18px 20px;
}
.dash-brief-title { font-size: 13px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.dash-brief-items { display: flex; flex-direction: column; gap: 6px; }
.dash-brief-item { display: flex; gap: 10px; font-size: 13px; color: var(--muted-2); }
.dash-brief-item .icon { font-size: 14px; flex-shrink: 0; }
.dash-msg {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.025); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; font-size: 13px; color: var(--muted-2);
  display: flex; gap: 12px; align-items: flex-start;
}
.dash-msg .ai-badge {
  background: linear-gradient(135deg, #7c9cff, #52e1c4);
  border-radius: 6px; padding: 3px 8px; font-size: 11px;
  font-weight: 800; color: #0e1628; flex-shrink: 0; white-space: nowrap;
}

/* ─── Logos Bar ─────────────────────────────────────────────── */
.logos-bar {
  padding: 44px 0 52px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.logos-label {
  text-align: center; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.logo-pill {
  padding: 9px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  font-size: 14px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.01em; transition: all 0.2s;
  cursor: default;
}
.logo-pill:hover { color: var(--muted-2); border-color: rgba(255,255,255,0.16); }

/* ─── Section Base ──────────────────────────────────────────── */
section { padding: 88px 0; position: relative; z-index: 1; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 50px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.12; margin-top: 12px;
}
.section-head p {
  font-size: 18px; color: var(--muted-2); margin-top: 14px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ─── Problem ───────────────────────────────────────────────── */
.problem { background: linear-gradient(180deg, transparent, rgba(255,107,107,0.03), transparent); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain-card {
  padding: 28px 26px; border-radius: var(--radius);
  background: rgba(255,107,107,0.04); border: 1px solid rgba(255,107,107,0.10);
  transition: all 0.25s;
}
.pain-card:hover { border-color: rgba(255,107,107,0.22); transform: translateY(-3px); }
.pain-icon { font-size: 30px; margin-bottom: 14px; }
.pain-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── Features ──────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-card {
  padding: 30px 26px; border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--line); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,156,255,0.45), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover {
  border-color: rgba(124,156,255,0.22); transform: translateY(-4px);
  box-shadow: var(--glow);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,156,255,0.14), rgba(82,225,196,0.08));
  border: 1px solid rgba(124,156,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.feat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.feat-tag {
  display: inline-block; margin-top: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--brand-2); text-transform: uppercase;
}

/* ─── Process ───────────────────────────────────────────────── */
.process { background: linear-gradient(180deg, transparent, rgba(124,156,255,0.03), transparent); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 31px; left: 17%; right: 17%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,156,255,0.3), rgba(82,225,196,0.3), transparent);
}
.step { text-align: center; padding: 0 28px; position: relative; }
.step-num {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--panel-2); border: 2px solid rgba(124,156,255,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--brand);
  margin: 0 auto 24px; position: relative; z-index: 1; transition: all 0.3s;
}
.step:hover .step-num { background: rgba(124,156,255,0.1); border-color: var(--brand); box-shadow: var(--glow); }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-badge {
  display: inline-block; margin-top: 14px; padding: 4px 12px;
  background: rgba(82,225,196,0.08); border: 1px solid rgba(82,225,196,0.18);
  border-radius: 100px; font-size: 12px; color: var(--brand-2); font-weight: 600;
}

/* ─── Stats ─────────────────────────────────────────────────── */
.results { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 52px 24px; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 54px; font-weight: 900; letter-spacing: -0.04em;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.stat-label { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.stat-sub { font-size: 12px; color: var(--muted); margin-top: 4px; opacity: 0.7; }

/* ─── Use Cases ─────────────────────────────────────────────── */
.usecases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.uc-card {
  padding: 30px; border-radius: var(--radius-lg);
  background: var(--panel); border: 1px solid var(--line);
  transition: all 0.3s; display: flex; gap: 22px;
}
.uc-card:hover { border-color: rgba(124,156,255,0.2); box-shadow: var(--glow); transform: translateY(-3px); }
.uc-icon {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.uc-icon.blue   { background: rgba(124,156,255,0.1); }
.uc-icon.teal   { background: rgba(82,225,196,0.08); }
.uc-icon.yellow { background: rgba(255,209,102,0.08); }
.uc-icon.purple { background: rgba(167,139,250,0.09); }
.uc-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.uc-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.uc-points { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.uc-point { font-size: 13px; color: var(--muted-2); display: flex; gap: 8px; }
.uc-point::before { content: '→'; color: var(--brand-2); flex-shrink: 0; font-weight: 700; }

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials { background: linear-gradient(180deg, transparent, rgba(82,225,196,0.03), transparent); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi-card {
  padding: 28px 26px; border-radius: var(--radius-lg);
  background: var(--panel); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px; transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(82,225,196,0.2); box-shadow: var(--glow-2); }
.testi-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; color: var(--muted-2); line-height: 1.75; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #7c9cff, #52e1c4);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #0e1628; flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── Security ──────────────────────────────────────────────── */
.security { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sec-item { text-align: center; padding: 28px 16px; }
.sec-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(82,225,196,0.07); border: 1px solid rgba(82,225,196,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
}
.sec-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.sec-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── CTA / Demo Form ───────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(124,156,255,0.05) 0%, rgba(82,225,196,0.04) 100%);
  border-top: 1px solid var(--line);
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cta-copy h2 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  letter-spacing: -0.03em; margin-top: 12px; line-height: 1.18;
}
.cta-copy p { font-size: 16px; color: var(--muted-2); margin-top: 16px; line-height: 1.72; }
.cta-list { margin-top: 28px; display: flex; flex-direction: column; gap: 13px; }
.cta-list-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--muted-2); }
.cta-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(82,225,196,0.1); border: 1px solid rgba(82,225,196,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--brand-2); flex-shrink: 0; margin-top: 1px;
}
.demo-form {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px;
}
.demo-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 5px; }
.demo-form .form-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-group { margin-bottom: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--muted-2); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  color: var(--text); font-size: 14px; font-family: inherit;
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-input:focus { border-color: rgba(124,156,255,0.4); background: rgba(124,156,255,0.04); }
.form-input::placeholder { color: var(--muted); }
.form-select {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  color: var(--text); font-size: 14px; font-family: inherit; outline: none; cursor: pointer;
}
.form-select option { background: var(--panel-2); color: var(--text); }
.form-submit { width: 100%; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 28px 0; }
.form-success .success-icon { font-size: 44px; margin-bottom: 14px; }
.form-success h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--muted); }

/* ─── Footer ────────────────────────────────────────────────── */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 22px; display: inline-flex; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.72; max-width: 260px; }
.footer-contact { margin-top: 20px; }
.footer-contact a {
  font-size: 14px; color: var(--brand); text-decoration: none;
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--muted-2); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--muted-2); }

/* ─── Docs pages shared ─────────────────────────────────────── */
.docs-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.docs-sidebar {
  border-right: 1px solid var(--line); padding: 32px 0;
  position: sticky; top: 68px; height: calc(100vh - 68px);
  overflow-y: auto; background: rgba(14,22,40,0.5);
}
.sidebar-section { padding: 0 20px 24px; }
.sidebar-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--muted); padding: 0 8px; margin-bottom: 8px;
}
.sidebar-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 9px; text-decoration: none;
  font-size: 14px; color: var(--muted-2); transition: all 0.2s; margin-bottom: 2px;
}
.sidebar-link:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.sidebar-link.active { background: rgba(124,156,255,0.1); color: var(--brand); font-weight: 600; }
.docs-content { padding: 40px 56px; max-width: 760px; }
.docs-content h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.docs-content h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 36px 0 14px; }
.docs-content h3 { font-size: 19px; font-weight: 700; margin: 28px 0 10px; }
.docs-content p { font-size: 15px; color: var(--muted-2); line-height: 1.78; margin-bottom: 16px; }
.docs-content ul { padding-left: 20px; margin-bottom: 16px; }
.docs-content li { font-size: 15px; color: var(--muted-2); line-height: 1.75; margin-bottom: 8px; }
.docs-content code {
  background: rgba(124,156,255,0.08); border: 1px solid rgba(124,156,255,0.15);
  border-radius: 5px; padding: 2px 7px; font-size: 13px; color: var(--brand); font-family: monospace;
}
.docs-content pre {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; overflow-x: auto; margin-bottom: 20px;
}
.docs-content pre code { background: none; border: none; color: var(--muted-2); padding: 0; font-size: 14px; }
.docs-callout {
  background: rgba(124,156,255,0.06); border-left: 3px solid var(--brand);
  border-radius: 0 12px 12px 0; padding: 16px 20px; margin-bottom: 20px;
}
.docs-callout p { margin-bottom: 0; }
.docs-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px;
  border-radius: 100px; font-size: 12px; font-weight: 600;
}
.docs-badge.green { background: rgba(82,225,196,0.1); color: var(--brand-2); border: 1px solid rgba(82,225,196,0.18); }
.docs-badge.blue  { background: rgba(124,156,255,0.1); color: var(--brand);   border: 1px solid rgba(124,156,255,0.18); }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .docs-layout { grid-template-columns: 220px 1fr; }
  .docs-content { padding: 32px 36px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 60px 0 48px; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .usecases-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .dash-body { grid-template-columns: 1fr 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { display: none; }
  .docs-content { padding: 24px 20px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-proof { gap: 0; }
  .hero-stat { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .logos-row { gap: 10px; }
  .logo-pill { font-size: 12px; padding: 7px 14px; }
}
