:root {
  --bg: #ffffff;
  --bg-soft: #faf9ff;
  --bg-dark: #0d0a2b;
  --bg-darker: #07051c;
  --text: #1b1638;
  --text-muted: #5f5b7a;
  --text-on-dark: #f3f0ff;
  --text-on-dark-muted: #b3aed4;
  --primary: #6d4aff;
  --primary-dark: #4f2fdd;
  --primary-soft: #efeaff;
  --accent: #00d4ff;
  --accent-warm: #ff6b9d;
  --success: #22c55e;
  --warning: #f59e0b;
  --border: #ebe7f5;
  --border-dark: #2a2456;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(13,10,43,.06), 0 4px 10px rgba(13,10,43,.04);
  --shadow: 0 8px 30px rgba(67,42,200,.08), 0 2px 6px rgba(13,10,43,.05);
  --shadow-lg: 0 30px 80px rgba(67,42,200,.18);
  --gradient: linear-gradient(135deg, #6d4aff 0%, #b46bff 50%, #00d4ff 100%);
  --gradient-warm: linear-gradient(135deg, #ff6b9d 0%, #ffa547 100%);
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; background: var(--primary-soft); color: var(--primary-dark); }
.eyebrow.dark { background: rgba(255,255,255,.08); color: var(--accent); border: 1px solid rgba(255,255,255,.15); }
.h-grad { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ─── NAV ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(235,231,245,.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--max); margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--text); }
.logo-mark { width: 32px; height: 32px; border-radius: 9px; background: var(--gradient); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(109,74,255,.35); }
.logo-mark svg { width: 18px; height: 18px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 14.5px; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 10px; background: var(--text); color: white !important; font-weight: 600; font-size: 14px; transition: transform .2s, background .2s; }
.nav-cta:hover { transform: translateY(-1px); background: var(--primary); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }

/* ─── BUTTONS ──────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 12px; font-weight: 600; font-size: 15px; cursor: pointer; transition: all .2s; border: 0; text-decoration: none; }
.btn-primary { background: var(--gradient); color: white; box-shadow: 0 10px 30px rgba(109,74,255,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(109,74,255,.5); }
.btn-ghost { background: rgba(255,255,255,.08); color: white; border: 1px solid rgba(255,255,255,.18); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-light { background: white; color: var(--text); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--primary-soft); color: var(--primary-dark); }
.btn-secondary:hover { background: #e2d9ff; }

/* ─── HERO ─────────────────────────────────── */
.hero { position: relative; padding: 160px 0 100px; overflow: hidden; background: radial-gradient(ellipse at 20% -10%, #efeaff 0%, transparent 50%), radial-gradient(ellipse at 100% 30%, #ffe6f0 0%, transparent 45%), white; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(109,74,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(109,74,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero h1 { font-size: clamp(36px, 5.2vw, 64px); line-height: 1.05; letter-spacing: -.025em; font-weight: 800; margin: 22px 0 24px; }
.hero h1 .accent { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 19px; color: var(--text-muted); max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: var(--text-muted); }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item svg { width: 18px; height: 18px; color: var(--success); }

/* Hero visual / mock */
.hero-visual { position: relative; }
.mock {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.hero-visual:hover .mock { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #f7f5ff; border-bottom: 1px solid var(--border); }
.mock-dot { width: 11px; height: 11px; border-radius: 50%; background: #ffbd2e; }
.mock-dot:first-child { background: #ff5f57; }
.mock-dot:nth-child(3) { background: #28c93f; }
.mock-url { flex: 1; padding: 4px 10px; background: white; border-radius: 6px; font-size: 12px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.mock-body { display: grid; grid-template-columns: 230px 1fr; min-height: 420px; }
.mock-side { padding: 18px; background: #fdfcff; border-right: 1px solid var(--border); font-size: 13px; }
.mock-side h4 { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin: 14px 0 10px; }
.mock-side h4:first-child { margin-top: 0; }
.mock-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; color: var(--text); }
.mock-cb { width: 16px; height: 16px; border: 1.5px solid #d4cdef; border-radius: 4px; flex-shrink: 0; }
.mock-cb.checked { background: var(--primary); border-color: var(--primary); position: relative; }
.mock-cb.checked::after { content: ''; position: absolute; left: 4.5px; top: 1.5px; width: 4px; height: 8px; border: solid white; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.mock-cb.circle { border-radius: 50%; }
.mock-count { margin-left: auto; font-size: 11px; color: var(--text-muted); }
.mock-swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.mock-swatch { width: 22px; height: 22px; border-radius: 50%; border: 2px solid white; box-shadow: 0 0 0 1.5px #e6e1f5; cursor: pointer; }
.mock-swatch.active { box-shadow: 0 0 0 2px var(--primary); }
.mock-range { padding: 8px 0; }
.mock-track { height: 4px; background: #e6e1f5; border-radius: 2px; position: relative; }
.mock-fill { position: absolute; left: 20%; right: 30%; top: 0; bottom: 0; background: var(--primary); border-radius: 2px; }
.mock-thumb { position: absolute; top: -7px; width: 18px; height: 18px; background: white; border: 2px solid var(--primary); border-radius: 50%; }
.mock-grid { padding: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-content: start; }
.mock-card { background: white; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.mock-card-img { aspect-ratio: 1; background: linear-gradient(135deg, #efeaff, #ffe6f0); display: grid; place-items: center; font-size: 28px; }
.mock-card-body { padding: 10px; }
.mock-card-title { font-size: 12px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.mock-card-price { font-size: 12px; color: var(--primary-dark); font-weight: 700; }
.mock-stars { color: #ffba08; font-size: 11px; margin-top: 2px; }
.mock-pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; background: var(--primary-soft); color: var(--primary-dark); border-radius: 999px; font-size: 11px; font-weight: 600; margin-bottom: 4px; }

.hero-float { position: absolute; padding: 14px 18px; background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); display: flex; align-items: center; gap: 12px; font-size: 13px; z-index: 3; }
.hero-float.f1 { top: -20px; left: -20px; animation: floatA 5s ease-in-out infinite; }
.hero-float.f2 { bottom: -18px; right: 12px; animation: floatB 6s ease-in-out infinite; }
@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.float-icon { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; }
.float-icon.purple { background: var(--primary-soft); color: var(--primary); }
.float-icon.pink { background: #ffe6f0; color: #d63384; }
.float-strong { font-weight: 700; color: var(--text); }

/* ─── LOGO MARQUEE ─────────────────────────── */
.logos { padding: 56px 0; background: var(--bg-soft); border-block: 1px solid var(--border); overflow: hidden; }
.logos-title { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.marquee { position: relative; mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%); }
.marquee-track { display: flex; gap: 16px; width: max-content; animation: scrollX 45s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-card {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s;
}
.logo-card:hover { transform: translateY(-2px); border-color: var(--primary); box-shadow: var(--shadow); }
.logo-card-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
  letter-spacing: -.02em;
}
.logo-card-name { font-weight: 600; font-size: 14px; color: var(--text); }

/* ─── SECTIONS ─────────────────────────────── */
section { padding: 120px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; font-weight: 800; letter-spacing: -.02em; margin: 16px 0 18px; }
.section-head p { font-size: 18px; color: var(--text-muted); }

/* ─── FEATURES ─────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: var(--primary-soft); color: var(--primary); }
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

.feat-purple .feature-icon { background: linear-gradient(135deg, #efeaff, #f7e6ff); color: #6d4aff; }
.feat-pink .feature-icon   { background: linear-gradient(135deg, #ffe6f0, #fff0e0); color: #ff6b9d; }
.feat-blue .feature-icon   { background: linear-gradient(135deg, #e0f7ff, #e0ecff); color: #0099d4; }
.feat-green .feature-icon  { background: linear-gradient(135deg, #dcfce7, #ecfccb); color: #22c55e; }
.feat-amber .feature-icon  { background: linear-gradient(135deg, #fef3c7, #fee2c4); color: #d97706; }
.feat-rose .feature-icon   { background: linear-gradient(135deg, #ffe4e6, #fce7f3); color: #e11d48; }

/* ─── DEMO CTA BAND ────────────────────────── */
.demo-band { background: var(--bg-dark); color: var(--text-on-dark); padding: 100px 0; position: relative; overflow: hidden; }
.demo-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(109,74,255,.4) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(0,212,255,.25) 0%, transparent 45%); pointer-events: none; }
.demo-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.demo-band h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; margin: 14px 0 18px; font-weight: 800; letter-spacing: -.02em; }
.demo-band p { color: var(--text-on-dark-muted); font-size: 17px; margin-bottom: 28px; }
.demo-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.demo-frame { aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.1); position: relative; background: linear-gradient(135deg, #1a1640, #0d0a2b); }
.demo-frame-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.08); }
.demo-frame-url { flex: 1; padding: 4px 10px; background: rgba(255,255,255,.06); border-radius: 6px; font-size: 12px; color: var(--text-on-dark-muted); font-family: 'JetBrains Mono', monospace; }
.demo-frame-body { padding: 28px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 18px; }
.demo-side h5 { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-on-dark-muted); margin: 12px 0 8px; font-weight: 700; }
.demo-side h5:first-child { margin-top: 0; }
.demo-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 13px; color: var(--text-on-dark); }
.demo-cb { width: 14px; height: 14px; border: 1.5px solid #6c6498; border-radius: 4px; flex-shrink: 0; }
.demo-cb.checked { background: var(--primary); border-color: var(--primary); }
.demo-count { margin-left: auto; font-size: 11px; color: var(--text-on-dark-muted); }
.demo-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; align-content: start; }
.demo-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 12px; }
.demo-card-img { aspect-ratio: 1; background: linear-gradient(135deg, rgba(109,74,255,.2), rgba(0,212,255,.15)); border-radius: 6px; margin-bottom: 8px; display: grid; place-items: center; font-size: 22px; }
.demo-card-title { font-size: 12px; font-weight: 600; line-height: 1.3; }
.demo-card-price { font-size: 12px; color: var(--accent); font-weight: 700; margin-top: 3px; }

/* ─── HOW IT WORKS ─────────────────────────── */
.how { background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--primary) 0 8px, transparent 8px 16px); opacity: .3; }
.step { background: white; border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--border); position: relative; transition: all .3s; }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--gradient); color: white; display: grid; place-items: center; font-weight: 800; font-size: 20px; box-shadow: 0 10px 25px rgba(109,74,255,.4); position: relative; z-index: 2; }
.step h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ─── INTEGRATIONS ─────────────────────────── */
.integrations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.integration { padding: 28px 20px; background: white; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; transition: all .25s; }
.integration:hover { transform: translateY(-2px); border-color: var(--primary); box-shadow: var(--shadow); }
.integration-mark { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px; display: grid; place-items: center; font-size: 22px; font-weight: 800; color: white; }
.integration h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.integration p { font-size: 13px; color: var(--text-muted); }

/* ─── USE CASES ────────────────────────────── */
.usecases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usecase { padding: 36px; background: linear-gradient(180deg, white, var(--bg-soft)); border: 1px solid var(--border); border-radius: var(--radius-lg); position: relative; overflow: hidden; transition: all .3s; }
.usecase::before { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px; background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%); opacity: 0; transition: opacity .3s; }
.usecase:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.usecase:hover::before { opacity: 1; }
.usecase-emoji { font-size: 40px; margin-bottom: 18px; position: relative; z-index: 1; }
.usecase h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
.usecase p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; position: relative; z-index: 1; }
.usecase ul { list-style: none; position: relative; z-index: 1; }
.usecase li { padding: 6px 0; padding-left: 24px; position: relative; font-size: 14px; color: var(--text); }
.usecase li::before { content: '✓'; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; background: var(--success); color: white; border-radius: 50%; font-size: 10px; line-height: 16px; text-align: center; font-weight: 700; }

/* ─── COMPARE TABLE ────────────────────────── */
.compare { background: var(--bg-soft); }
.compare-table { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); max-width: 980px; margin: 0 auto; }
.compare-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; align-items: center; padding: 18px 28px; border-bottom: 1px solid var(--border); font-size: 15px; }
.compare-row:last-child { border-bottom: 0; }
.compare-row.head { background: linear-gradient(135deg, #f7f5ff, #fdfcff); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }
.compare-row.head > div { text-align: center; }
.compare-row.head > div:first-child { text-align: left; }
.compare-row.featured { background: linear-gradient(135deg, #efeaff20, transparent); }
.compare-row .label { font-weight: 600; }
.compare-row > div:not(:first-child) { text-align: center; }
.check { color: var(--success); font-weight: 700; font-size: 18px; }
.cross { color: #d4cdef; font-size: 18px; }
.partial { color: var(--warning); font-weight: 700; font-size: 14px; }

/* ─── FAQ ──────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1080px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; }
.faq-item:hover { border-color: #d4cdef; }
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--primary); }
.faq-q { padding: 22px 24px; cursor: pointer; font-weight: 600; font-size: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none; user-select: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--primary); transition: transform .25s; flex-shrink: 0; line-height: 1; }
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 24px 22px; color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.faq-a code { background: var(--primary-soft); color: var(--primary-dark); padding: 2px 6px; border-radius: 4px; font-size: 13px; font-family: 'JetBrains Mono', monospace; }

/* ─── FINAL CTA ────────────────────────────── */
.final-cta { background: var(--bg-darker); color: var(--text-on-dark); padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(109,74,255,.35) 0%, transparent 60%); }
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; line-height: 1.1; margin: 16px 0 20px; letter-spacing: -.02em; }
.final-cta p { font-size: 18px; color: var(--text-on-dark-muted); margin-bottom: 36px; }
.final-cta .hero-cta { justify-content: center; }

/* ─── FOOTER ───────────────────────────────── */
.footer { background: var(--bg-darker); color: var(--text-on-dark-muted); padding: 60px 0 30px; border-top: 1px solid var(--border-dark); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { margin-top: 14px; font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer h5 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-on-dark-muted); font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: white; }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 960px) {
  .hero-grid, .demo-band-inner { grid-template-columns: 1fr; gap: 50px; }
  .features-grid, .integrations-grid, .usecases-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .logos-grid { grid-template-columns: repeat(4, 1fr); row-gap: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-row { grid-template-columns: 1.5fr repeat(3, 1fr); padding: 14px; font-size: 13px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 18px; align-items: flex-start; }
  .nav-links.open .nav-cta { width: 100%; justify-content: center; }
  .hero { padding: 130px 0 70px; }
  section { padding: 80px 0; }
  .hero-float { display: none; }
}
@media (max-width: 600px) {
  .features-grid, .integrations-grid, .usecases-grid, .faq-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { border-right: 0; border-bottom: 1px solid var(--border); }
  .mock-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-frame-body { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SUPPORT PAGE ─────────────────────────── */
.sup-hero { padding: 150px 0 70px; background: radial-gradient(ellipse at 30% 0%, #efeaff 0%, transparent 50%), radial-gradient(ellipse at 100% 100%, #ffe6f0 0%, transparent 50%), white; text-align: center; position: relative; }
.sup-hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; letter-spacing: -.025em; line-height: 1.05; margin: 18px 0 18px; }
.sup-hero p { font-size: 19px; color: var(--text-muted); max-width: 640px; margin: 0 auto 32px; }
.sup-toc { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 880px; margin: 0 auto; }
.sup-toc a { padding: 8px 16px; border-radius: 999px; background: white; border: 1px solid var(--border); color: var(--text); font-size: 13px; font-weight: 500; transition: all .2s; }
.sup-toc a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }

.sup-step { padding: 80px 0; border-bottom: 1px solid var(--border); }
.sup-step:last-of-type { border-bottom: 0; }
.sup-step-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.sup-step:nth-of-type(even) .sup-step-grid { direction: rtl; }
.sup-step:nth-of-type(even) .sup-step-grid > * { direction: ltr; }
.sup-num { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 13px; color: var(--primary); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.sup-num span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--primary-soft); color: var(--primary-dark); font-size: 13px; }
.sup-step h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 16px; }
.sup-step p.sup-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.sup-list { list-style: none; padding: 0; }
.sup-list li { padding: 8px 0 8px 32px; position: relative; font-size: 15px; color: var(--text); }
.sup-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 16px; height: 16px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 4px var(--primary-soft); }
.sup-list li::after { content: ''; position: absolute; left: 5px; top: 17px; width: 6px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.sup-tip { margin-top: 18px; padding: 14px 18px; background: linear-gradient(135deg, #fef3c7, #fde68a); border-left: 4px solid #f59e0b; border-radius: 8px; font-size: 14px; color: #78350f; }
.sup-tip strong { color: #92400e; }

/* WordPress admin mockup */
.wp { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: #f0f0f1; min-height: 380px; display: grid; grid-template-rows: 32px 1fr; }
.wp-bar { background: #1d2327; color: #fff; display: flex; align-items: center; padding: 0 14px; gap: 18px; font-size: 12px; }
.wp-bar .wp-logo { color: #c3c4c7; }
.wp-bar .wp-bar-item { color: #c3c4c7; padding: 6px 8px; }
.wp-body { display: grid; grid-template-columns: 145px 1fr; }
.wp-side { background: #1d2327; color: #c3c4c7; padding: 8px 0; font-size: 12px; }
.wp-side-item { padding: 8px 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.wp-side-item.active { background: #2271b1; color: #fff; border-left: 3px solid #00d4ff; padding-left: 11px; }
.wp-side-item.fc { background: linear-gradient(90deg, rgba(109,74,255,.25), transparent); color: #fff; }
.wp-side-icon { width: 14px; height: 14px; flex-shrink: 0; opacity: .8; }
.wp-main { padding: 18px; background: #f0f0f1; min-height: 320px; overflow: hidden; }
.wp-h { font-size: 18px; font-weight: 400; color: #1d2327; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.wp-h .wp-h-btn { font-size: 12px; padding: 4px 10px; border: 1px solid #2271b1; color: #2271b1; border-radius: 3px; background: #fff; }
.wp-card { background: #fff; border: 1px solid #c3c4c7; border-radius: 4px; padding: 16px; }
.wp-notice { background: #fff; border-left: 4px solid #00a32a; padding: 12px 14px; font-size: 13px; color: #1d2327; margin-bottom: 14px; border-radius: 2px; }
.wp-notice.info { border-left-color: #2271b1; }
.wp-btn { display: inline-block; padding: 6px 14px; background: #2271b1; color: white; border-radius: 3px; font-size: 13px; border: 1px solid #2271b1; cursor: pointer; }
.wp-btn.sec { background: #f6f7f7; color: #2271b1; }
.wp-input { width: 100%; padding: 6px 10px; border: 1px solid #8c8f94; border-radius: 3px; font-size: 13px; background: #fff; color: #1d2327; }
.wp-file { display: flex; align-items: center; gap: 10px; padding: 14px; background: #f6f7f7; border: 1px dashed #8c8f94; border-radius: 4px; font-size: 13px; color: #50575e; }
.wp-file-icon { width: 36px; height: 36px; background: var(--primary-soft); color: var(--primary); border-radius: 6px; display: grid; place-items: center; font-size: 18px; }
.wp-table { width: 100%; background: #fff; border: 1px solid #c3c4c7; border-radius: 4px; font-size: 13px; }
.wp-table-row { display: grid; grid-template-columns: 24px 1fr auto; padding: 10px 14px; border-bottom: 1px solid #f0f0f1; align-items: center; gap: 10px; }
.wp-table-row:last-child { border-bottom: 0; }
.wp-table-row.head { background: #f6f7f7; font-weight: 600; }
.wp-table-row.fc { background: linear-gradient(90deg, rgba(109,74,255,.08), transparent); }
.wp-table-name { font-weight: 600; color: #2271b1; }
.wp-table-meta { font-size: 12px; color: #50575e; margin-top: 2px; }
.wp-link { color: #2271b1; font-size: 12px; text-decoration: underline; cursor: pointer; }
.wp-cb { width: 14px; height: 14px; border: 1px solid #8c8f94; border-radius: 2px; flex-shrink: 0; background: #fff; position: relative; }
.wp-cb.checked { background: #2271b1; border-color: #2271b1; }
.wp-cb.checked::after { content: ''; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px; border: solid white; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }

/* FilterCraft admin mockup (purple themed) */
.fc-app { background: white; border-radius: 6px; overflow: hidden; }
.fc-app-tabs { display: flex; gap: 0; padding: 0 18px; background: linear-gradient(135deg, #f7f5ff, #fdfcff); border-bottom: 1px solid var(--border); }
.fc-app-tab { padding: 14px 16px; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; }
.fc-app-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.fc-app-body { padding: 18px; display: grid; grid-template-columns: 180px 1fr 200px; gap: 14px; min-height: 280px; }
.fc-app-pane h6 { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.fc-app-list { display: flex; flex-direction: column; gap: 6px; }
.fc-app-pill { padding: 8px 10px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; font-size: 12px; display: flex; align-items: center; gap: 8px; cursor: grab; transition: all .2s; }
.fc-app-pill:hover { border-color: var(--primary); transform: translateX(2px); }
.fc-app-pill .drag { color: var(--text-muted); font-size: 14px; }
.fc-drop { background: linear-gradient(180deg, var(--primary-soft), white); border: 2px dashed var(--primary); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 8px; min-height: 230px; }
.fc-drop-item { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-size: 12px; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm); }
.fc-drop-item .grab { color: var(--text-muted); cursor: grab; }
.fc-drop-item .pill { margin-left: auto; padding: 2px 8px; background: var(--primary-soft); color: var(--primary-dark); border-radius: 999px; font-size: 10px; font-weight: 600; }
.fc-prev { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; padding: 12px; font-size: 11px; }
.fc-prev-h { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; margin-bottom: 8px; }
.fc-prev-row { display: flex; align-items: center; gap: 6px; padding: 4px 0; }
.fc-prev-cb { width: 12px; height: 12px; border-radius: 3px; border: 1.5px solid #d4cdef; flex-shrink: 0; }
.fc-prev-cb.checked { background: var(--primary); border-color: var(--primary); }

/* Placement options grid (3 mini mockups) */
.placement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.placement-card { padding: 14px; background: white; border: 1px solid var(--border); border-radius: 10px; }
.placement-head { font-size: 12px; font-weight: 700; color: var(--primary); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.placement-mini { padding: 10px; background: var(--bg-soft); border-radius: 6px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text); }

/* Design preset thumbs */
.preset-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.preset { padding: 10px; background: white; border: 2px solid var(--border); border-radius: 8px; cursor: pointer; transition: all .2s; text-align: center; }
.preset.active { border-color: var(--primary); background: var(--primary-soft); }
.preset-swatch { display: flex; gap: 4px; justify-content: center; margin-bottom: 6px; }
.preset-swatch span { width: 16px; height: 16px; border-radius: 4px; }
.preset-name { font-size: 11px; font-weight: 600; color: var(--text); }

/* Contact card at bottom of support */
.sup-contact { background: linear-gradient(135deg, var(--primary-soft), #ffe6f0); padding: 56px; border-radius: var(--radius-xl); text-align: center; margin-top: 80px; }
.sup-contact h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.sup-contact p { color: var(--text-muted); margin-bottom: 24px; max-width: 540px; margin-left: auto; margin-right: auto; }

@media (max-width: 960px) {
  .sup-step-grid { grid-template-columns: 1fr; gap: 30px; }
  .sup-step:nth-of-type(even) .sup-step-grid { direction: ltr; }
  .fc-app-body { grid-template-columns: 1fr; }
  .placement-grid { grid-template-columns: 1fr; }
  .preset-row { grid-template-columns: repeat(2, 1fr); }
}
