/* ==============================================
   PIMPSTACK · ACID LIME × MACHINE
   ============================================== */

:root {
  --bg: #050505;
  --bg-deep: #000000;
  --bg-card: #0e0e0e;
  --bg-card-2: #161616;
  --bg-inset: #0a0a0a;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.13);
  --border-soft: rgba(255,255,255,0.04);

  --text: #ffffff;
  --text-soft: rgba(255,255,255,0.72);
  --text-dim: rgba(255,255,255,0.5);
  --text-faint: rgba(255,255,255,0.32);
  --text-fade: rgba(255,255,255,0.16);

  --lime: #c8ff3a;
  --lime-bright: #d6ff5e;
  --lime-deep: #a3d51e;
  --lime-glow: rgba(200,255,58,0.35);
  --lime-fade: rgba(200,255,58,0.12);
  --lime-fade-2: rgba(200,255,58,0.05);

  --amber: #ffb547;
  --red: #ff5a5a;
  --orange: #ff7a3a;
  --violet: #b388eb;

  --font-display: 'Unbounded', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'JetBrains Mono', 'SF Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg-deep); color: var(--text); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  background: #060606;
}

/* ====== Living background — drifting auroras behind everything ====== */
body::after {
  content: '';
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 35% at 80% 10%,  rgba(200,255,58,0.22), transparent 60%),
    radial-gradient(ellipse 45% 30% at 12% 28%,  rgba(140,100,255,0.16), transparent 65%),
    radial-gradient(ellipse 55% 35% at 95% 55%,  rgba(200,255,58,0.14), transparent 62%),
    radial-gradient(ellipse 50% 32% at 5% 72%,   rgba(255,110,70,0.13),  transparent 65%),
    radial-gradient(ellipse 60% 32% at 50% 96%,  rgba(200,255,58,0.20),  transparent 62%);
  filter: blur(20px) saturate(120%);
  animation: drift 28s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0)    scale(1);   }
  50%  { transform: translate3d(-2%,1.5%,0) scale(1.06); }
  100% { transform: translate3d(2%,-1%,0)  scale(1.02); }
}

/* fine grain — kills banding, adds film texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
/* keep content above the grain */
.nav, .hero, .trust, .section, .cta-section, .footer { position: relative; z-index: 2; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
b { font-weight: 600; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,6,6,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
}
.logo-mark {
  width: 38px; height: 38px;
  display: block;
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--lime); }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn.lg { padding: 18px 32px; font-size: 16px; }
.btn.sm { padding: 10px 18px; font-size: 13px; }
.btn.primary {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
  position: relative;
  box-shadow: 0 0 0 0 rgba(200,255,58,0.0);
  animation: btnPulse 2.6s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,255,58,0.0), 0 0 24px -6px rgba(200,255,58,0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(200,255,58,0.0), 0 0 40px -2px rgba(200,255,58,0.55); }
}
.btn.primary:hover {
  background: var(--lime-bright);
  border-color: var(--lime-bright);
  box-shadow: 0 0 40px var(--lime-glow), 0 0 0 4px rgba(200,255,58,0.18);
  transform: translateY(-1px);
  animation: none;
}
.btn.outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn.outline:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: transparent;
}
.btn.ghost:hover { color: var(--text); }
.btn .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #000;
  color: var(--lime);
  display: grid; place-items: center;
  margin: -8px -16px -8px 4px;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(.5,0,.1,1.2);
}
.btn:hover .arrow { transform: translate(3px, -3px) rotate(0deg); }
.btn .arrow svg { transition: transform 0.25s cubic-bezier(.5,0,.1,1.2); }
.btn:hover .arrow svg { transform: translate(1px, -1px); }
.btn.outline .arrow { background: var(--text); color: #000; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Cinematic hero video — sits behind everything, masked so text reads */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  filter: saturate(1.1) contrast(1.05);
}
.hero-video-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* darken left side where text lives */
    linear-gradient(90deg, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.72) 35%, rgba(6,6,6,0.45) 65%, rgba(6,6,6,0.85) 100%),
    /* darken top + bottom edges */
    linear-gradient(180deg, rgba(6,6,6,0.6) 0%, transparent 25%, transparent 70%, rgba(6,6,6,0.95) 100%);
}
/* Hero lime aurora — sits behind the dashboard, gives it lift */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 900px;
  height: 900px;
  background:
    radial-gradient(circle at 50% 50%, rgba(200,255,58,0.12) 0%, rgba(200,255,58,0.04) 30%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 50% 50%, rgba(120,90,255,0.08), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 2;
}
.hero .container { position: relative; z-index: 3; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 6.6vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-title .lime {
  color: var(--lime);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 480px;
  margin: 36px 0 44px;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 36px;
  margin-top: 64px;
  max-width: 720px;
}
.hf {
  display: flex; flex-direction: column; gap: 12px;
}
.hf-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--text);
}
.hf-label {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--text);
}
.hf-label span { color: var(--text-dim); display: block; font-weight: 400; }

