/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0d0d12;
  --bg-2:      #13131a;
  --bg-3:      #1a1a24;
  --bg-4:      #21212e;
  --ink:       #f0eeff;
  --ink-soft:  #c8c4e8;
  --ink-mute:  #7a7a9a;
  --purple:    #7B2FF7;
  --pink:      #F107A3;
  --border:    rgba(123, 47, 247, 0.18);
  --border-2:  rgba(123, 47, 247, 0.32);
  --grad:      linear-gradient(135deg, #7B2FF7, #F107A3);
  --grad-text: linear-gradient(135deg, #a06aff, #f472d0);
  --grad-1:    #7B2FF7;
  --grad-2:    #b820c8;
  --grad-3:    #F107A3;
  --grad-4:    #5500cc;
  --glow:      rgba(123, 47, 247, 0.4);
  --glow-pink: rgba(241, 7, 163, 0.3);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.03em; }
::selection { background: var(--purple); color: #fff; }

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Noise grain overlay
   ============================================================= */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================================
   4. Skip link
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: 14px;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   5. Typography
   ============================================================= */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================================
   6. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px; margin: -2.5px;
  background: var(--pink);
  border-radius: 50%;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 28px; height: 28px; margin: -14px;
  border: 1px solid rgba(123,47,247,0.7);
  border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), border-color .25s;
}
.cursor.is-interactive .cursor-ring { width: 44px; height: 44px; margin: -22px; border-color: var(--pink); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   7. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
  background: rgba(13,13,18,0);
  transition: background .4s var(--ease-soft), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13,13,18,0.88);
  border-bottom-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 15px;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--grad);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-mute);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 12px;
}

/* Lang switcher */
.lang-sw {
  display: flex; align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.lang-btn {
  padding: 6px 11px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  transition: all .2s;
  background: none; border: none; cursor: pointer;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active {
  background: var(--grad);
  color: #fff;
}
.lang-sw-div { width: 1px; height: 16px; background: var(--border); }

/* Nav CTA button */
.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: var(--grad);
  color: #fff; font-size: 13px; font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 0 20px var(--glow);
  transition: all .25s var(--ease-out);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 0 32px var(--glow), 0 0 14px var(--glow-pink); }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--ink); font-size: 22px; cursor: pointer; padding: 4px;
}

/* Mobile nav open */
.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(13,13,18,0.97);
  border-bottom: 1px solid var(--border);
  padding: 20px clamp(24px, 5vw, 64px);
  z-index: 99;
  backdrop-filter: blur(20px);
  flex-direction: column; gap: 20px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 16px; font-weight: 500; color: var(--ink-mute);
  transition: color .2s;
}
.nav-mobile-menu a:hover { color: var(--ink); }

/* =============================================================
   8. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  border-radius: 10px;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 28px var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px var(--glow), 0 0 20px var(--glow-pink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--border-2);
}

/* =============================================================
   9. Hero
   ============================================================= */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

/* Mouse-reactive gradient — archetype 05 */
.hero-gradient {
  position: absolute; inset: 0; z-index: 0;
  /* Pure CSS animation — no JS, no scroll jank */
  background:
    radial-gradient(circle 700px at 28% 42%, rgba(123,47,247,0.2) 0%, transparent 55%),
    radial-gradient(circle 500px at 72% 60%, rgba(241,7,163,0.13) 0%, transparent 50%),
    radial-gradient(circle 900px at 80% 80%, rgba(85,0,204,0.1) 0%, transparent 60%);
  filter: blur(40px);
  animation: gradientDrift 18s ease-in-out infinite alternate;
  will-change: transform;
  transform: translateZ(0);
}
@keyframes gradientDrift {
  0%   { transform: translateZ(0) scale(1)    translate(0px,   0px);  }
  33%  { transform: translateZ(0) scale(1.06) translate(20px, -15px); }
  66%  { transform: translateZ(0) scale(0.97) translate(-15px, 20px); }
  100% { transform: translateZ(0) scale(1.04) translate(10px,  10px); }
}

/* Static grid lines */
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(123,47,247,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,247,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 40% 50%, black 20%, transparent 75%);
}

