/* ============================================================
   Compliancly.ai — soft mint + lavender LIGHT UI
   Pure CSS · system fonts
   ============================================================ */

:root {
  /* Light mint+lavender palette */
  --bg-0:      #FAFEFB;
  --bg-1:      #F0FDF4;
  --bg-2:      #EEF2FF;
  --surface:   rgba(255, 255, 255, 0.85);
  --surface2:  rgba(255, 255, 255, 0.95);
  --line:      rgba(15, 23, 42, 0.08);
  --line-2:    rgba(15, 23, 42, 0.14);

  --text:      #0F172A;
  --text-2:    #1F2937;
  --muted:     #6B7280;
  --muted-2:   #9CA3AF;

  /* Brand */
  --indigo:    #6366F1;
  --violet:    #8B5CF6;
  --cyan:      #06B6D4;
  --emerald:   #10B981;
  --rose:      #F472B6;

  --good:      #059669;
  --warn:      #D97706;
  --bad:       #DC2626;

  /* Light gradients */
  --grad-brand:    linear-gradient(135deg, #10B981 0%, #6366F1 55%, #8B5CF6 100%);
  --grad-aurora:   radial-gradient(ellipse 70% 50% at 15% 0%, rgba(16,185,129,.18), transparent 60%),
                   radial-gradient(ellipse 60% 50% at 85% 30%, rgba(139,92,246,.18), transparent 60%),
                   radial-gradient(ellipse 80% 50% at 50% 100%, rgba(99,102,241,.10), transparent 70%);
  --grad-glow:     radial-gradient(circle at center, rgba(139,92,246,.18) 0%, transparent 70%);
  --grad-sheen:    linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 60%);
  --grad-card:     linear-gradient(160deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.6) 100%);

  /* Soft shadows for light surface */
  --shadow-sm:  0 1px 2px rgba(15,23,42,.06),
                0 0 0 1px rgba(15,23,42,.04);
  --shadow-md:  0 4px 12px rgba(15,23,42,.08),
                0 0 0 1px rgba(15,23,42,.05);
  --shadow-lg:  0 18px 40px -12px rgba(15,23,42,.15),
                0 0 0 1px rgba(15,23,42,.04);
  --shadow-xl:  0 28px 56px -16px rgba(15,23,42,.18),
                0 8px 24px -8px rgba(139,92,246,.18),
                0 0 0 1px rgba(15,23,42,.04);
  --shadow-glow: 0 0 32px -8px rgba(16,185,129,.25),
                 0 0 60px -16px rgba(139,92,246,.18);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg-0);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", Roboto, sans-serif;
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  /* Aurora bg layer */
  background-image: var(--grad-aurora);
  background-attachment: fixed;
}

/* Subtle grid overlay — dark lines on light bg */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(15,23,42,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
}

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

main, header, section, footer { position: relative; z-index: 1; }

a { color: var(--text); text-decoration: none; transition: color .15s; }
a:hover { color: var(--violet); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==================== NAV ==================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 16px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.65) 100%);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.4), transparent);
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -.02em;
}
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--grad-brand);
  border-radius: 9px;
  font-size: 17px;
  box-shadow: 0 4px 14px -2px rgba(139,92,246,.4),
              inset 0 1px 0 rgba(255,255,255,.4);
  position: relative;
  color: #fff;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 8px;
  background: var(--grad-sheen);
  pointer-events: none;
}
.brand__name { color: var(--text); }
.brand__tld {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 700;
}

.nav__links {
  display: flex; gap: 32px; margin-left: 36px; flex: 1;
}
.nav__links a {
  font-size: 14.5px; color: var(--muted);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: var(--grad-brand);
  transition: width .2s, left .2s;
  border-radius: 1px;
}
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__cta { display: flex; gap: 10px; align-items: center; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-sheen);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.btn:hover::before { opacity: 1; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow:
    0 4px 14px -2px rgba(139,92,246,.35),
    0 0 0 1px rgba(255,255,255,.25),
    inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px -4px rgba(139,92,246,.45),
    0 0 0 1px rgba(255,255,255,.4),
    inset 0 1px 0 rgba(255,255,255,.5);
  color: #fff;
}