/* Bottom arc */
.hero-arc {
  position: absolute;
  bottom: -200px;
  left: -120px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-arc::before {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

/* ============================================
   DASHBOARD MOCK (hero right)
   ============================================ */
.dash {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(200,255,58,0.04), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  height: 720px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 120px -20px rgba(200,255,58,0.25);
  position: relative;
  z-index: 1;
}
.dash.compact {
  grid-template-columns: 156px 1fr;
  height: 560px;
}

/* compact header */
.dash-crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.dash-crumb .cr-now { color: var(--text); }
.dash-crumb .cr-sep { color: var(--text-faint); }
.dash-crumb .cr-when {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* compact body: stacked, generous gaps */
.dash.compact .dash-body {
  padding: 16px 18px 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  overflow: hidden;
}

/* KPI hero */
.kpi-hero {
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(200,255,58,0.10), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 18px;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 4px;
}
.kh-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.kh-value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-top: 4px;
}
.kh-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px;
}
.kh-delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
}
.kh-delta b { color: var(--lime); font-weight: 600; }
.kh-spark { width: 100px; height: 22px; }

/* big chart card inside compact */
.chart-card-big {
  min-height: 0;
}
.dash.compact .chart-body { min-height: 140px; }

/* compact models — 3 rows, no second column */
.dash.compact .mc-cols { display: none; }
.dash.compact .mc-row {
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 7px 0;
}
.dash.compact .mc-row .mc-chats { display: none; }
.dash.compact .mc-rev { font-size: 12.5px; }

/* compact sidebar — no plan-row, tighter */
.dash.compact .dash-plan {
  margin-top: 10px;
  padding-top: 10px;
}
.dash.compact .dash-plan-sub { padding: 0 8px; }

/* SIDEBAR */
.dash-side {
  background: var(--bg-card);
  border-right: 1px solid var(--border-soft);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
.dash-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px 18px;
}
.dash-brand .mark { width: 22px; height: 22px; }
.dash-brand .word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.dash-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.dn {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.12s;
}
.dn:hover { background: rgba(255,255,255,0.03); color: var(--text); }
.dn.active {
  background: var(--bg-card-2);
  color: var(--text);
}
.dn .ic { width: 14px; height: 14px; color: var(--text-dim); }
.dn.active .ic { color: var(--lime); }

.dash-plan {
  margin-top: 14px;
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
}
.dash-plan-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--bg-card-2);
}
.dash-plan-row .name { font-size: 12px; font-weight: 500; }
.dash-plan-row .chev { color: var(--text-dim); font-size: 10px; }
.dash-plan-sub {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px 0;
  font-size: 11px;
  color: var(--text-dim);
}
.dash-plan-sub b {
  color: var(--lime);
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--lime-fade);
  font-size: 10px;
}

/* MAIN */
.dash-main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #050505;
  overflow: hidden;
}
.dash-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
}
.dash-search {
  flex: 1;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--bg-card-2);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 12px;
  max-width: 380px;
}
.dash-search .kbd {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  padding: 1px 5px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
.dash-user {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 12px 4px 4px;
  background: var(--bg-card-2);
  border-radius: 999px;
  font-size: 12px;
}
.dash-user .av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.dash-user .label {
  font-size: 11px;
  line-height: 1.2;
}
.dash-user .label .name { font-weight: 600; }
.dash-user .label .role { color: var(--text-dim); font-size: 10px; }
.dash-user .chev { font-size: 10px; color: var(--text-dim); }
.dash-bell {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-card-2);
  color: var(--text-soft);
  cursor: pointer;
}

.dash-body {
  padding: 14px 18px;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 12px;
  overflow: hidden;
}