.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px clamp(24px, 5vw, 64px);
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(123,47,247,0.1);
  border: 1px solid rgba(123,47,247,0.28);
  border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #c4a5ff;
  margin-bottom: 28px;
}
.hero-kicker-dot {
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 14ch;
}

.hero-desc {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ink-mute);
  font-weight: 300;
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--ink-mute);
}
.trust-check {
  width: 18px; height: 18px;
  background: rgba(123,47,247,0.12);
  border: 1px solid rgba(123,47,247,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #a06aff;
}

/* Hero mock card */
.hero-visual {
  position: absolute;
  right: clamp(24px, 6vw, 80px);
  top: 50%; transform: translateY(-50%);
  z-index: 1;
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(-50%) translateY(0px) rotate(0deg); }
  33%     { transform: translateY(-50%) translateY(-10px) rotate(.4deg); }
  66%     { transform: translateY(-50%) translateY(-5px) rotate(-.3deg); }
}

.mock-card {
  width: 320px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 48px 96px rgba(0,0,0,0.6), 0 0 48px rgba(123,47,247,0.12);
  position: relative;
  overflow: hidden;
}
.mock-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
}
.mock-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.mock-title-row { display: flex; align-items: center; gap: 7px; }
.mock-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
}
.mock-name {
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #c4a5ff;
}
.mock-badge {
  font-size: 10px; padding: 2px 8px;
  background: rgba(123,47,247,0.15);
  border: 1px solid rgba(123,47,247,0.28);
  border-radius: 4px; color: #c4a5ff;
  text-transform: uppercase; letter-spacing: .05em;
}
.mock-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  margin-bottom: 14px;
}
.stat-box {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px; padding: 10px; text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl { font-size: 9px; color: var(--ink-mute); margin-top: 2px; }
.mock-rows { display: flex; flex-direction: column; gap: 7px; }
.mock-row {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 8px; padding: 7px 9px;
}
.mock-av {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
}
.mock-info { flex: 1; }
.mock-un { font-size: 11px; font-weight: 500; }
.mock-hndl { font-size: 10px; color: var(--ink-mute); }
.mock-unfol {
  font-size: 9px; padding: 3px 9px;
  border-radius: 5px;
  border: 1px solid rgba(241,7,163,0.35);
  color: var(--pink);
  background: rgba(241,7,163,0.06);
  white-space: nowrap;
}
.mock-unfol.done {
  border-color: rgba(123,47,247,0.25);
  color: var(--ink-mute);
  background: rgba(123,47,247,0.05);
  text-decoration: line-through;
}

.hero-chip {
  position: absolute;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 13px;
  font-size: 11px; font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.hero-chip-1 { top: -18px; right: -28px; color: #7af0b0; border-color: rgba(122,240,176,0.22); background: rgba(122,240,176,0.06); animation: chipFloat1 4.2s ease-in-out infinite; }
.hero-chip-2 { bottom: 36px; left: -36px; color: #c4a5ff; border-color: rgba(123,47,247,0.28); animation: chipFloat2 5.5s ease-in-out infinite; }
@keyframes chipFloat1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes chipFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* =============================================================
   10. Container / layout helpers
   ============================================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}
.section { padding: 120px 0; }

/* Section header */
.sect-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--purple); font-weight: 600; margin-bottom: 10px;
}
.sect-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.sect-sub {
  font-size: 17px; color: var(--ink-mute); font-weight: 300;
  max-width: 52ch; line-height: 1.7;
}
.sect-head { margin-bottom: 64px; }
.sect-head.center { text-align: center; }
.sect-head.center .sect-sub { margin: 0 auto; }

.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* =============================================================
   11. Reveal animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* gotcha A.4.5 */

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* =============================================================
   12. How it works — 3 steps
   ============================================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.step {
  background: var(--bg-2);
  padding: 48px 36px;
  position: relative;
  transition: background .3s;
}
.step:hover { background: var(--bg-3); }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 80px; font-weight: 800; line-height: 1;
  margin-bottom: 28px;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
}
.step-icon {
  width: 48px; height: 48px;
  background: rgba(123,47,247,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 19px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step p { font-size: 15px; color: var(--ink-mute); font-weight: 300; line-height: 1.65; }

/* =============================================================
   13. Features
   ============================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feat {
  background: var(--bg-2);
  padding: 40px;
  display: flex; gap: 20px;
  transition: background .3s;
}
.feat:hover { background: var(--bg-3); }
.feat.wide { grid-column: span 2; background: linear-gradient(135deg, rgba(123,47,247,0.07), rgba(241,7,163,0.04)); }
.feat-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(123,47,247,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.feat-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.feat-body p { font-size: 14px; color: var(--ink-mute); font-weight: 300; line-height: 1.65; }

/* =============================================================
   14. Pricing
   ============================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all .25s var(--ease-out);
}
.plan:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.plan.featured {
  border-color: rgba(123,47,247,0.45);
  background: linear-gradient(160deg, rgba(123,47,247,0.09), rgba(241,7,163,0.05));
  box-shadow: 0 0 0 1px rgba(123,47,247,0.2), 0 24px 56px rgba(123,47,247,0.1);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .08em;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-mute); margin-bottom: 14px;
}
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 38px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 4px;
}
.plan-price span { font-size: 18px; font-weight: 400; color: var(--ink-mute); }
.plan-period { font-size: 12px; color: var(--ink-mute); margin-bottom: 22px; }
.plan-div { height: 1px; background: var(--border); margin-bottom: 18px; }
.plan-feats { list-style: none; margin-bottom: 24px; flex: 1; }
.plan-feats li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--ink-mute); font-weight: 300;
  margin-bottom: 9px;
}
.plan-feats li::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-cta {
  display: block; text-align: center;
  padding: 12px; border-radius: 9px;
  font-weight: 600; font-size: 14px;
  border: 1px solid var(--border);
  color: var(--ink);
  transition: all .2s;
}
.plan-cta:hover { background: var(--bg-3); border-color: var(--border-2); }
.plan.featured .plan-cta {
  background: var(--grad); border-color: transparent;
  color: #fff; box-shadow: 0 4px 20px var(--glow);
}
.plan.featured .plan-cta:hover { box-shadow: 0 6px 32px var(--glow), 0 0 12px var(--glow-pink); transform: translateY(-1px); }
.pricing-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--ink-mute); }
.pricing-note a { color: var(--purple); }
.pricing-note a:hover { text-decoration: underline; }

/* =============================================================
   15. FAQ
   ============================================================= */
.faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--border);
  border-radius: 20px; overflow: hidden;
}
.faq-item {
  background: var(--bg-2);
  padding: 32px;
  transition: background .2s;
}
.faq-item:hover { background: var(--bg-3); }
.faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 12px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.faq-icon { color: var(--purple); font-size: 18px; flex-shrink: 0; }
.faq-a { font-size: 14px; color: var(--ink-mute); font-weight: 300; line-height: 1.7; }