.btn--ghost {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-2);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--violet);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(139,92,246,.18);
}

.btn--xl {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}
.btn--sm { padding: 7px 14px; font-size: 13.5px; }

/* ==================== HERO ==================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 100px 36px 100px;
  max-width: 1320px; margin: 0 auto;
  position: relative;
}

/* Aurora glow blob behind hero */
.hero::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 80%; height: 140%;
  background: radial-gradient(ellipse, rgba(16,185,129,.20) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
  animation: floatA 18s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  top: 10%; right: -15%;
  width: 70%; height: 120%;
  background: radial-gradient(ellipse, rgba(139,92,246,.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
  animation: floatB 22s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 40px) scale(1.15); }
}

.hero__copy { max-width: 620px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(139,92,246,.12));
  color: #4338CA;
  border: 1px solid rgba(139,92,246,.30);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 12px -2px rgba(139,92,246,.18),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.badge::before {
  content: ""; width: 6px; height: 6px;
  background: var(--good); border-radius: 50%;
  box-shadow: 0 0 8px var(--good);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
  text-wrap: balance;
}
.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 4px; /* descender clip fix */
}
.hero__sub {
  color: var(--muted);
  font-size: 18px; line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 22px;
  color: var(--muted-2);
  font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__meta::before {
  content: "✓"; color: var(--good); font-weight: 700;
}

/* Hero art panel — tilt + glow */
.hero__art {
  position: relative;
  perspective: 1800px;
}
.art__panel {
  background: var(--grad-card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 0;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(3deg) rotate(-1deg);
  transition: transform .6s cubic-bezier(.2, .9, .3, 1);
  position: relative;
  backdrop-filter: blur(20px);
}
.art__panel:hover {
  transform: rotateY(-3deg) rotateX(1deg) rotate(0);
}
.art__panel::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-sheen);
  pointer-events: none;
}
.art__panel::after {
  content: ""; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(139,92,246,.10), transparent 40%);
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20%, 20%); }
}