/* Stats row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 14px;
}
.sc-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sc-head .icon {
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
}
.sc-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
}
.sc-value .spark { color: var(--lime); }
.sc-delta {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-soft);
  margin-top: 6px;
}
.sc-delta b { color: var(--lime); font-weight: 600; }

/* Middle row */
.mid-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 8px;
  min-height: 0;
}
.chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; flex-direction: column;
  min-height: 0;
}
.chart-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.chart-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.chart-filter {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px 3px 10px;
  border-radius: 999px;
  background: var(--bg-card-2);
  color: var(--text-soft);
  display: inline-flex; gap: 4px; align-items: center;
}
.chart-body {
  flex: 1;
  position: relative;
  min-height: 0;
}
.chart-body svg { width: 100%; height: 100%; display: block; }

.chart-tooltip {
  position: absolute;
  top: 14%;
  left: 62%;
  background: var(--bg-card-2);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 2;
}
.chart-tooltip .d { color: var(--text-dim); font-size: 10px; }
.chart-tooltip .v { font-weight: 700; margin-top: 1px; }

.chart-tooltip::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8px;
  width: 1px; height: 60px;
  background: var(--text-fade);
}

.models-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 14px;
  display: flex; flex-direction: column;
  min-height: 0;
}
.mc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.mc-head .ttl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.mc-head .view {
  font-size: 10px;
  color: var(--lime);
  cursor: pointer;
}
.mc-cols {
  display: grid;
  grid-template-columns: 1fr 60px 50px;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 4px;
}
.mc-cols span:nth-child(2), .mc-cols span:nth-child(3) { text-align: right; }
.mc-rows { display: flex; flex-direction: column; }
.mc-row {
  display: grid;
  grid-template-columns: 1fr 60px 50px;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  font-size: 12px;
}
.mc-row + .mc-row { border-top: 1px solid var(--border-soft); }
.mc-model { display: flex; align-items: center; gap: 8px; min-width: 0; }
.mc-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.mc-meta { min-width: 0; }
.mc-name { font-size: 12px; font-weight: 500; line-height: 1.1; }
.mc-status {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 2px;
}
.mc-status::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 4px var(--lime);
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,255,58,0.55), 0 0 4px var(--lime); }
  50%      { box-shadow: 0 0 0 5px rgba(200,255,58,0), 0 0 8px var(--lime); }
}
.mc-status.busy::before { background: var(--amber); box-shadow: 0 0 4px var(--amber); }
.mc-status.off::before { background: var(--text-fade); box-shadow: none; }
.mc-rev { font-size: 12px; font-weight: 600; text-align: right; }
.mc-chats { font-size: 12px; color: var(--text-soft); text-align: right; font-family: var(--font-mono); }

/* Bottom row */
.bot-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8px;
  min-height: 0;
}
.mgr-card, .pipe-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 14px;
  display: flex; flex-direction: column;
  min-height: 0;
}
.bot-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.bot-head .ttl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.bot-head .view {
  font-size: 10px;
  color: var(--lime);
  cursor: pointer;
}

.mgr-rows { display: flex; flex-direction: column; gap: 9px; }
.mgr-row { display: grid; grid-template-columns: 110px 1fr 36px; gap: 10px; align-items: center; }
.mgr-name { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.mgr-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.mgr-bar {
  height: 6px;
  background: var(--bg-card-2);
  border-radius: 999px;
  overflow: hidden;
}
.mgr-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime));
  border-radius: 999px;
}
.mgr-pct {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-align: right;
  color: var(--text);
}

.pipe-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.7fr 0.55fr;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 2px;
}
.pipe-rows { display: flex; flex-direction: column; }
.pipe-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.7fr 0.55fr;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  font-size: 11.5px;
}
.pipe-row + .pipe-row { border-top: 1px solid var(--border-soft); }
.pipe-row .added { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim); }
.tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.tag.new { background: #c9f5b0; color: #1a3d0f; }
.tag.cont { background: #fbd49a; color: #5c3b0a; }
.tag.qual { background: #c8b5f0; color: #2e1a6f; }
.tag.neg { background: #f0b5d6; color: #6f1a4e; }
.tag.prop { background: #d6b5f0; color: #4e1a6f; }
.pipe-pot { font-weight: 600; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 140px 0;
  position: relative;
}
.section.tight { padding: 80px 0; }

/* alternating ambient glows down the page — every other section gets a soft pool */
.section:nth-of-type(odd)::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,255,58,0.05), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.section:nth-of-type(even)::before {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,140,90,0.05), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

.sect-head {
  margin-bottom: 64px;
  max-width: 1100px;
}
.sect-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 6px var(--lime);
  animation: kickerPulse 1.8s ease-in-out infinite;
}
@keyframes kickerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,255,58,0.6), 0 0 6px var(--lime); transform: scale(1); }
  50%      { box-shadow: 0 0 0 7px rgba(200,255,58,0), 0 0 12px var(--lime); transform: scale(1.15); }
}

