/* =========================================================
   ClickVision — Performance Marketing Agency
   Dark, premium, purple-accent
   ========================================================= */

:root {
  --bg: #0A0A0A;
  --bg-soft: #0E0E13;
  --bg-1: #0E0E11;
  --bg-2: #121216;
  --surface: #131318;
  --surface-2: #17171D;
  --text: #FFFFFF;
  --muted: #A1A1AA;
  --muted-2: #71717A;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --primary: #7C3AED;
  --primary-2: #5B21B6;
  --primary-soft: #A78BFA;
  --primary-glow: rgba(124, 58, 237, 0.45);
  --whatsapp: #22c55e;

  --radius: 16px;
  --radius-lg: 22px;
  --container: 1240px;

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --font-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ============== TYPE ============== */
.display {
  font-family: var(--font-sans);
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 22px 0 24px;
  color: #fff;
  text-wrap: balance;
}
.display em.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: #d6ccff; }
.display--cta { font-size: clamp(36px, 5vw, 64px); margin: 18px 0 18px; }

.h-section {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 14px 0 0;
  text-wrap: balance;
}
.h-section .muted, .muted { color: var(--muted); font-weight: 500; }
.h-section em.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: #d6ccff; }

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.lede--cta { max-width: 620px; color: #cfcfd6; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-soft);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-soft));
}
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: linear-gradient(90deg, transparent, #fff); }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-sub {
  color: var(--muted);
  margin-top: 14px;
  font-size: 17px;
  max-width: 600px;
}

/* ============== BUTTONS ============== */
.btn {
  --pad-y: 12px;
  --pad-x: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, border-color .25s, box-shadow .25s, color .25s;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn--sm { --pad-y: 9px; --pad-x: 14px; font-size: 13.5px; }
.btn--lg { --pad-y: 16px; --pad-x: 24px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(180deg, #8b46ff, var(--primary) 60%, var(--primary-2));
  color: #fff;
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 10px 30px -10px var(--primary-glow), 0 0 0 1px rgba(124,58,237,0.3);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 18px 40px -10px var(--primary-glow), 0 0 0 1px rgba(167,139,250,0.5); }

.btn--ghost {
  background: rgba(255,255,255,0.03);
  color: #fff;
  border-color: var(--border-2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }

.btn--whatsapp {
  background: rgba(34,197,94,0.12);
  color: #6ee7a7;
  border-color: rgba(34,197,94,0.3);
}
.btn--whatsapp:hover { background: rgba(34,197,94,0.18); }

/* ============== PILLS / CHIPS ============== */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 13px;
  color: #d4d4d8;
  backdrop-filter: blur(8px);
}
.pill--sm { padding: 6px 10px; font-size: 12px; }
.pill--ghost { background: transparent; }
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .55 } }

.chips {
  display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.chips li {
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  color: #d4d4d8;
}

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s, padding .3s;
  padding: 14px 0;
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.78);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.nav__inner {
  display: flex; align-items: center; gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 17px; letter-spacing: -0.015em;
  flex-shrink: 0;
}
.brand__logo {
  height: 64px;
  width: auto;
  display: block;
}
.brand--lg .brand__logo { height: 84px; }
@media (max-width: 920px) { .brand__logo { height: 72px; } }
@media (max-width: 540px) { .brand__logo { height: 68px; } }
/* legacy mark + word styles (kept for fallback) */
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(167,139,250,0.18), rgba(91,33,182,0.12));
  border: 1px solid rgba(167,139,250,0.2);
}
.brand--lg { font-size: 20px; }
.brand--lg .brand__mark { width: 38px; height: 38px; border-radius: 11px; }