/* =============================================================
   16. CTA banner
   ============================================================= */
.cta-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(48px, 7vw, 80px) clamp(32px, 6vw, 80px);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(123,47,247,0.12), transparent 65%);
}
.cta-box::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--grad); opacity: .5;
}
.cta-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 14px; position: relative;
}
.cta-box p {
  font-size: 17px; color: var(--ink-mute); font-weight: 300;
  margin-bottom: 36px; position: relative;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* =============================================================
   17. Footer
   ============================================================= */
footer {
  border-top: 1px solid var(--border);
  padding: 48px clamp(24px, 5vw, 64px);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--ink-mute); transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 13px; color: var(--ink-mute); }

/* =============================================================
   18. Section backgrounds (subtle alternation)
   ============================================================= */
#how    { background: linear-gradient(180deg, transparent, rgba(123,47,247,0.025) 50%, transparent); }
#feats  { background: transparent; }
#faq    { background: linear-gradient(180deg, transparent, rgba(241,7,163,0.02) 50%, transparent); }

/* =============================================================
   19. Responsive
   ============================================================= */
@media (max-width: 960px) {
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feat.wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
  .sect-head.center { text-align: left; }
  .sect-head.center .sect-sub { margin: 0; }
  .cta-actions { flex-direction: column; }
}

/* =============================================================
   20. Reduced motion (intrusive effects only)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-chip-1, .hero-chip-2 { animation: none; }
  @keyframes heroFloat { 0%,100% { transform: translateY(-50%); } }
}