.sect-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.sect-title .lime,
.hero-title .lime,
.cta-title .lime,
.feat-text h3 .lime {
  color: var(--lime);
  background: linear-gradient(110deg,
    var(--lime) 0%,
    var(--lime) 40%,
    #fff 50%,
    var(--lime) 60%,
    var(--lime) 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: limeShine 6s ease-in-out infinite;
}
@keyframes limeShine {
  0%, 100% { background-position: 120% 50%; }
  50%      { background-position: -20% 50%; }
}
.sect-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-dim);
  margin-top: 24px;
  max-width: 600px;
}
.sect-head.center .sect-lede { margin-left: auto; margin-right: auto; }

/* ============================================
   TRUST MARQUEE
   ============================================ */
.trust {
  padding: 60px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: scroll 50s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-fade);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   PROBLEM
   ============================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.prob {
  background:
    radial-gradient(circle at 0% 0%, rgba(200,255,58,0.06), transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.prob::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,30%), rgba(200,255,58,0.12), transparent 40%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.prob:hover {
  border-color: rgba(200,255,58,0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px rgba(200,255,58,0.35);
}
.prob:hover::after { opacity: 1; }
.prob > * { position: relative; z-index: 1; }
.prob-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.prob-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0.4;
  margin-left: 8px;
  min-width: 60px;
}
.prob-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--lime-fade);
  color: var(--lime);
  margin-bottom: 4px;
}
.prob h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.prob p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
  margin-top: auto;
}

/* ============================================
   FEATURES
   ============================================ */
.feat-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.feat.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}
.feat.reverse .feat-text { order: 2; }

.feat-text { max-width: 460px; }
.feat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.feat-num::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--lime);
}
.feat-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.feat-text h3 .lime { color: var(--lime); }
.feat-text p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
}
.feat-list li::before {
  content: '';
  width: 14px; height: 14px;
  margin-top: 4px;
  border-radius: 4px;
  background: var(--lime);
  position: relative;
}
.feat-list li b { color: var(--text); }

/* Feature mock containers (mini-dashboards) */
.feat-mock {
  background: var(--bg-inset);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* INBOX MOCK */
.fm-inbox { display: grid; grid-template-columns: 160px 1fr; min-height: 380px; }
.fm-models {
  border-right: 1px solid var(--border-soft);
  padding: 14px 10px;
}
.fm-grp {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  text-transform: uppercase;
  padding: 4px 8px 8px;
}
.fm-mdl {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 1px;
  cursor: pointer;
}
.fm-mdl:hover { background: rgba(255,255,255,0.03); }
.fm-mdl.act { background: var(--lime-fade); color: var(--lime); }
.fm-mdl .av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background-size: cover; background-position: center;
}
.fm-mdl .ct {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-dim);
}
.fm-mdl.act .ct { color: var(--lime); }

.fm-threads { padding: 0; }
.fm-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between;
}
.fm-head .ttl { font-size: 13px; font-weight: 600; }
.fm-head .sub { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); margin-top: 2px; }
.fm-chips { display: flex; gap: 4px; }
.fm-chip {
  font-family: var(--font-mono);
  font-size: 9.5px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--bg-card-2);
  color: var(--text-soft);
}
.fm-chip.live { background: var(--lime-fade); color: var(--lime); position: relative; }
.fm-chip.live::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(200,255,58,0.5);
  animation: chipPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes chipPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,255,58,0.45); }
  100% { box-shadow: 0 0 0 10px rgba(200,255,58,0); }
}