.nav__links {
  display: flex; gap: 4px; margin-left: 18px;
  align-items: center;
}
.nav__links > a,
.nav__dd-trigger {
  font-size: 14px;
  font-weight: 500;
  color: #c4c4cc;
  letter-spacing: -0.005em;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.nav__links > a:hover,
.nav__dd-trigger:hover,
.nav__dd[data-open] .nav__dd-trigger {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.nav__cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nav__burger {
  display: none; margin-left: auto;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 0;
  position: relative;
  z-index: 60;
  transition: background .25s, border-color .25s;
}
.nav__burger:hover { background: rgba(255,255,255,0.08); }
.nav__burger span {
  width: 18px; height: 1.7px; background: #fff; display: block;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s;
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(5.7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5.7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============== MOBILE MENU OVERLAY ============== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(124,58,237,0.16), transparent 60%),
    radial-gradient(600px 400px at 20% 100%, rgba(91,33,182,0.14), transparent 60%),
    rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 90;
  padding: 88px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .35s, transform .45s cubic-bezier(.2,.7,.2,1), visibility .35s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* sticky logo at top-left of the menu */
.mobile-menu__brand {
  position: absolute;
  top: 20px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  z-index: 2;
}
.mobile-menu__brand img {
  height: 44px;
  width: auto;
  display: block;
}

/* explicit close button — top-right, clearly visible */
.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: background .2s, border-color .2s, transform .15s;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
.mobile-menu__close:active { transform: scale(0.92); }
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu__links {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.mobile-menu__links > a {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s, padding-left .25s;
  color: #fff;
}
.mobile-menu__links > a::after {
  content: "→";
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted-2);
  transition: transform .25s, color .25s;
}
.mobile-menu__links > a:active { color: var(--primary-soft); padding-left: 6px; }
.mobile-menu__links > a:active::after { color: var(--primary-soft); transform: translateX(4px); }

.mobile-menu__cta {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(124,58,237,0.10), rgba(91,33,182,0.05));
  border: 1px solid rgba(167,139,250,0.22);
  border-radius: 16px;
}
.mobile-menu__contact {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.mobile-menu__contact a { color: #fff; transition: color .2s; }
.mobile-menu__contact a:active { color: var(--primary-soft); }
body.menu-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  opacity: .55;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: drift 18s ease-in-out infinite;
}
.hero__glow--a { width: 520px; height: 520px; background: radial-gradient(circle, #7C3AED 0%, transparent 60%); top: -120px; left: -120px; }
.hero__glow--b { width: 640px; height: 640px; background: radial-gradient(circle, #5B21B6 0%, transparent 60%); top: 60px; right: -200px; animation-delay: -6s; opacity: .5; }
.hero__glow--c { width: 420px; height: 420px; background: radial-gradient(circle, #A78BFA 0%, transparent 60%); bottom: -160px; left: 28%; animation-delay: -12s; opacity: .35; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-20px) scale(1.08); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  min-height: 600px;
}
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 80px; }
  .hero { padding-top: 130px; }
}

.hero__copy { max-width: 640px; }
.hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__trust { display: flex; flex-direction: column; gap: 14px; }
.hero__trust-label {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: 0.18em;
}

/* hero floating analytics cluster */
.hero__viz {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) { .hero__viz { height: 540px; max-width: 560px; margin: 0 auto; } }
@media (max-width: 560px) { .hero__viz { height: auto; padding: 32px 0; } }

/* main live dashboard card */
.hero__dash {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(23,23,29,0.92), rgba(13,13,18,0.94));
  border: 1px solid var(--border-2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 60px 120px -40px rgba(124,58,237,0.35),
    0 30px 80px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
  animation: heroFloat 9s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero__dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.hero__dash-title { display: flex; align-items: center; gap: 10px; }
.hero__dash-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px;
  padding: 3px 8px; border-radius: 6px;
  background: rgba(34,197,94,0.12);
  color: #6ee7a7;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.hero__dash-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 2s ease-in-out infinite;
}
.hero__dash-label {
  font-size: 13px;
  color: #d4d4d8;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero__dash-menu { color: var(--muted-2); font-size: 18px; line-height: 1; }

.hero__dash-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.hero__kpi {
  background: rgba(255,255,255,0.01);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero__kpi-lbl {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--muted-2);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.hero__kpi-val {
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.03em; line-height: 1;
  margin-top: 4px;
}
.hero__kpi-delta {
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 4px;
}
.hero__kpi-delta.up, .hero__kpi-delta.down { color: #6ee7a7; }

.hero__dash-chart {
  position: relative;
  height: 180px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero__dash-chart-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 36px;
}
.hero__dash-chart svg { position: relative; width: 100%; height: 100%; display: block; }
.hero__dash-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2.4s cubic-bezier(.2,.7,.2,1) .3s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.hero__dash-marker {
  position: absolute;
  top: 14px; left: 16px;
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 12px;
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--border);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}
.hero__dash-marker-lbl {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  color: var(--muted-2); text-transform: uppercase;
}
.hero__dash-marker-val {
  font-size: 13px; font-weight: 500; color: #fff;
  letter-spacing: -0.005em;
}

.hero__dash-feed {
  display: flex; flex-direction: column;
}
.hero__dash-feed li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  font-size: 13px;
  color: #d4d4d8;
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.hero__dash-feed li:last-child { border-bottom: 0; }
.hero__dash-feed li:hover { background: rgba(255,255,255,0.02); }
.hero__feed-tag {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em;
  padding: 3px 7px; border-radius: 5px; text-transform: uppercase;
  font-weight: 500;
}
.hero__feed-tag.meta { background: rgba(59,130,246,0.14); color: #93c5fd; border: 1px solid rgba(59,130,246,0.3); }
.hero__feed-tag.google { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.28); }
.hero__feed-name { color: #d4d4d8; letter-spacing: -0.005em; }
.hero__feed-num { font-family: var(--font-mono); color: #fff; font-size: 12.5px; }

/* floating accent cards around dashboard */
.hero__float {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px;
  background: linear-gradient(180deg, rgba(28,20,46,0.95), rgba(15,11,26,0.97));
  border: 1px solid rgba(167,139,250,0.28);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,0.6), 0 0 30px -10px var(--primary-glow);
  z-index: 2;
}
.hero__float--lead {
  top: -10px; left: -28px;
  animation: floatA 6.5s ease-in-out infinite;
}
.hero__float--cpl {
  bottom: -8px; right: -34px;
  animation: floatB 7.2s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50%      { transform: translate(-3px, -10px) rotate(-2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  50%      { transform: translate(3px, 8px) rotate(2deg); }
}

.hero__float-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg, var(--primary-2));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: #fff;
  flex-shrink: 0;
}
.hero__float-icn {
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(34,197,94,0.16);
  border: 1px solid rgba(34,197,94,0.3);
  color: #6ee7a7;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__float-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero__float-title { font-size: 13px; font-weight: 600; color: #fff; letter-spacing: -0.01em; white-space: nowrap; }
.hero__float-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); letter-spacing: 0.04em; }
.hero__float-pulse {
  position: absolute;
  top: 10px; right: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.22);
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 560px) {
  .hero__dash { max-width: 100%; }
  .hero__kpi-val { font-size: 22px; }
  .hero__kpi { padding: 14px 14px; }
  .hero__dash-chart { height: 150px; }
  .hero__float--lead { left: -8px; top: -6px; }
  .hero__float--cpl { right: -8px; bottom: -6px; padding: 10px 14px 10px 10px; }
  .hero__float-title { font-size: 12px; }
}

/* ============== PROOF / STATS ============== */
.proof { padding: 100px 0 80px; }
.proof__head { margin-bottom: 48px; max-width: 600px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats__item {
  padding: 36px 28px;
  background: var(--bg);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.stats__num {
  font-family: var(--font-sans);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #b9aeff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.stats__suffix {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--primary-soft);
  letter-spacing: -0.02em;
  margin-left: 2px;
}
.stats__label { font-size: 14px; color: var(--muted); }
@media (max-width: 920px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

.logos {
  margin-top: 56px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logos__track {
  display: flex; gap: 64px; align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.logos__track span {
  font-family: var(--font-serif); font-style: italic;
  font-size: 28px; color: rgba(255,255,255,0.42);
  letter-spacing: -0.01em; white-space: nowrap;
}
.logos__track span:nth-child(odd) { font-family: var(--font-sans); font-style: normal; font-weight: 600; letter-spacing: 0.2em; font-size: 18px; text-transform: uppercase; color: rgba(255,255,255,0.38); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============== SERVICES ============== */
.services { padding: 100px 0 100px; position: relative; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, background .35s;
  overflow: hidden;
}
.svc::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(400px 200px at 50% -10%, rgba(124,58,237,0.18), transparent 60%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.svc:hover { transform: translateY(-4px); border-color: rgba(167,139,250,0.28); }
.svc:hover::after { opacity: 1; }
.svc__icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(167,139,250,0.16), rgba(91,33,182,0.08));
  border: 1px solid rgba(167,139,250,0.22);
  color: #C4B5FD;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.svc p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.svc__out {
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: #d4d4d8;
  font-family: var(--font-mono);
}

/* ============== RESULTS ============== */
.results { padding: 100px 0; position: relative; }
.cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
/* 3-up grid for service pages and the dedicated /results page */
.cases.cases--three {
  grid-template-columns: repeat(3, 1fr);
}
.cases__more {
  margin-top: 28px;
  display: flex; justify-content: center;
}
.case--wide { grid-column: 1 / -1; }
@media (max-width: 1024px) { .cases.cases--three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .cases.cases--three { grid-template-columns: 1fr; } }
@media (max-width: 900px)  { .cases { grid-template-columns: 1fr; } }

.case {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  transition: transform .35s, border-color .35s;
  display: flex; flex-direction: column;
}
.case:hover { transform: translateY(-3px); border-color: rgba(167,139,250,0.22); }
.case__body {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.case__industry {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-soft);
}
.case__head h3 {
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
  line-height: 1.2;
  text-wrap: balance;
}
.cases--three .case__head h3 { font-size: clamp(18px, 1.4vw, 22px); margin: 10px 0 20px; }
.case__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.cases--three .case__num { font-size: clamp(22px, 2.2vw, 28px); }
.case__num {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1;
}
.case__lbl { display: block; font-size: 12.5px; color: var(--muted); margin-top: 8px; }

.case__chart {
  position: relative;
  height: 160px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  padding: 12px;
}
.case__chart-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 28px;
}
.case__chart svg { width: 100%; height: 100%; }
.case__chart-legend {
  position: absolute; top: 12px; right: 14px;
  display: flex; gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.case__chart-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.dot--dim { background: rgba(255,255,255,0.35); }
.dot--purple { background: var(--primary-soft); box-shadow: 0 0 8px var(--primary-glow); }

.case__bars {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  height: 160px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  align-items: end;
}
.bar { display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; }
.bar__fill {
  width: 100%;
  border-radius: 6px;
  height: var(--h);
  background: linear-gradient(180deg, var(--primary-soft), var(--primary) 60%, var(--primary-2));
  box-shadow: 0 0 24px -4px var(--primary-glow);
  transform-origin: bottom;
  animation: barIn 1s cubic-bezier(.2,.7,.2,1) both;
}
.bar:nth-child(1) .bar__fill { animation-delay: .05s; }
.bar:nth-child(2) .bar__fill { animation-delay: .12s; }
.bar:nth-child(3) .bar__fill { animation-delay: .19s; }
.bar:nth-child(4) .bar__fill { animation-delay: .26s; }
.bar:nth-child(5) .bar__fill { animation-delay: .33s; }
.bar:nth-child(6) .bar__fill { animation-delay: .40s; }
@keyframes barIn { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
.bar__lbl { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-2); order: 2; }

.case__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  padding: 24px;
}
.case__split-col { display: flex; flex-direction: column; gap: 12px; }
.case__split-col--after { padding-left: 8px; }
.case__split-arrow { display: flex; align-items: center; justify-content: center; color: var(--primary-soft); font-size: 22px; font-family: var(--font-mono); }
.case__row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--border); font-size: 14px; color: #d4d4d8; }
.case__row:first-of-type { border-top: 0; }
.case__row .num { font-family: var(--font-mono); color: #fff; }
.case__row .num.accent { color: #C4B5FD; }
@media (max-width: 720px) {
  .case__split { grid-template-columns: 1fr; }
  .case__split-arrow { transform: rotate(90deg); }
}

/* ============== WHY ============== */
.why { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why__item {
  padding: 36px 30px 32px;
  background: var(--bg);
  transition: background .35s;
  position: relative;
}
.why__item:hover { background: var(--bg-1); }
.why__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--primary-soft);
  text-transform: uppercase;
}
.why__item h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 14px 0 10px;
  line-height: 1.2;
}
.why__item p { color: var(--muted); font-size: 14.5px; margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============== PROCESS ============== */
.process { padding: 100px 0; }
.timeline {
  position: relative;
  display: flex; flex-direction: column;
}
.step { display: grid; grid-template-columns: 84px 1fr; gap: 24px; align-items: flex-start; padding: 24px 0; }
.step__rail {
  position: relative;
  display: flex; justify-content: center;
  align-self: stretch;
}
.step__rail::before {
  content: "";
  position: absolute;
  top: 0; bottom: -48px; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(167,139,250,0.4), rgba(167,139,250,0.05));
  transform: translateX(-50%);
}
.step:last-child .step__rail::before { display: none; }
.step__node {
  position: relative;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  border: 1px solid var(--border-2);
  font-family: var(--font-mono);
  font-size: 13px; color: var(--primary-soft);
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 6px rgba(10,10,10,0.9), 0 0 30px -10px var(--primary-glow);
}
.step__body {
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  position: relative;
}
.step__body::before {
  content: "";
  position: absolute;
  left: -10px; top: 22px;
  width: 18px; height: 18px;
  transform: rotate(45deg);
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step__body h3 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.step__body p { margin: 0; color: var(--muted); font-size: 15px; }
.step__time {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--primary-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .step { grid-template-columns: 60px 1fr; gap: 14px; }
  .step__node { width: 44px; height: 44px; font-size: 12px; }
  .step__body { padding: 18px 18px; }
  .step__body::before { display: none; }
}

/* ============== DASHBOARD ============== */
.dash { padding: 60px 0 100px; }
.dashboard {
  border: 1px solid var(--border-2);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #131318, #0d0d10);
  box-shadow: 0 60px 120px -40px rgba(124,58,237,0.25), 0 0 0 1px rgba(255,255,255,0.02) inset;
  margin-top: 56px;
}
.dashboard__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.dashboard__chrome > span:nth-child(1),
.dashboard__chrome > span:nth-child(2),
.dashboard__chrome > span:nth-child(3) {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12);
}
.dashboard__url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
}
.dashboard__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}
.dashboard__side {
  border-right: 1px solid var(--border);
  padding: 20px 12px;
  background: rgba(255,255,255,0.015);
}
.dashboard__brand {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(180deg, var(--primary-soft), var(--primary-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; margin-bottom: 22px; margin-left: 6px;
}
.dashboard__side ul { display: flex; flex-direction: column; gap: 2px; font-size: 13.5px; color: var(--muted); }
.dashboard__side li { padding: 9px 12px; border-radius: 8px; cursor: default; }
.dashboard__side li.active { background: rgba(124,58,237,0.18); color: #fff; border: 1px solid rgba(167,139,250,0.25); }
.dashboard__main { padding: 22px 26px 26px; }
.dashboard__topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dashboard__topbar h4 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.dashboard__pills { display: flex; gap: 8px; }

.dashboard__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 22px; }
.kpi {
  padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,0.015);
  display: flex; flex-direction: column; gap: 6px;
}
.kpi__lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.kpi__val { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.kpi__delta { font-family: var(--font-mono); font-size: 11.5px; }
.kpi__delta.up { color: #6ee7a7; }
.kpi__delta.down { color: #6ee7a7; }

.dashboard__chart {
  height: 180px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  margin-bottom: 22px;
}
.dashboard__chart svg { width: 100%; height: 100%; display: block; }

.dashboard__rows { display: flex; flex-direction: column; gap: 8px; }
.dashboard__row {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.015);
  font-size: 13.5px;
  color: #d4d4d8;
}
.dashboard__row .num { font-family: var(--font-mono); color: #fff; }
.dashboard__row .num.accent { color: #C4B5FD; }
.tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em;
  padding: 3px 8px; border-radius: 6px; text-transform: uppercase;
  text-align: center;
}
.tag--meta { background: rgba(59,130,246,0.14); color: #93c5fd; border: 1px solid rgba(59,130,246,0.3); }
.tag--google { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.28); }

@media (max-width: 820px) {
  .dashboard__body { grid-template-columns: 1fr; }
  .dashboard__side { display: none; }
  .dashboard__kpis { grid-template-columns: repeat(2, 1fr); }
  .dashboard__row { grid-template-columns: 64px 1fr; gap: 8px; }
  .dashboard__row > :nth-child(3), .dashboard__row > :nth-child(4) { grid-column: 2; text-align: right; font-size: 12.5px; }
}

/* ============== QUOTES ============== */
.quotes { padding: 100px 0; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .quote-grid { grid-template-columns: 1fr; } }
.quote {
  padding: 28px 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  margin: 0;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .35s, border-color .35s;
}
.quote:hover { transform: translateY(-3px); border-color: rgba(167,139,250,0.22); }
.quote blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #e4e4e7;
  letter-spacing: -0.005em;
  font-weight: 400;
  text-wrap: pretty;
}
.quote blockquote::before { content: "“"; font-family: var(--font-serif); font-size: 56px; line-height: 0; color: var(--primary-soft); margin-right: 4px; vertical-align: -22px; }
.quote figcaption { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(180deg, var(--primary-soft), var(--primary-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
}
.quote figcaption strong { display: block; font-size: 14.5px; font-weight: 600; }
.quote figcaption span { display: block; font-size: 12.5px; color: var(--muted); }

/* ============== FAQ ============== */
.faq { padding: 100px 0; }
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 900px) { .faq__layout { grid-template-columns: 1fr; gap: 32px; } }
.faq__intro { position: sticky; top: 100px; }
@media (max-width: 900px) { .faq__intro { position: static; top: auto; } }
.faq__intro .btn { margin-top: 28px; }

.faq__list {
  border-top: 1px solid var(--border);
}
.qa { border-bottom: 1px solid var(--border); }
.qa summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color .2s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--primary-soft); }
.qa__icn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--muted);
  transition: transform .3s, background .3s, color .3s;
  flex-shrink: 0;
}
.qa[open] .qa__icn { transform: rotate(45deg); background: rgba(124,58,237,0.2); color: #fff; border-color: rgba(167,139,250,0.4); }
.qa__body {
  padding: 0 4px 22px;
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
}

/* ============== FINAL CTA ============== */
.cta { padding: 60px 0 120px; }
.cta__card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(167,139,250,0.25);
  padding: 64px 56px;
  background: linear-gradient(180deg, #1a0f33 0%, #0e0a1e 100%);
}
.cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(124,58,237,0.45), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(91,33,182,0.5), transparent 60%);
  pointer-events: none;
}
.cta__card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta__body { max-width: 560px; }
.cta__bullets {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 10px;
  color: #d4d4d8;
  font-size: 14.5px;
}
.cta__bullets li { display: flex; align-items: center; gap: 10px; }
.cta__trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cta__trust-avatars { display: flex; }
.cta__trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg, #5b21b6);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  border: 2px solid #14091f;
  margin-left: -10px;
}
.cta__trust-avatars span:first-child { margin-left: 0; }
.cta__trust-copy { font-size: 13.5px; color: #cfcfd6; line-height: 1.5; }
.cta__trust-copy strong { color: #fff; font-weight: 600; }
.cta__trust-copy span { color: var(--muted); }
@media (max-width: 960px) {
  .cta__card { padding: 48px 32px; }
  .cta__grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 520px) {
  .cta__card { padding: 36px 22px; }
}

/* ============== LEAD FORM ============== */
.leadform {
  position: relative;
  background: linear-gradient(180deg, rgba(20,12,36,0.85), rgba(13,9,24,0.92));
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: 20px;
  padding: 28px 28px 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02) inset;
  display: flex; flex-direction: column; gap: 14px;
}
.leadform.is-success { pointer-events: none; }
.leadform__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.leadform__error {
  margin: 4px 0 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(244,63,94,0.08);
  border: 1px solid rgba(244,63,94,0.3);
  color: #fca5a5;
  font-size: 13px;
  text-align: center;
}
.leadform__error[hidden] { display: none; }
.leadform__head { margin-bottom: 4px; }
.leadform__head h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.leadform__head p { margin: 0; color: var(--muted); font-size: 14px; }

.leadform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) { .leadform__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field__opt { text-transform: none; letter-spacing: 0.04em; color: var(--muted-2); }

.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  color: #fff;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 12px 14px;
  font-size: 14.5px;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.28); }
.field textarea { resize: vertical; min-height: 90px; line-height: 1.5; font-family: inherit; }
.field input:hover,
.field textarea:hover,
.field select:hover { border-color: rgba(255,255,255,0.16); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(167,139,250,0.55);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.18);
}
.field--error input,
.field--error textarea,
.field--error select,
.field--error .field__select {
  border-color: rgba(244,63,94,0.55) !important;
  box-shadow: 0 0 0 4px rgba(244,63,94,0.12);
}

.field__select { position: relative; }
.field__select select { padding-right: 36px; cursor: pointer; }
.field__select select option { background: #14091f; color: #fff; }
.field__caret {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  font-size: 12px;
}

.consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding: 4px 2px 2px;
  user-select: none;
  cursor: pointer;
}
.consent input { appearance: none; -webkit-appearance: none; width: 16px; height: 16px; border: 1px solid var(--border-2); background: rgba(255,255,255,0.03); border-radius: 4px; margin-top: 2px; flex-shrink: 0; position: relative; cursor: pointer; transition: background .2s, border-color .2s; }
.consent input:checked { background: var(--primary); border-color: var(--primary); }
.consent input:checked::after { content: ""; position: absolute; left: 4px; top: 1px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.leadform__submit { margin-top: 4px; }
.leadform__submit.is-loading .leadform__submit-label::after {
  content: ""; display: inline-block; margin-left: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff;
  animation: spin .8s linear infinite;
  vertical-align: -2px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.leadform__foot {
  margin: 6px 0 0;
  font-size: 11.5px;
  color: var(--muted-2);
  text-align: center;
  line-height: 1.5;
}
.leadform__foot a { color: var(--muted); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.18); }
.leadform__foot a:hover { color: #fff; }

.leadform__success {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 10px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(20,12,36,0.96), rgba(13,9,24,0.99));
  border-radius: 20px;
  animation: fadeUp .5s cubic-bezier(.2,.7,.2,1) both;
}
.leadform__success[hidden] { display: none; }
.leadform__success h4 { margin: 6px 0 0; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.leadform__success p { margin: 0; color: var(--muted); font-size: 14.5px; max-width: 340px; line-height: 1.55; }
.leadform__success a { color: #C4B5FD; }
.leadform__success .btn--whatsapp { margin-top: 6px; }
.leadform__check {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(180deg, var(--primary-soft), var(--primary-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(124,58,237,0.16), 0 12px 30px -8px var(--primary-glow);
  animation: pop .5s cubic-bezier(.4,1.6,.4,1) both;
}
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============== FOOTER ============== */
.footer { padding: 80px 0 28px; border-top: 1px solid var(--border); background: #08080a; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer__tag { color: var(--muted); margin: 16px 0 22px; max-width: 320px; font-size: 14.5px; }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer__cols h5 { font-size: 13px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-2); margin: 0 0 16px; font-weight: 500; }
.footer__cols ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: #c4c4cc; }
.footer__cols a:hover { color: #fff; }
.footer__social { display: flex; gap: 8px; margin-top: 18px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .2s, background .2s, border-color .2s;
}
.footer__social a:hover { color: #fff; background: rgba(255,255,255,0.04); border-color: var(--border-2); }
.footer__base {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--muted-2);
}
.footer__legal a:hover { color: #fff; }
@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}


.btn,
.btn--primary,
.btn--secondary,
.hero__ctas .btn,
.mobile-cta .btn,
.mobile-menu__cta .btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__cta .btn {
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
}

.mobile-menu__brand img {
  height: 58px;
}


/* ============== FLOATING WHATSAPP ============== */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #22c55e;
  color: #08130a;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(34,197,94,0.5), 0 0 0 6px rgba(34,197,94,0.12);
  z-index: 40;
  transition: transform .25s, box-shadow .25s;
}
.float-wa:hover { transform: translateY(-3px) scale(1.05); }
@media (max-width: 640px) { .float-wa { bottom: 86px; width: 48px; height: 48px; } }

/* ============== STICKY MOBILE CTA ============== */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -120px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,0.86);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: all .35s ease;
}

.mobile-cta.is-visible {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 641px) {
  .mobile-cta {
    display: none !important;
  }
}

/* ============== SECTION RHYTHM (alternate dark values) ============== */
/* Proof = A (#0A0A0A), Services = B, Results = A, Why = B,
   Process = purple-wash A, Dash = elevated A, Quotes = B, FAQ = A.
   CTA + Footer keep their own treatments. */
.services,
.why,
.quotes { background: var(--bg-soft); }

/* Subtle vertical fade at the boundary between A and B sections so the seam never feels like a hard line */
.services::before,
.why::before,
.quotes::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 60px;
  background: linear-gradient(180deg, var(--bg), transparent);
  pointer-events: none;
  z-index: 0;
}
.services, .why, .quotes { position: relative; }
.services > .container,
.why > .container,
.quotes > .container { position: relative; z-index: 1; }

/* PROCESS — purple wash rest section */
.process {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(124,58,237,0.16), transparent 65%),
    radial-gradient(720px 460px at 18% 90%, rgba(91,33,182,0.14), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
/* faint grid in the process section to give the purple some texture */
.process::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 75%);
  opacity: .35;
  pointer-events: none;
  z-index: -1;
}

/* DASH — elevated "platform" feel so the dashboard card sits on its own surface */
.dash {
  position: relative;
  background: linear-gradient(180deg, #0A0A0A 0%, #0C0C12 50%, #0A0A0A 100%);
  overflow: hidden;
}
.dash::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: radial-gradient(800px 380px at 50% 100%, rgba(124,58,237,0.12), transparent 65%);
  pointer-events: none;
}

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__glow, .floatcard, .pill__dot, .logos__track { animation: none !important; }
}

/* ============== NAV — SERVICES DROPDOWN ============== */
.nav__dd { position: relative; }
.nav__dd-trigger {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.nav__dd[data-open] .nav__dd-trigger svg { transform: rotate(180deg); }
.nav__dd-trigger svg { transition: transform .25s; }

.nav__dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 540px;
  background: rgba(14, 14, 19, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s, transform .3s cubic-bezier(.2,.7,.2,1), visibility .25s;
}
.nav__dd[data-open] .nav__dd-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dd-menu::before {
  content: "";
  position: absolute;
  inset: -14px 0 100% 0;
  /* bridges the gap so hover doesn't drop the menu */
}
.nav__dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.nav__dd-grid a {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background .2s, transform .2s;
}
.nav__dd-grid a:hover { background: rgba(124,58,237,0.12); }
.nav__dd-grid a strong { font-size: 14px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.nav__dd-grid a span { font-size: 12.5px; color: var(--muted); }
.nav__dd-foot {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding: 12px 14px 6px;
}
.nav__dd-foot-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__dd-foot-link:hover { color: #fff; }

/* ============== MOBILE MENU — COLLAPSIBLE SUBLIST ============== */
.mobile-menu__sub { border-bottom: 1px solid var(--border); }
.mobile-menu__sub summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px;
  font-size: 19px; font-weight: 600; letter-spacing: -0.02em;
  cursor: pointer;
  color: #fff;
}
.mobile-menu__sub summary::-webkit-details-marker { display: none; }
.mobile-menu__sub summary svg { transition: transform .3s; color: var(--muted-2); }
.mobile-menu__sub[open] summary svg { transform: rotate(180deg); color: var(--primary-soft); }
.mobile-menu__sub[open] summary { color: var(--primary-soft); }
.mobile-menu__sub-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px 0 18px;
}
.mobile-menu__sub-list a {
  font-size: 13.5px;
  font-weight: 500;
  color: #d4d4d8;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  transition: color .2s, background .2s, border-color .2s;
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mobile-menu__sub-list a:hover {
  color: #fff;
  background: rgba(124,58,237,0.14);
  border-color: rgba(167,139,250,0.32);
}
/* override the parent rule that adds an arrow after all mobile-menu links */
.mobile-menu__sub-list a::after { content: none; }
/* the .mobile-menu__sub summary lives inside .mobile-menu__links — it would inherit the > a arrow, but it's a <summary> not an <a>, so no arrow appears anyway */
.mobile-menu__sub > summary { border-bottom: 0; }

/* ============== SERVICE CARD — "LEARN MORE" LINK ============== */
.svc__more {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-soft);
  transition: color .2s, gap .2s;
  position: relative;
  z-index: 1;
}
.svc__more:hover { color: #fff; gap: 10px; }
.svc__more span { transition: transform .2s; }
.svc__more:hover span { transform: translateX(2px); }
.svc { display: flex; flex-direction: column; }
.svc p { flex: 1 1 auto; }

/* ============== SERVICE PAGE — HERO ============== */
.svc-hero {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.svc-hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.svc-hero__bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.svc-hero__bg .glow--a { width: 560px; height: 560px; background: radial-gradient(circle, #7C3AED, transparent 60%); top: -160px; left: -160px; }
.svc-hero__bg .glow--b { width: 600px; height: 600px; background: radial-gradient(circle, #5B21B6, transparent 60%); top: 80px; right: -220px; opacity: .4; }
.svc-hero__bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  opacity: .5;
}

.svc-hero__inner { max-width: 880px; margin: 0 auto; text-align: center; }

/* unified inline pill: breadcrumb + category tag */
.svc-hero__topline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  margin-bottom: 26px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  backdrop-filter: blur(8px);
}
.svc-hero__topline .svc-hero__crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}
.svc-hero__topline .svc-hero__crumbs a {
  color: var(--muted-2);
  transition: color .2s;
}
.svc-hero__topline .svc-hero__crumbs a:hover { color: #fff; }
.svc-hero__topline .svc-hero__crumbs strong {
  color: #fff;
  font-weight: 500;
}
.svc-hero__topline .sep {
  color: rgba(255,255,255,0.22);
  font-weight: 300;
}
.svc-hero__topline-div {
  width: 1px;
  height: 14px;
  background: var(--border-2);
  flex-shrink: 0;
}
.svc-hero__topline-tag {
  color: var(--primary-soft);
}
@media (max-width: 540px) {
  .svc-hero__topline {
    font-size: 10.5px;
    padding: 8px 14px;
    gap: 10px;
  }
}

/* legacy crumbs (used on about / contact / privacy pages — still a small line above H1) */
.svc-hero__crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.svc-hero__crumbs a { color: var(--muted); transition: color .2s; }
.svc-hero__crumbs a:hover { color: #fff; }
.svc-hero__crumbs span.sep { color: var(--muted-2); }

.svc-hero h1.display {
  font-size: clamp(40px, 6vw, 72px);
  margin: 16px 0 20px;
}
.svc-hero .lede {
  margin-left: auto; margin-right: auto;
  max-width: 640px;
  text-align: center;
}
.svc-hero__ctas {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
  margin-bottom: 36px;
}
.svc-hero__stack {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.svc-hero__stack-divider {
  height: 1px; flex: 1 1 auto; min-width: 40px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
  max-width: 80px;
}

/* ============== SERVICE PAGE — OUTCOMES BAND ============== */
.outcomes { padding: 70px 0 90px; }
.outcomes__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.outcomes__head .eyebrow { justify-content: center; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.outcomes-grid__item {
  padding: 32px 28px;
  background: var(--bg);
  display: flex; flex-direction: column; gap: 8px;
}
.outcomes-grid__num {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #b9aeff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.outcomes-grid__num .arrow { font-size: 0.5em; color: #6ee7a7; -webkit-text-fill-color: #6ee7a7; margin-right: 6px; }
.outcomes-grid__num .suffix {
  font-size: 0.6em;
  color: var(--primary-soft);
  -webkit-text-fill-color: var(--primary-soft);
}
.outcomes-grid__lbl { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .outcomes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .outcomes-grid { grid-template-columns: 1fr; } }

/* ============== SERVICE PAGE — TOOLS WE USE ============== */
.tools { padding: 90px 0; position: relative; }
.tools__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.tools__head .eyebrow { justify-content: center; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tools-grid__item {
  background: var(--bg);
  padding: 28px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  transition: background .25s;
}
.tools-grid__item:hover { background: var(--bg-soft); }
.tools-grid__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(167,139,250,0.16), rgba(91,33,182,0.08));
  border: 1px solid rgba(167,139,250,0.22);
  color: #C4B5FD;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: -0.02em;
}
.tools-grid__name { font-size: 13px; color: #d4d4d8; line-height: 1.3; letter-spacing: -0.005em; font-weight: 500; }
@media (max-width: 900px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============== SERVICE PAGE — CASE STUDY (single, framed) ============== */
.svc-case { padding: 90px 0; }
.svc-case__layout { max-width: 1080px; margin: 0 auto; }

/* ============== PRIVACY / LEGAL PAGE ============== */
.policy { padding: 60px 0 120px; }
.policy__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: flex-start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .policy__inner { grid-template-columns: 1fr; gap: 32px; } }

.policy__toc {
  position: sticky;
  top: 100px;
  padding: 22px 22px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
}
@media (max-width: 900px) { .policy__toc { position: static; } }
.policy__toc-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.policy__toc ol {
  display: flex; flex-direction: column;
  counter-reset: toc;
  font-size: 14px;
  list-style: none;
}
.policy__toc li {
  counter-increment: toc;
  padding: 6px 0;
}
.policy__toc a {
  color: var(--muted);
  transition: color .2s, padding-left .2s;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.policy__toc a::before {
  content: counter(toc, decimal-leading-zero) ".";
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-2);
}
.policy__toc a:hover { color: #fff; padding-left: 2px; }

.policy__body {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: #c4c4cc;
}
.policy__body h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 48px 0 16px;
  scroll-margin-top: 100px;
}
.policy__body h2:first-child { margin-top: 0; }
.policy__body p { margin: 0 0 18px; }
.policy__body ul { margin: 0 0 18px; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; list-style: disc; }
.policy__body ul li { color: #d4d4d8; }
.policy__body a { color: var(--primary-soft); text-decoration: underline; text-decoration-color: rgba(167,139,250,0.4); text-underline-offset: 3px; }
.policy__body a:hover { color: #fff; text-decoration-color: #fff; }
.policy__body strong { color: #fff; font-weight: 600; }
