/* SALIX landing — pure CSS, dark premium theme */
:root {
  --bg: #06060a;
  --bg-2: #0d0d14;
  --bg-3: #14141d;
  --line: #1c1c28;
  --line-2: #2a2a3a;
  --text: #f5f6fa;
  --text-2: #a8a9b8;
  --text-3: #6b6c7e;
  --brand-1: #7c5cff;
  --brand-2: #22d3ee;
  --brand-3: #f472b6;
  --accent: #b5a4ff;
  --green: #34d399;
  --red: #f87171;
  --yellow: #fbbf24;
  --grad: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  --grad-soft: linear-gradient(135deg, rgba(124,92,255,0.18) 0%, rgba(34,211,238,0.18) 100%);
  --grad-text: linear-gradient(135deg, #b5a4ff 0%, #67e8f9 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,.5);
  --shadow-glow: 0 0 60px rgba(124,92,255,.18);
  --radius: 14px;
  --radius-lg: 22px;
  --t-fast: .15s cubic-bezier(.4,0,.2,1);
  --t-base: .3s cubic-bezier(.4,0,.2,1);
  --t-slow: .6s cubic-bezier(.4,0,.2,1);
  --container: 1180px;
  --pad: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent); }
button { font: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
}

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

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.section-head .section-sub {
  color: var(--text-2);
  font-size: clamp(15px, 1.4vw, 17px);
  margin: 0;
}

/* ======= NAV ======= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(6,6,10,.72);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(6,6,10,.85); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark { width: 30px; height: 30px; }
.brand-word { font-size: 18px; letter-spacing: .04em; }
.nav-links { display: flex; gap: 28px; margin-left: 24px; }
.nav-links a { color: var(--text-2); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; padding: 0; position: relative; }
.nav-burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), top var(--t-base);
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-base), border-color var(--t-base), color var(--t-fast), box-shadow var(--t-base);
  white-space: nowrap;
  user-select: none;
}
.btn-primary {
  background: var(--grad);
  color: #08080d;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(124,92,255,.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 38px rgba(124,92,255,.5); color: #08080d; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--text); background: rgba(181,164,255,.06); }
.btn-lg { padding: 14px 26px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* ======= HERO ======= */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 130px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: float 16s ease-in-out infinite;
}
.orb-1 { width: 480px; height: 480px; left: -180px; top: -120px; background: radial-gradient(circle, var(--brand-1), transparent 70%); }
.orb-2 { width: 520px; height: 520px; right: -160px; top: 40px; background: radial-gradient(circle, var(--brand-2), transparent 70%); animation-delay: -5s; }
.orb-3 { width: 380px; height: 380px; left: 30%; bottom: -180px; background: radial-gradient(circle, var(--brand-3), transparent 70%); animation-delay: -10s; opacity: .35; }
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0) scale(1); }
  33% { transform: translateY(-30px) translateX(40px) scale(1.05); }
  66% { transform: translateY(20px) translateX(-30px) scale(.95); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}

.hero-content { text-align: center; max-width: 880px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 28px;
}
.badge .dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(52,211,153,.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .55 } }

.hero-title {
  font-size: clamp(38px, 7vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0 0 22px;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-3);
}
.hero-meta span { font-weight: 500; }

/* ticker */
.ticker {
  margin-top: clamp(40px, 6vw, 80px);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 70s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-3);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======= STATS ======= */
.stats {
  padding: clamp(40px, 6vw, 70px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.012));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  letter-spacing: -.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--text-3); font-size: 13.5px; margin-top: 6px; }

/* ======= FEATURES ======= */
.features { padding: clamp(70px, 10vw, 120px) 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.feature {
  position: relative;
  padding: 26px 24px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(124,92,255,.12), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.feature:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.feature:hover::before { opacity: 1; }
.feature h3 { font-size: 18px; margin: 18px 0 8px; letter-spacing: -.01em; }
.feature p { color: var(--text-2); font-size: 14.5px; margin: 0; }

.feature-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  position: relative;
}
.feature-ico::after {
  font-size: 22px;
  filter: grayscale(0);
}
[data-ico="chat"]::after  { content: "💬"; }
[data-ico="file"]::after  { content: "📄"; }
[data-ico="search"]::after{ content: "🔍"; }
[data-ico="calc"]::after  { content: "🧮"; }
[data-ico="brain"]::after { content: "🧠"; }
[data-ico="device"]::after{ content: "📱"; }

/* ======= DEMO ======= */
.demo {
  padding: clamp(70px, 10vw, 110px) 0;
  background: linear-gradient(180deg, transparent, rgba(124,92,255,.04));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.demo-text h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 16px; line-height: 1.15; letter-spacing: -.02em; }
.demo-text p  { color: var(--text-2); font-size: 16px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text);
  font-size: 15px;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 13px;
  width: 16px; height: 16px;
  background: var(--grad);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}