.fm-rows { padding: 4px 0; }
.fm-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  padding: 9px 16px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}
.fm-row.hot { background: var(--lime-fade-2); border-left: 2px solid var(--lime); padding-left: 14px; }
.fm-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background-size: cover; background-position: center;
}
.fm-name {
  font-size: 12px; font-weight: 600;
  display: flex; gap: 6px; align-items: center;
}
.fm-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 1.5px 6px;
  border-radius: 999px;
  background: var(--bg-card-2);
  color: var(--text-dim);
}
.fm-tag.whale { background: var(--lime); color: #000; }
.fm-tag.vip { background: rgba(255,181,71,0.18); color: var(--amber); }
.fm-prev { font-size: 11.5px; color: var(--text-dim); margin-top: 2px; }
.fm-time { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); text-align: right; }
.fm-pl {
  font-family: var(--font-mono); font-size: 9px;
  padding: 1px 5px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-dim);
  margin-top: 3px;
  display: inline-block;
}

/* VOICE CONSOLE MOCK */
.fm-voice {
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 18px;
  min-height: 380px;
}
.vc-h {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.vc-h .ttl {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.vc-h .sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.vc-match {
  display: grid; place-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(200,255,58,0.35);
  background: rgba(200,255,58,0.08);
  border-radius: 12px;
  text-align: center;
  min-width: 80px;
}
.vc-match-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--lime);
  letter-spacing: -0.02em;
  line-height: 1;
}
.vc-match-num .pct { font-size: 12px; }
.vc-match-lbl {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.vc-wave {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 10px 14px;
  position: relative;
  overflow: hidden;
}
.vc-wave svg { width: 100%; height: 56px; display: block; }
.vc-cursor {
  position: absolute;
  top: 10px; bottom: 10px;
  left: 56%;
  width: 1px;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: vcScan 4s linear infinite;
}
@keyframes vcScan {
  0%   { left: 0%; opacity: 0.2; }
  10%  { opacity: 1; }
  56%  { opacity: 1; }
  60%  { opacity: 0; }
  100% { left: 60%; opacity: 0; }
}

.vc-faders {
  display: flex; flex-direction: column;
  gap: 9px;
}
.vc-fader {
  display: grid;
  grid-template-columns: 64px 1fr 28px;
  gap: 12px;
  align-items: center;
}
.vc-fl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.vc-track {
  height: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  position: relative;
}
.vc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime));
  border-radius: 999px;
  position: relative;
}
.vc-fill::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}
.vc-fv {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text);
  text-align: right;
  font-weight: 600;
}

.vc-rules {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
  align-items: center;
}
.vc-rules-h {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-right: 4px;
}
.vc-rule {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.vc-rule.on {
  background: rgba(200,255,58,0.10);
  color: var(--lime);
  border: 1px solid rgba(200,255,58,0.25);
}
.vc-rule.off {
  background: transparent;
  color: var(--text-faint);
  border: 1px dashed var(--border);
}

/* ANALYTICS MOCK */
.fm-an {
  padding: 20px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-height: 400px;
}
.an-h { display: flex; justify-content: space-between; align-items: center; }
.an-h .ttl { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
.an-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.an-stat {
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}
.an-stat .al { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.an-stat .av {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.02em;
  margin: 4px 0 2px;
  line-height: 1;
}
.an-stat .ad { font-family: var(--font-mono); font-size: 10px; color: var(--text-soft); }
.an-chart { background: var(--bg-card); border-radius: 10px; padding: 14px; border: 1px solid var(--border-soft); min-height: 100px; }
.an-chart svg { width: 100%; height: 100%; }
.an-table { font-family: var(--font-mono); font-size: 11px; }
.an-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-soft);
}
.an-row.head { color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; font-size: 9.5px; }
.an-row .nm { font-family: var(--font-body); font-size: 12px; font-weight: 500; }
.an-row .up { color: var(--lime); }
.an-row .down { color: var(--red); }

/* LEDGER MOCK */
.fm-led {
  padding: 20px;
  min-height: 380px;
}
.led-h {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.led-h .ttl { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
.led-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 5px 11px;
  background: var(--lime);
  color: #000;
  border-radius: 999px;
  font-weight: 600;
}
.led-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.led-table th, .led-table td {
  padding: 9px 8px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.led-table th {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.led-table td b { font-weight: 600; }
.led-tag { font-family: var(--font-mono); font-size: 9.5px; padding: 2.5px 8px; border-radius: 999px; }
.led-tag.paid { background: var(--lime-fade); color: var(--lime); }
.led-tag.queued { background: rgba(255,181,71,0.15); color: var(--amber); }
.led-tag.hold { background: rgba(255,255,255,0.05); color: var(--text-dim); }

/* ============================================
   STATS SECTION (big numbers)
   ============================================ */
.bigstats {
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, var(--lime-fade), transparent 60%),
    var(--bg-card);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
/* corner mono ticks */
.bigstats::before,
.bigstats::after {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  border: 1px solid rgba(200,255,58,0.18);
  pointer-events: none;
}
.bigstats::before {
  top: 24px; left: 24px;
  border-right: none; border-bottom: none;
}
.bigstats::after {
  bottom: 24px; right: 24px;
  border-left: none; border-top: none;
}
.bigstats-head {
  text-align: center;
  margin-bottom: 48px;
}
.bigstats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.bs {
  text-align: center;
  position: relative;
}
.bs::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--lime);
  margin: 0 auto 22px;
  box-shadow: 0 0 8px var(--lime);
}
.bs::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}
.bs:last-child::after { display: none; }
.bs-value {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--lime);
}
.bs-value sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--text);
  font-weight: 600;
}
.bs-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   COMPARE
   ============================================ */