.art__topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(15,23,42,.04), transparent);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.dot {
  width: 12px; height: 12px; border-radius: 50%; display: inline-block;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3),
              inset 0 -2px 4px rgba(0,0,0,.3);
}
.dot--r { background: linear-gradient(160deg, #ff6b6b, #c92a2a); }
.dot--y { background: linear-gradient(160deg, #ffd43b, #f08c00); }
.dot--g { background: linear-gradient(160deg, #51cf66, #2b8a3e); }
.art__url {
  margin-left: 14px; padding: 5px 12px;
  background: rgba(15,23,42,.04);
  color: var(--muted);
  font-size: 12px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  border-radius: 6px;
  flex: 1;
  border: 1px solid var(--line);
}

.art__chips {
  display: flex; gap: 8px; flex-wrap: wrap; padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.chip {
  font-size: 12px; padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-weight: 600;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.chip--good { color: #047857; border-color: rgba(16,185,129,.35); background: rgba(16,185,129,.10); }
.chip--ok   { color: #0E7490; border-color: rgba(6,182,212,.35); background: rgba(6,182,212,.10); }
.chip--warn { color: #B45309; border-color: rgba(217,119,6,.35); background: rgba(217,119,6,.10); }

.art__rows {
  padding: 10px 22px 14px;
  position: relative; z-index: 1;
}
.row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--text);
}
.row:last-child { border-bottom: none; }
.row__age { margin-left: auto; color: var(--muted-2); font-size: 11.5px; font-family: ui-monospace, monospace; }
.sev {
  font-size: 10.5px; padding: 4px 9px; border-radius: 5px; font-weight: 800;
  letter-spacing: .06em; min-width: 48px; text-align: center;
  font-family: ui-monospace, monospace;
}
.sev--c { background: linear-gradient(135deg, rgba(220,38,38,.14), rgba(220,38,38,.08)); color: #B91C1C; border: 1px solid rgba(220,38,38,.3); }
.sev--h { background: linear-gradient(135deg, rgba(217,119,6,.14), rgba(217,119,6,.08)); color: #B45309; border: 1px solid rgba(217,119,6,.3); }
.sev--m { background: linear-gradient(135deg, rgba(6,182,212,.14), rgba(6,182,212,.08)); color: #0E7490; border: 1px solid rgba(6,182,212,.3); }
.sev--l { background: linear-gradient(135deg, rgba(148,163,184,.16), rgba(148,163,184,.10)); color: var(--muted); border: 1px solid rgba(148,163,184,.25); }

.art__footer {
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(139,92,246,.1));
  border-top: 1px solid var(--line-2);
  font-size: 12.5px;
  color: #4338CA;
  font-weight: 600;
  position: relative; z-index: 1;
}

/* ==================== TRUST STRIP ==================== */
.trust {
  padding: 36px 28px;
  background: linear-gradient(180deg, rgba(16,185,129,.04), rgba(139,92,246,.04));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.trust::before, .trust::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.4), transparent);
}
.trust::before { top: -1px; }
.trust::after { bottom: -1px; }

.trust__lead {
  color: var(--muted-2); font-size: 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
}
.trust__logos {
  display: flex; gap: 44px; justify-content: center; flex-wrap: wrap;
  font-size: 14.5px; color: var(--muted); font-weight: 600;
  letter-spacing: -.005em;
}
.trust__logos span {
  transition: color .2s, transform .2s;
  cursor: default;
}
.trust__logos span:hover { color: var(--text); transform: translateY(-2px); }

/* ==================== SECTIONS ==================== */
.section {
  padding: 120px 0;
  position: relative;
}
.section--alt {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  position: relative;
}
.section--alt::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.35), transparent);
}

.eyebrow {
  font-size: 12.5px;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  margin-bottom: 14px;
  display: inline-block;
}

.section h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 800px;
  text-wrap: balance;
}

.lead {
  color: var(--muted);
  font-size: 17.5px;
  max-width: 720px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

/* Premium card pattern (used by problem, pillar, fw) */
.problem article, .pillar {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-md);
}
.problem article::before, .pillar::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-sheen);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  border-radius: var(--r-lg);
}
.problem article:hover, .pillar:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-lg);
}
.problem article:hover::before, .pillar:hover::before { opacity: 1; }

.problem h3, .pillar h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -.015em;
}
.problem p, .pillar p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.pillar__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: var(--grad-brand);
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow:
    0 8px 24px -4px rgba(99,102,241,.5),
    inset 0 1px 0 rgba(255,255,255,.3);
  position: relative;
}
.pillar__icon::after {
  content: ""; position: absolute; inset: 1px;
  border-radius: 13px;
  background: var(--grad-sheen);
  pointer-events: none;
}

.pillar ul { margin-top: 20px; }
.pillar li {
  font-size: 14.5px;
  color: var(--text-2);
  padding: 7px 0 7px 28px;
  position: relative;
  line-height: 1.6;
}
.pillar li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 16px; height: 16px;
  background: var(--grad-brand);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3),
              0 2px 4px -1px rgba(99,102,241,.3);
  background-image:
    var(--grad-sheen),
    linear-gradient(135deg, var(--indigo), var(--violet));
}
.pillar li::after {
  content: "✓"; position: absolute; left: 4px; top: 8px;
  color: #fff; font-size: 9px; font-weight: 900;
  z-index: 1;
}

/* ==================== TOOLS GRID ==================== */
.tools span {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.tools span::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(168,85,247,.05));
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.tools span:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px -8px rgba(139,92,246,.25),
    0 0 0 1px rgba(139,92,246,.25);
}
.tools span:hover::before { opacity: 1; }