.demo-window {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.02);
}
.demo-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.demo-bar > span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--line-2);
}
.demo-bar > span:nth-child(1) { background: #ff5f56; }
.demo-bar > span:nth-child(2) { background: #ffbd2e; }
.demo-bar > span:nth-child(3) { background: #27c93f; }
.demo-url {
  margin-left: 12px;
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-3);
  font-family: ui-monospace, monospace;
}

.demo-body { padding: 22px 20px; min-height: 260px; }
.msg { margin-bottom: 14px; display: flex; }
.msg-user { justify-content: flex-end; }
.msg-bubble {
  max-width: 86%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14.5px;
  line-height: 1.5;
}
.msg-user .msg-bubble {
  background: var(--grad);
  color: #08080d;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}
.msg-bot .msg-bubble {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-2);
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px);
  animation: step-in .5s cubic-bezier(.4,0,.2,1) forwards;
}
.step:nth-child(1) { animation-delay: .2s; }
.step:nth-child(2) { animation-delay: 1.0s; }
.step:nth-child(3) { animation-delay: 1.8s; }
.step:nth-child(4) { animation-delay: 2.6s; color: var(--text); font-size: 15px; }
.step.done { color: var(--green); }
.step code {
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
  border: 1px solid var(--line);
}
.step-ico { font-size: 16px; }
@keyframes step-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ======= PRICING ======= */
.pricing { padding: clamp(70px, 10vw, 120px) 0; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.price-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.price-card-featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 18px 60px rgba(124,92,255,.18);
}
.price-card-featured:hover { box-shadow: 0 24px 70px rgba(124,92,255,.3); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #08080d;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.price-head h3 { font-size: 22px; margin: 0 0 4px; letter-spacing: -.01em; }
.price-tagline { color: var(--text-3); font-size: 13.5px; margin: 0 0 24px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.price-currency { color: var(--text-2); font-size: 18px; font-weight: 600; }
.price-num { font-size: 48px; font-weight: 800; letter-spacing: -.03em; }
.price-period { color: var(--text-3); font-size: 14px; margin-left: 4px; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.price-features li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 14.5px;
  color: var(--text-2);
  border-bottom: 1px solid var(--line);
}
.price-features li:last-child { border: 0; }
.price-features li strong { color: var(--text); font-weight: 700; }
.price-features li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 14px; height: 14px;
  background: var(--brand-2);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.price-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text-3);
  font-size: 13.5px;
}

/* ======= HOW ======= */
.how { padding: clamp(70px, 10vw, 110px) 0; border-top: 1px solid var(--line); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: how;
}
.how-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.how-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad);
  color: #08080d;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(124,92,255,.3);
}
.how-step h3 { font-size: 18px; margin: 0 0 8px; }
.how-step p { color: var(--text-2); font-size: 14.5px; margin: 0; }

/* ======= TRUST ======= */
.trust { padding: clamp(50px, 8vw, 90px) 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  text-align: center;
  padding: 24px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.trust-ico { font-size: 32px; margin-bottom: 10px; }
.trust-item h4 { font-size: 15px; margin: 0 0 6px; }
.trust-item p { color: var(--text-3); font-size: 13px; margin: 0; }

/* ======= FAQ ======= */
.faq { padding: clamp(70px, 10vw, 120px) 0; border-top: 1px solid var(--line); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--text-3);
  font-weight: 400;
  width: 24px; text-align: center;
  transition: transform var(--t-base), color var(--t-base);
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item p {
  color: var(--text-2);
  font-size: 15px;
  margin: 12px 0 0;
  padding-right: 36px;
  line-height: 1.65;
}

/* ======= CTA ======= */
.cta {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% 50%, rgba(124,92,255,.18), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 720px;
  position: relative;
}
.cta-inner h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 750;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  line-height: 1.1;
}
.cta-inner p {
  color: var(--text-2);
  font-size: 17px;
  margin: 0 0 32px;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cta-form input {
  flex: 1 1 240px;
  padding: 14px 18px;
  font-size: 15px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  border-radius: 999px;
  outline: none;
  transition: border-color var(--t-fast);
}
.cta-form input:focus { border-color: var(--accent); }
.cta-form input::placeholder { color: var(--text-3); }

/* ======= FOOTER ======= */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-tag { color: var(--text-3); font-size: 14px; max-width: 280px; margin: 0; }
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--text-2);
  font-size: 14px;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-3);
  font-size: 12.5px;
}
.footer-bottom p { margin: 0; }

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .demo-inner { grid-template-columns: 1fr; gap: 40px; }
  .price-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: block; }
  .nav-mobile-open .nav-links {
    display: flex;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 30px 24px;
    gap: 6px;
    border-top: 1px solid var(--line);
    z-index: 49;
  }
  .nav-mobile-open .nav-links a {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01s !important; transition-duration: .01s !important; }
}