.compare-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px -40px rgba(200,255,58,0.15);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--border-soft);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-card-2);
}
.compare-table thead th.us {
  color: #000;
  background: var(--lime);
  font-weight: 700;
}
.compare-table tbody td:first-child {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.compare-table tbody td:nth-child(2) {
  color: var(--lime);
  font-weight: 600;
  background: var(--lime-fade-2);
}
.compare-table .yes,
.compare-table .partial,
.compare-table .no {
  position: relative;
  padding-left: 38px !important;
}
.compare-table .yes::before,
.compare-table .partial::before,
.compare-table .no::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px; height: 16px;
  margin-top: -8px;
  border-radius: 50%;
  display: inline-block;
}
.compare-table .yes {
  color: var(--lime);
  font-weight: 600;
}
.compare-table .yes::before {
  background:
    radial-gradient(circle at center, var(--lime) 0%, var(--lime) 38%, transparent 42%) ,
    radial-gradient(circle at center, rgba(200,255,58,0.18) 0%, transparent 70%);
  box-shadow: 0 0 0 1px rgba(200,255,58,0.35), 0 0 10px rgba(200,255,58,0.25);
}
.compare-table .yes::after {
  content: '';
  position: absolute;
  left: 20px; top: 50%;
  margin-top: -3.5px;
  width: 7px; height: 4px;
  border-left: 1.6px solid #000;
  border-bottom: 1.6px solid #000;
  transform: rotate(-45deg);
}
.compare-table .partial { color: var(--amber); }
.compare-table .partial::before {
  background: var(--amber);
  box-shadow: 0 0 0 1px rgba(255,181,71,0.28);
  width: 8px; height: 8px; margin-top: -4px; left: 20px;
  border-radius: 999px;
  opacity: 0.85;
}
.compare-table .no { color: var(--text-faint); }
.compare-table .no::before {
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10);
  width: 14px; height: 14px; margin-top: -7px; left: 17px;
}
.compare-table .no::after {
  content: '';
  position: absolute;
  left: 21px; top: 50%; margin-top: -0.5px;
  width: 6px; height: 1px;
  background: rgba(255,255,255,0.28);
}

/* highlight the lime column with subtle outer glow */
.compare-table thead th.us {
  position: relative;
}
.compare-table tbody td:nth-child(2) {
  position: relative;
}