/* ==================== FRAMEWORKS ==================== */
.fw {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
  transition: all .2s;
  position: relative;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.fw:hover {
  color: var(--text);
  border-color: var(--emerald);
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px -8px rgba(16,185,129,.3),
    0 0 0 1px rgba(16,185,129,.25);
}
.fw strong {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ==================== VS TABLE ==================== */
.vs {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--grad-card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}
.vs table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.vs th, .vs td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.vs tbody tr {
  transition: background .15s;
}
.vs tbody tr:hover { background: rgba(15,23,42,.04); }
.vs th {
  background: linear-gradient(180deg, rgba(16,185,129,.08), rgba(139,92,246,.06));
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  position: sticky; top: 0;
}
.vs th:nth-child(2) { color: var(--cyan); position: relative; }
.vs th:nth-child(2)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-brand);
}
.vs th:first-child { width: 32%; }
.vs td:first-child { color: var(--muted); }
.vs td:nth-child(2) {
  background: linear-gradient(90deg, rgba(99,102,241,.05), rgba(168,85,247,.03));
}
.vs .ok {
  color: var(--good);
  font-weight: 700;
}
.vs .no { color: var(--muted-2); }
.vs .part { color: var(--warn); font-weight: 600; }

/* ==================== PRICING ==================== */
.prices { gap: 22px; }
.price {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  display: flex; flex-direction: column;
  backdrop-filter: blur(12px);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.price::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-sheen);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  border-radius: var(--r-lg);
}
.price:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-lg);
}
.price:hover::before { opacity: 1; }

.price--hot {
  border-color: rgba(139,92,246,.4);
  background:
    linear-gradient(160deg, rgba(16,185,129,.10), rgba(139,92,246,.08) 50%, rgba(255,255,255,.95)),
    var(--bg-1);
  box-shadow:
    0 0 0 1px var(--violet),
    0 22px 44px -12px rgba(139,92,246,.28),
    0 8px 16px -4px rgba(16,185,129,.18);
}
.price--hot:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px var(--violet),
    0 28px 60px -12px rgba(139,92,246,.32),
    0 12px 24px -6px rgba(16,185,129,.22);
}

.ribbon {
  position: absolute; top: -1px; left: 28px;
  background: var(--grad-brand);
  color: #fff;
  padding: 6px 18px;
  border-radius: 0 0 10px 10px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px -2px rgba(99,102,241,.5);
}

.price h3 {
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.price__num {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 12px 0;
  line-height: 1;
  background: linear-gradient(180deg, var(--text), var(--muted));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.price--hot .price__num {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.price__num span {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted-2);
  -webkit-text-fill-color: var(--muted-2);
}
.price__sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
}
.price ul { margin: 18px 0; flex: 1; }
.price li {
  font-size: 14px;
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--text-2);
  line-height: 1.6;
}
.price li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  background: rgba(52,211,153,.18);
  color: var(--good);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(52,211,153,.3);
}
.price .btn { width: 100%; margin-top: 16px; }