/* ============================================
   QUOTES
   ============================================ */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.q-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 28px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.q-card::before {
  content: '"';
  position: absolute;
  top: -32px;
  right: 8px;
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 800;
  line-height: 1;
  color: var(--lime);
  opacity: 0.06;
  pointer-events: none;
}
.q-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,255,58,0.18);
  box-shadow: 0 28px 60px -30px rgba(200,255,58,0.25);
}
.q-card.feature::before { color: #000; opacity: 0.08; }
.q-card.feature:hover { transform: translateY(-4px); }
.q-card.feature {
  background: var(--lime);
  color: #000;
}
.q-stars { color: var(--lime); font-size: 14px; letter-spacing: 2px; }
.q-card.feature .q-stars { color: #000; }
.q-card blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  flex: 1;
  text-transform: uppercase;
}
.q-card blockquote .lime { color: var(--lime); }
.q-card.feature blockquote .lime { color: #fff; -webkit-text-stroke: 1px #000; }
.q-author { display: flex; gap: 12px; align-items: center; padding-top: 20px; border-top: 1px solid var(--border-soft); }
.q-card.feature .q-author { border-top-color: rgba(0,0,0,0.15); }
.q-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background-size: cover; background-position: center;
}
.q-name { font-size: 14px; font-weight: 600; line-height: 1.2; }
.q-role { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim); margin-top: 3px; letter-spacing: 0.02em; }
.q-card.feature .q-role { color: rgba(0,0,0,0.6); }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255,255,255,0.025), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.price:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
}
.price.featured:hover {
  border-color: var(--lime);
  box-shadow: 0 24px 80px -10px rgba(200,255,58,0.35);
}
.price.featured {
  background:
    radial-gradient(ellipse 100% 100% at 50% 0%, var(--lime-fade) 0%, transparent 60%),
    var(--bg-card);
  border-color: var(--lime);
}
.price.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 0 80px -20px var(--lime-glow);
  pointer-events: none;
}
.p-badge {
  position: absolute;
  top: -1px; left: 32px;
  transform: translateY(-50%);
  background: var(--lime);
  color: #000;
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.p-desc { font-size: 14px; line-height: 1.5; color: var(--text-dim); }
.p-price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.pv {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lime);
  line-height: 1;
}
.pu { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.p-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.p-list li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-soft);
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
}
.p-list li::before {
  content: '';
  width: 16px; height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(200,255,58,0.12);
  border: 1px solid rgba(200,255,58,0.35);
  position: relative;
}
.p-list li::after {
  content: '';
  position: absolute;
  left: 4px; top: 9px;
  width: 6px; height: 3px;
  border-left: 1.5px solid var(--lime);
  border-bottom: 1.5px solid var(--lime);
  transform: rotate(-45deg);
}
.p-list li { position: relative; }
.p-list li b { color: var(--text); }
.price .btn { margin-top: 8px; }

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left { display: flex; flex-direction: column; gap: 24px; }
.faq-left .sect-title { font-size: clamp(32px, 3.6vw, 56px); }
.faq-left .btn { align-self: flex-start; margin-top: 8px; }

.faq-items { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0 24px 24px;
  position: relative;
  transition: padding .2s ease;
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
  border-radius: 1px;
}
.faq-item[open]::before { transform: scaleY(1); }
.faq-item:hover { padding-left: 28px; }
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-item summary {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color .2s ease;
}
.faq-item:hover summary { color: var(--lime); }
.faq-item[open] summary { color: var(--lime); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 300;
  color: var(--lime);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 64ch;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-section {
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
}
.cta-wrap {
  position: relative;
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, var(--lime-fade) 0%, transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 96px 48px 80px;
  text-align: center;
  overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse 50% 70% at center, var(--lime-glow), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-wrap .container { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.cta-title .lime { color: var(--lime); }
.cta-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 580px;
  margin: 28px auto 40px;
}
.cta-actions { display: inline-flex; gap: 14px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-soft);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.foot-brand p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 20px 0 24px;
  max-width: 320px;
}
.foot-cert { display: flex; gap: 8px; flex-wrap: wrap; }
.cert {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14.5px; color: var(--text-soft); transition: color 0.15s; }
.footer ul a:hover { color: var(--lime); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.foot-wordmark {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lime-fade);
  text-align: center;
  padding: 40px 0 0;
  text-transform: uppercase;
  overflow: hidden;
  user-select: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1280px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .dash { height: 640px; }
  .hero-arc { display: none; }
}
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr; }
  .dash { height: 600px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .feat { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .feat.reverse { grid-template-columns: 1fr; }
  .feat.reverse .feat-text { order: 0; }
  .bigstats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .bs::after { display: none; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 800px; }
  .quotes { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 80px 0; }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .container, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 24px 0 60px; }
  .hero-cta { width: 100%; flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-features { grid-template-columns: 1fr; }
  .dash { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .bigstats { padding: 48px 24px; }
  .bigstats-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
}