/* ==================== TESTIMONIALS ==================== */
.quotes blockquote {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-image: var(--grad-brand) 1;
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform .3s;
  box-shadow: var(--shadow-md);
}
.quotes blockquote:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quotes blockquote::before {
  content: """;
  position: absolute;
  top: 12px; left: 18px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--indigo);
  opacity: .25;
  line-height: 1;
}
.quotes p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
  color: var(--text-2);
  position: relative;
}
.quotes cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.quotes cite::before {
  content: ""; width: 24px; height: 1px;
  background: var(--grad-brand);
}

/* ==================== FAQ ==================== */
.faq { max-width: 820px; }
.faq details {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 24px;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.faq details:hover { border-color: var(--line-2); }
.faq details[open] {
  border-color: rgba(139,92,246,.35);
  box-shadow: 0 8px 24px -8px rgba(139,92,246,.18), var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--muted);
  transition: transform .2s, color .2s;
  font-weight: 300;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
}
.faq details[open] summary::after {
  content: "−";
  color: var(--cyan);
  transform: rotate(180deg);
}
.faq p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}
.faq code {
  background: rgba(139,92,246,.10);
  color: #4338CA;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  border: 1px solid rgba(139,92,246,.22);
}

/* ==================== CTA ==================== */
.cta {
  position: relative;
  padding: 100px 28px;
  text-align: center;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(16,185,129,.20), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(139,92,246,.22), transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(99,102,241,.12), transparent 70%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-sheen);
  pointer-events: none;
}
.cta::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.4), transparent);
}
.cta h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -.025em;
  margin: 0 0 16px;
  color: var(--text);
  position: relative;
  text-wrap: balance;
}
.cta p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(180deg, var(--bg-2) 0%, #E5E7EB 100%);
  border-top: 1px solid var(--line);
  padding: 80px 0 36px;
  font-size: 14px;
  position: relative;
  color: var(--text);
}
.footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.35), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__grid > div:first-child p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
}
.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted-2);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer a {
  display: block;
  color: var(--text-2);
  padding: 6px 0;
  font-size: 14px;
  transition: color .15s, transform .15s;
}
.footer a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}
.footer .btn {
  margin-bottom: 14px;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 13px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 64px 28px;
    gap: 56px;
  }
  .hero__art { display: none; }
  .nav__links { display: none; }
  .grid--3, .grid--4, .grid--6 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 80px 0; }
}

@media (max-width: 540px) {
  .nav { padding: 12px 18px; }
  .nav__cta { gap: 6px; }
  .nav__cta .btn { padding: 8px 14px; font-size: 13px; }
  .grid--3, .grid--4, .grid--6 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__legal { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 64px 0; }
  .section h2 { font-size: 28px; }
  .hero h1 { font-size: 36px; }
}

/* ==================== ACCESSIBILITY ==================== */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--indigo), var(--violet));
  border-radius: 6px;
  border: 2px solid var(--bg-0);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--violet), var(--cyan));
}

/* Selection */
::selection {
  background: rgba(139,92,246,.25);
  color: var(--text);
}

/* ============== SIGNUP FORM ============== */
.signup-form {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(139, 92, 246, .25);
  border-radius: 14px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 16px 40px -12px rgba(139, 92, 246, .18),
              0 0 0 1px rgba(15, 23, 42, .04);
}
.signup-form__title {
  margin: 0 0 .25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.signup-form__sub {
  margin: 0 0 1rem;
  font-size: .85rem;
  color: var(--muted);
}
.signup-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin-bottom: .55rem;
}
.signup-form input[type=email],
.signup-form input[type=text],
.signup-form input[type=url] {
  padding: .7rem .9rem;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.signup-form input:focus {
  outline: none;
  border-color: var(--violet);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, .15);
}
.signup-form input::placeholder { color: var(--muted-2); }
.signup-form button[type=submit] {
  font-size: .9rem;
  padding: .7rem 1rem;
}
.signup-form__terms {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-top: .35rem;
  font-size: .78rem;
  color: var(--muted);
  cursor: pointer;
}
.signup-form__terms input { margin-top: .15rem; cursor: pointer; accent-color: var(--violet); }
.signup-form__terms a { color: var(--violet); text-decoration: underline; }
.signup-form__result {
  margin-top: .85rem;
  padding: .75rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  line-height: 1.5;
}
.signup-form__result--pending {
  background: rgba(139, 92, 246, .08);
  border: 1px solid rgba(139, 92, 246, .25);
  color: #4338CA;
}
.signup-form__result--ok {
  background: rgba(16, 185, 129, .08);
  border: 1px solid rgba(16, 185, 129, .3);
  color: #047857;
}
.signup-form__result--error {
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .3);
  color: #B91C1C;
}
.signup-form__result code {
  display: inline-block;
  padding: .15rem .4rem;
  background: rgba(15, 23, 42, .08);
  color: var(--text);
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: .8rem;
  user-select: all;
  border: 1px solid rgba(15, 23, 42, .12);
}
@media (max-width: 720px) {
  .signup-form__row { grid-template-columns: 1fr; }
}

/* ============== PRICING FOOT (enterprise band + AI billing note) ============== */
.pricing-foot {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.price--enterprise {
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(139,92,246,.08));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .9rem;
  box-shadow: var(--shadow-md);
}
.price--enterprise h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price--enterprise p { color: var(--text-2); font-size: .92rem; line-height: 1.6; }
.price--enterprise .btn { align-self: flex-start; }
.pricing-foot__note {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-2);
  box-shadow: var(--shadow-sm);
}
.pricing-foot__note strong { color: var(--text); }
@media (max-width: 880px) {
  .pricing-foot { grid-template-columns: 1fr; }
}
