/* ═══════════════════════════════════════════════════════════════════
   LEADNINJA · style.css
   B2B SaaS · clean & modern · v1.0
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces — cool, premium SaaS */
  --bg:        #F7F8FA;
  --bg-soft:   #F1F4F9;
  --surface:   #FFFFFF;

  /* Text */
  --ink:       #0B0F19;
  --ink-2:     #1F2937;
  --muted:     #475569;
  --muted-2:   #94A3B8;

  /* Borders */
  --line:      #E5E7EB;
  --line-2:    #D1D5DB;
  --line-strong:#9CA3AF;

  /* Brand — indigo (LeadNinja own identity, away from VM coral) */
  --brand:     #4F46E5;
  --brand-2:   #4338CA;
  --brand-soft:#EEF2FF;
  --brand-ink: #312E81;
  --lime:      #84CC16;
  --lime-2:    #65A30D;
  --lime-soft: #ECFCCB;

  /* Semantic */
  --ok:        #16A34A;
  --ok-soft:   #DCFCE7;
  --warn:      #F59E0B;
  --info:      #3B82F6;

  /* Shadows */
  --shadow-1:  0 1px 2px rgba(20,20,30,.04), 0 1px 3px rgba(20,20,30,.04);
  --shadow-2:  0 1px 2px rgba(20,20,30,.04), 0 8px 24px rgba(20,20,30,.06);
  --shadow-3:  0 2px 4px rgba(20,20,30,.05), 0 18px 48px rgba(20,20,30,.10);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;

  --t: cubic-bezier(.2,.7,.2,1);

  --container: 1200px;
}

/* ── Reset & base ───────────────────────────────────────────────── */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, button, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px; }

.mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; font-feature-settings: "tnum"; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────────────────── */
.h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 1rem;
}
.h1 .hl { color: var(--brand); }
.h2 {
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -.018em;
  margin: 0 0 .8rem;
}
.lead { font-size: 1.125rem; color: var(--muted); margin: 0 0 1.6rem; max-width: 560px; }
.sub { font-size: 1.05rem; color: var(--muted); margin: 0 auto 1rem; max-width: 620px; }

.kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: .3rem .6rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.sec-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.sec-head .h2 { margin-top: .25rem; }
.sec-head-l { text-align: left; max-width: 720px; margin-left: 0; }
.sec-head-l .sub { margin-left: 0; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.05rem;
  font-weight: 600; font-size: .95rem;
  border-radius: 10px;
  transition: transform .15s var(--t), background .15s var(--t), box-shadow .15s var(--t), color .15s var(--t);
  white-space: nowrap;
}
.btn-lg { padding: .85rem 1.4rem; font-size: 1rem; border-radius: 12px; }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 6px 18px rgba(79,70,229,.22);
}
.btn-primary:hover { background: var(--brand-2); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 10px 22px rgba(79,70,229,.30); }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-outline { background: var(--surface); color: var(--ink); border: 1px solid var(--line-2); }
.btn-outline:hover { background: var(--bg-soft); border-color: var(--line-strong); transform: translateY(-1px); }

/* ── Badge / chip / tag ─────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .3rem .65rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .76rem; letter-spacing: .04em;
  background: var(--surface); color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 3px rgba(79,70,229,.18); }

.tag {
  display: inline-flex; align-items: center;
  font-size: .72rem; font-weight: 600;
  padding: .15rem .5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.tag.small { font-size: .68rem; padding: .1rem .45rem; }
.tag-soft { background: var(--bg-soft); color: var(--muted); border-color: var(--line); }
.tag-lime { background: var(--lime-soft); color: #5C6F0A; border-color: #D8E892; }
.tag-ok   { background: var(--ok-soft);   color: #15803D; border-color: #A7E5BB; }
.tag-live { background: #EAF1FE; color: #1E48B5; border-color: #BBD0F8; position: relative; padding-left: 1.1rem; }
.tag-live::before {
  content: ''; position: absolute; left: .45rem; top: 50%;
  width: 6px; height: 6px; border-radius: 50%; background: var(--info);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(59,130,246,.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem .8rem; font-size: .85rem; font-weight: 600;
  border-radius: 8px; border: 1px solid var(--line-2);
  background: var(--surface); color: var(--ink-2);
  transition: background .15s var(--t);
}
.chip:hover { background: var(--bg-soft); }
.chip.sm { padding: .35rem .65rem; font-size: .78rem; }
.chip-soft { background: var(--bg-soft); }
.chip-cta { background: var(--brand); color: #fff; border-color: transparent; }
.chip-cta:hover { background: var(--brand-2); }

/* ── Avatars ────────────────────────────────────────────────────── */
.ava {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: .72rem; font-weight: 700; color: #fff;
  letter-spacing: .02em;
  flex: 0 0 auto;
}
.ava-a { background: linear-gradient(135deg, #F472B6, #DB2777); }
.ava-b { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.ava-c { background: linear-gradient(135deg, #14B8A6, #0EA5E9); }
.ava-d { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.ava-e { background: linear-gradient(135deg, #84CC16, #16A34A); }

/* ── Score pills ────────────────────────────────────────────────── */
.score {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; padding: .15rem .35rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600; font-size: .82rem;
  border-radius: 6px;
  border: 1px solid;
}
.score-hi  { background: var(--lime-soft); color: #4F6603; border-color: #C4DA66; }
.score-mid { background: var(--bg-soft); color: var(--muted); border-color: var(--line-2); }

/* ── Logo pill (fake company logos) ─────────────────────────────── */
.logo-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: .72rem; color: #fff;
  margin-right: .4rem;
}
.l1 { background: #1E40AF; }
.l2 { background: #0F766E; }
.l3 { background: #B91C1C; }
.l4 { background: #6D28D9; }
.l5 { background: #C2410C; }

/* ── Brand mark ─────────────────────────────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); font-weight: 700; }
.brand-mark { display: inline-flex; width: 28px; height: 28px; color: var(--brand); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-word { font-size: 1.06rem; letter-spacing: -.01em; }

/* ═══════════ NAV ═════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252,251,248,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--t), background .2s var(--t);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav-row { display: flex; align-items: center; gap: 2rem; min-height: 64px; }
.nav-links { display: flex; gap: 1.6rem; margin-left: 1rem; }
.nav-links a { color: var(--muted); font-size: .94rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; gap: .4rem; align-items: center; }
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 8px; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav-burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ═══════════ HERO ════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
  background:
    radial-gradient(1100px 460px at 50% -10%, rgba(79,70,229,.10), transparent 60%),
    radial-gradient(900px 380px at 90% 110%, rgba(132,204,22,.08), transparent 65%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}

/* Hero copy — centered, top-down */
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.4rem;
}
.hero-inner .h1 { margin: 0 0 1rem; font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
.hero-inner .h1 .hl { color: var(--brand); }
.hero-inner .lead { margin: 0 auto 1.6rem; color: var(--muted); max-width: 600px; font-size: 1.08rem; }
.hero-cta {
  display: inline-flex; gap: .55rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 1rem;
}
.hero-fine {
  margin: 0 0 1.8rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .76rem;
  letter-spacing: .02em;
  color: var(--muted-2);
}
.hero-trust {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .45rem .9rem .45rem .55rem;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  color: var(--muted);
}
.hero-trust strong { color: var(--ink); font-weight: 700; }
.avatars { display: flex; }
.avatars .ava { width: 26px; height: 26px; font-size: .6rem; border: 2px solid var(--surface); margin-left: -8px; }
.avatars .ava:first-child { margin-left: 0; }

/* ── Hero mockup ────────────────────────────────────────────────── */
.hero-mockup { position: relative; max-width: 1140px; margin: 0 auto; }
.hero-mockup-glow {
  position: absolute; inset: -6% -4% -4% -4%;
  background:
    radial-gradient(60% 60% at 50% 60%, rgba(79,70,229,.18), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.app {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 4px 12px rgba(15,23,42,.04),
    0 24px 60px rgba(15,23,42,.10);
  overflow: hidden;
}

/* App top bar */
.app-bar {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: linear-gradient(180deg, #FAFBFD, var(--surface));
  border-bottom: 1px solid var(--line);
}
.app-bar-brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .94rem; color: var(--ink);
  padding: 0 4px;
}
.app-bar-brand-mark { display: inline-flex; width: 20px; height: 20px; color: var(--brand); }
.app-bar-search {
  display: flex; align-items: center; gap: .55rem;
  padding: .5rem .75rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted-2); font-size: .84rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}
.app-bar-search .ic { color: var(--muted-2); flex: 0 0 14px; }
.app-bar-search-text { overflow: hidden; text-overflow: ellipsis; }
.app-bar-search kbd {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  padding: .12rem .35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  flex: 0 0 auto;
}
.app-bar-actions { display: flex; gap: .35rem; }

/* App body grid: sidebar / main / rail */
.app-body {
  display: grid;
  grid-template-columns: 56px 1fr 320px;
  min-height: 480px;
}

/* Sidebar — icon-only */
.app-side {
  background: #FBFCFE;
  border-right: 1px solid var(--line);
  padding: 12px 8px;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.app-side a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  color: var(--muted-2);
  cursor: default;
  transition: background .15s var(--t), color .15s var(--t);
}
.app-side a:hover { background: var(--bg-soft); color: var(--ink-2); }
.app-side a.is-active { background: var(--brand-soft); color: var(--brand); }
.app-side a.bot { margin-top: auto; }
.app-side .ic { width: 18px; height: 18px; -webkit-mask-size: 18px 18px; mask-size: 18px 18px; opacity: 1; }

/* Icon mask system — kept (used in mockup + features section) */
.ic { width: 14px; height: 14px; display: inline-block; flex: 0 0 14px; background: currentColor; -webkit-mask-position: center; mask-position: center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 14px 14px; mask-size: 14px 14px; opacity: .8; }
.ic-leads { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='9' cy='8' r='4'/><path d='M3 21v-1a6 6 0 0 1 12 0v1'/><circle cx='17' cy='6' r='3'/><path d='M21 21v-1a4 4 0 0 0-3-3.86'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='9' cy='8' r='4'/><path d='M3 21v-1a6 6 0 0 1 12 0v1'/><circle cx='17' cy='6' r='3'/><path d='M21 21v-1a4 4 0 0 0-3-3.86'/></svg>"); }
.ic-camp  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11l18-7v16L3 13z'/><path d='M9 13v6'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11l18-7v16L3 13z'/><path d='M9 13v6'/></svg>"); }
.ic-inbox { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 12h-6l-2 3h-4l-2-3H2'/><path d='M5 6l-3 6v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3-6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 12h-6l-2 3h-4l-2-3H2'/><path d='M5 6l-3 6v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3-6z'/></svg>"); }
.ic-ana   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 3v18h18'/><path d='M7 14l4-4 3 3 5-7'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 3v18h18'/><path d='M7 14l4-4 3 3 5-7'/></svg>"); }
.ic-set   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09a1.65 1.65 0 0 0-1.08-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.6 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.6a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09c0 .67.39 1.27 1 1.51a1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82 1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09a1.65 1.65 0 0 0-1.08-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.6 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.6a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09c0 .67.39 1.27 1 1.51a1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82 1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/></svg>"); }
.ic-search{ -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3'/></svg>"); }

/* App main column */
.app-main {
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 14px;
  min-width: 0;
}

/* KPI strip */
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.kpi-strip .k {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 1px;
  min-width: 0;
}
.kpi-strip .k b {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.018em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.kpi-strip .k em {
  font-style: normal;
  font-size: .72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kpi-strip .k.up b::after { content: ' ↑'; color: var(--ok); font-weight: 700; font-size: .84rem; }

/* Leads card */
.leads-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  flex: 1;
}
.leads-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.leads-head h3 {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: .55rem;
}
.leads-pill {
  display: inline-flex; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: .66rem;
  font-weight: 500;
  padding: .15rem .45rem;
  border-radius: 4px;
  background: var(--brand-soft);
  color: var(--brand);
  letter-spacing: .03em;
}
.seg {
  display: inline-flex; gap: 2px; padding: 2px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.seg button {
  padding: .25rem .55rem;
  font-size: .74rem; font-weight: 600;
  color: var(--muted);
  border-radius: 6px;
  cursor: default;
}
.seg button.is-active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-1); }

/* Leads table */
.leads-table { display: flex; flex-direction: column; }
.lt-head, .lt-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr .7fr 1fr 1.05fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  font-size: .82rem;
  position: relative;
}
.lt-head {
  font-size: .66rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: #FBFBFD;
  border-bottom: 1px solid var(--line);
}
.lt-row { border-top: 1px solid var(--line); transition: background .15s var(--t); }
.lt-row:hover { background: #FBFBFD; }
.lt-row.is-selected { background: var(--brand-soft); box-shadow: inset 3px 0 0 var(--brand); }
.lt-row.is-selected:hover { background: var(--brand-soft); }
.lt-row.is-incoming {
  background: linear-gradient(90deg, var(--lime-soft) 0%, transparent 60%);
  animation: rowIn .55s var(--t);
}
@keyframes rowIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.lt-lead { display: flex; align-items: center; gap: .55rem; min-width: 0; }
.lt-lead .ava { width: 28px; height: 28px; font-size: .64rem; }
.lt-lead-info { min-width: 0; }
.lt-lead-info b {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink);
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lt-lead-info em {
  display: block;
  font-style: normal;
  font-size: .72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lt-co {
  display: inline-flex; align-items: center;
  font-size: .82rem; color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lt-src { color: var(--muted); font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lt-st { display: inline-flex; }

/* Right rail — selected lead */
.app-rail {
  background: #FBFCFE;
  border-left: 1px solid var(--line);
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.app-rail-head { display: flex; align-items: center; gap: .65rem; }
.app-rail-head .ava { width: 36px; height: 36px; font-size: .76rem; }
.app-rail-head b { display: block; font-weight: 700; color: var(--ink); font-size: .92rem; line-height: 1.2; }
.app-rail-head em { display: block; font-style: normal; font-size: .76rem; color: var(--muted); margin-top: 2px; }
.app-rail-meta {
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.rail-meta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: .8rem;
}
.rail-meta-row em { font-style: normal; color: var(--muted); }
.rail-meta-row b { color: var(--ink); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.app-rail-msg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font-size: .8rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.app-rail-msg p { margin: 0 0 .35rem; }
.app-rail-msg p:last-child { margin: 0; }
.app-rail-msg .mono { color: var(--muted); font-size: .68rem; }
.app-launch {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .65rem .9rem;
  font-size: .88rem; font-weight: 600;
  background: var(--brand);
  color: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 6px 16px rgba(79,70,229,.25);
  margin-top: auto;
  cursor: default;
  transition: background .15s var(--t);
}
.app-launch:hover { background: var(--brand-2); }

/* Mockup responsive */
@media (max-width: 1080px) {
  .hero-mockup { max-width: 100%; }
  .app-body { grid-template-columns: 56px 1fr; }
  .app-rail { display: none; }
}
@media (max-width: 720px) {
  .hero { padding: 3rem 0 4rem; }
  .hero-inner { margin-bottom: 2.4rem; }
  .app-bar { grid-template-columns: 1fr auto; gap: 8px; padding: 10px 12px; }
  .app-bar-search { display: none; }
  .app-bar-actions .chip:first-child { display: none; }
  .app-body { grid-template-columns: 48px 1fr; min-height: 380px; }
  .app-side { padding: 10px 6px; }
  .app-side a { width: 32px; height: 32px; }
  .app-main { padding: 12px; gap: 10px; }
  .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .leads-head { padding: 10px 12px; }
  .lt-head, .lt-row { grid-template-columns: 1.6fr 1fr .6fr; padding: 9px 12px; gap: 8px; }
  .lt-head span:nth-child(n+4), .lt-row > *:nth-child(n+4) { display: none; }
}

/* ═══════════ LOGOS BAR ═══════════════════════════════════════════ */
.logos { padding: 2.4rem 0 1.4rem; border-bottom: 1px solid var(--line); }
.logos-title { text-align: center; margin: 0 0 1.4rem; font-size: .82rem; color: var(--muted); letter-spacing: .04em; font-family: 'JetBrains Mono', monospace; }
.logos-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; align-items: center; }
.lo {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: var(--muted-2);
  letter-spacing: -.01em;
  opacity: .7;
  transition: opacity .15s, color .15s;
}
.lo:hover { opacity: 1; color: var(--ink-2); }

/* ═══════════ HOW IT WORKS ════════════════════════════════════════ */
.how { padding: 7rem 0 8rem; }
.how-flow { display: flex; flex-direction: column; gap: 6rem; }

.how-step {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.how-step.is-rev { grid-template-columns: 1.05fr 1fr; }
.how-step.is-rev .how-text { order: 2; }
.how-step.is-rev .how-mockup { order: 1; }

.how-num {
  display: inline-flex;
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: .25rem .65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.how-step h3 {
  margin: 0 0 .8rem;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.018em;
  color: var(--ink);
}
.how-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 1.4rem;
}
.how-bullets { display: flex; flex-direction: column; gap: .65rem; }
.how-bullets li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-2);
  font-size: .96rem;
  line-height: 1.45;
}
.how-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: .15em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-soft);
  border: 1.5px solid var(--brand);
}
.how-bullets li::after {
  content: '';
  position: absolute;
  left: 5px; top: .55em;
  width: 7px; height: 3px;
  border-left: 1.6px solid var(--brand);
  border-bottom: 1.6px solid var(--brand);
  transform: rotate(-45deg);
}

/* ── Mockup base for all How steps ───────────────────────────── */
.how-mockup { position: relative; }
.mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 18px 40px rgba(15,23,42,.08);
  overflow: hidden;
  position: relative;
}
.mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #FAFBFD, var(--surface));
  border-bottom: 1px solid var(--line);
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); display: block; }
.mock-bar i:first-child  { background: #F87171; }
.mock-bar i:nth-child(2) { background: #FBBF24; }
.mock-bar i:nth-child(3) { background: #34D399; }
.mock-bar-t { margin-left: 8px; font-size: .8rem; color: var(--muted); font-weight: 500; }
.mock-pad { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

.mock-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.mock-card-head b { display: block; font-weight: 700; color: var(--ink); font-size: .94rem; line-height: 1.2; }
.mock-card-head em { display: block; font-style: normal; font-size: .76rem; color: var(--muted); margin-top: 2px; }

/* STEP 01 — ICP */
.mock-input {
  position: relative;
  padding: 11px 13px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-size: .94rem;
  color: var(--ink-2);
  font-weight: 500;
  min-height: 42px;
  display: flex; align-items: center;
  transition: border-color .2s var(--t);
}
.mock-input.is-focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,70,229,.12); }
.mock-typed { display: inline; }
.mock-caret {
  display: inline-block;
  margin-left: 1px;
  color: var(--brand);
  font-weight: 600;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.mock-chips { display: flex; flex-wrap: wrap; gap: 6px; min-height: 32px; }
.mock-chip {
  display: inline-flex;
  padding: .25rem .6rem;
  font-size: .76rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid #DDD6FE;
  opacity: 0;
  transform: translateY(4px) scale(.95);
}
.mock-link {
  font-size: .76rem;
  color: var(--muted-2);
  padding: .35rem 0;
  border-top: 1px dashed var(--line-2);
}
.mock-btn {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem 1rem;
  font-size: .88rem; font-weight: 600;
  background: var(--bg-soft);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: default;
  transition: background .25s var(--t), color .25s var(--t), border-color .25s var(--t), box-shadow .25s var(--t);
}
.mock-btn.is-active {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(79,70,229,.28);
}

/* STEP 02 — Leads */
.mock-leads-list { display: flex; flex-direction: column; }
.mock-lead {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(6px);
}
.mock-lead:first-of-type { border-top: 0; }
.mock-lead .ava { width: 32px; height: 32px; font-size: .68rem; }
.mock-lead-info b {
  display: block; font-weight: 600; font-size: .87rem; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-lead-info em {
  display: block; font-style: normal; font-size: .73rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-leads-foot {
  display: flex; align-items: center; gap: 8px; justify-content: space-between;
  padding: 10px 16px;
  background: #FBFBFD;
  border-top: 1px solid var(--line);
  font-size: .76rem;
  color: var(--muted-2);
}

/* STEP 03 — Angle */
.mock-angle {
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  background: linear-gradient(180deg, #FCFCFE, var(--surface));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 18px 40px rgba(15,23,42,.08);
}
.mock-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.mock-pills .angle-pill { cursor: default; transition: background .25s var(--t), color .25s var(--t), border-color .25s var(--t); }
.mock-msg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.mock-msg-row { font-size: .76rem; color: var(--muted); margin-bottom: 4px; }
.mock-msg-row b { color: var(--ink); font-weight: 600; }
.mock-msg p {
  font-size: .9rem; color: var(--ink-2); line-height: 1.55;
  margin: 10px 0;
  min-height: 4.5em;
  transition: opacity .25s var(--t);
}
.mock-msg-foot {
  display: flex; align-items: center; gap: 10px;
  padding-top: 10px; border-top: 1px solid var(--line);
  font-size: .76rem; color: var(--muted);
  flex-wrap: wrap;
}
.mock-msg-foot .mono b { color: var(--ok); font-weight: 700; }

/* STEP 04 — Launch */
.mock-launch { display: flex; flex-direction: column; }
.mock-seq {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px 0;
}
.mock-seq .seq-step { transition: background .25s var(--t), color .25s var(--t), border-color .25s var(--t); }
.mock-seq .seq-step.is-on { background: var(--ok-soft); color: #15803D; border-color: #A7E5BB; }
.mock-seq .seq-step.is-on span { background: var(--ok); color: #fff; border-color: var(--ok); }
.mock-progress {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 4px;
  margin: 14px 16px 4px;
  overflow: hidden;
}
.mock-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 4px;
  width: 0%;
}
.mock-prog-l { padding: 0 16px 14px; font-size: .72rem; color: var(--muted); font-feature-settings: "tnum"; }
.mock-prog-l span { color: var(--ink); font-weight: 600; }
.mock-reply {
  margin: 0 16px 16px;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px;
  background: var(--ok-soft);
  border: 1px solid #A7E5BB;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(8px);
}
.mock-reply b { display: block; font-size: .84rem; color: #15803D; font-weight: 700; }
.mock-reply em { display: block; font-style: italic; font-size: .82rem; color: var(--ink-2); margin-top: 2px; }
.mock-reply .dot { margin-top: 6px; }

/* Shared (kept) */
.angle-pill {
  padding: .35rem .75rem;
  font-size: .78rem; font-weight: 600;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  align-self: flex-start;
  white-space: nowrap;
}
.angle-pill.is-on { background: var(--lime-soft); color: #4F6603; border-color: #C4DA66; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); display: inline-block; flex: 0 0 8px; }
.dot-ok { background: var(--ok); box-shadow: 0 0 0 3px var(--ok-soft); }
.dot-live { background: var(--info); box-shadow: 0 0 0 3px #DBE8FE; animation: pulse 1.6s ease-in-out infinite; }

/* HOW responsive */
@media (max-width: 920px) {
  .how { padding: 4.5rem 0 5rem; }
  .how-flow { gap: 4.5rem; }
  .how-step, .how-step.is-rev {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .how-step.is-rev .how-text { order: 1; }
  .how-step.is-rev .how-mockup { order: 2; }
  .how-mockup { max-width: 540px; }
}

/* ═══════════ WHY ═════════════════════════════════════════════════ */
.why { padding: 6rem 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-1);
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.why-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 10px;
  margin-bottom: .9rem;
}
.why-ic svg { width: 20px; height: 20px; }
.why-card h3 { margin: 0 0 .3rem; font-size: 1.05rem; font-weight: 700; }
.why-card p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.55; }
.why-stat { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: linear-gradient(160deg, var(--ink) 0%, #1A1F2A 100%); color: #fff; border-color: transparent; }
.why-stat .stat-n { font-family: 'Inter', sans-serif; font-size: 3.4rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--lime); }
.why-stat .stat-l { color: rgba(255,255,255,.75); font-size: .92rem; margin: .5rem 0 0; }

/* ═══════════ FEATURES — bento spotlight ═════════════════════════ */
.features { padding: 7rem 0; }

.bento { display: flex; flex-direction: column; gap: 1.4rem; }
.bento-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}
.bento-row.is-rev { grid-template-columns: 1fr 1.7fr; }
.bento-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.4rem;
}

.feat {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 1.1rem;
  overflow: hidden;
  transition: transform .25s var(--t), box-shadow .25s var(--t), border-color .25s var(--t);
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
#campaign-analytics { scroll-margin-top: 88px; }

.feat-meta { display: flex; flex-direction: column; gap: .35rem; }
.feat-tag {
  display: inline-flex; align-self: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: .66rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: .22rem .55rem;
  border-radius: 4px;
  margin-bottom: .35rem;
}
.feat h3 {
  margin: 0;
  font-size: 1.18rem; font-weight: 800; line-height: 1.2;
  letter-spacing: -.012em;
  color: var(--ink);
}
.feat-big h3 { font-size: 1.5rem; }
.feat p { margin: 0; font-size: .94rem; color: var(--muted); line-height: 1.55; max-width: 480px; }

.feat-ui {
  background: linear-gradient(180deg, #FBFCFE, var(--surface));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin-top: auto;
  display: flex; flex-direction: column; gap: .45rem;
  position: relative; overflow: hidden;
}
.feat-big .feat-ui { min-height: 270px; }
.feat-small .feat-ui { min-height: 130px; }

/* Lead Finder */
.feat-ui-finder { gap: .5rem; }
.feat-ui-finder .finder-bar {
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: .82rem; font-weight: 600;
}
.feat-ui-finder .finder-bar .ic-search { color: var(--muted-2); }
.feat-ui-finder .finder-bar .tag { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-weight: 500; }
.feat-ui-finder .finder-list { display: flex; flex-direction: column; gap: 4px; }
.feat-ui-finder .finder-list > div {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: .55rem; align-items: center;
  padding: .5rem .65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .82rem;
  opacity: 0; transform: translateY(4px);
}
.feat-ui-finder .finder-list .ava { width: 28px; height: 28px; font-size: .64rem; }
.feat-ui-finder .fl-name { min-width: 0; }
.feat-ui-finder .fl-name b {
  display: block; font-weight: 600; font-size: .82rem; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.feat-ui-finder .fl-name em {
  display: block; font-style: normal; font-size: .7rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.feat-ui-finder .score { font-size: .8rem; min-width: 32px; }

/* Angle */
.feat-ui-angle { gap: .4rem; }
.feat-ui-angle .angle-pill {
  align-self: stretch;
  text-align: center;
  cursor: default;
  transition: background .2s var(--t), color .2s var(--t), border-color .2s var(--t);
}

/* Sequences (small variant — pre-built rows but animatable) */
.feat-ui-seq { gap: .4rem; }
.seq-step {
  display: flex; align-items: center; gap: .55rem;
  padding: .45rem .65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .78rem; color: var(--muted);
  transition: background .25s var(--t), color .25s var(--t), border-color .25s var(--t);
}
.seq-step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: .66rem; font-weight: 700;
  color: var(--muted);
  flex: 0 0 20px;
}
.seq-step.done { color: var(--ok); border-color: #A7E5BB; background: var(--ok-soft); }
.seq-step.done span { background: var(--ok); color: #fff; border-color: var(--ok); }

/* Inbox */
.feat-ui-inbox { gap: .4rem; }
.inbox-row {
  display: flex; align-items: center; gap: .55rem;
  padding: .5rem .65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .8rem; color: var(--muted);
  transition: opacity .25s var(--t), transform .25s var(--t);
}
.inbox-row b { color: var(--ink); font-weight: 600; }

/* Enrichment */
.feat-ui-enrich { gap: .4rem; }
.er-row {
  display: flex; align-items: center; gap: .55rem;
  padding: .5rem .65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .8rem;
  opacity: 0; transform: translateY(4px);
}
.er-l { font-family: 'JetBrains Mono', monospace; font-size: .7rem; color: var(--muted); flex: 0 0 48px; }
.er-row .tag { margin-left: auto; }

/* Analytics */
.feat-ui-ana {
  gap: 12px;
  padding: 14px;
  background:
    radial-gradient(220px 140px at 82% 16%, rgba(132,204,22,.18), transparent 65%),
    linear-gradient(180deg, #FBFCFE, var(--surface));
}
.ana-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ana-head b {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}
.ana-eyebrow {
  display: block;
  margin-bottom: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.ana-status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .55rem;
  border: 1px solid #D8E892;
  border-radius: 999px;
  background: rgba(236,252,203,.75);
  color: #4F6603;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}
.ana-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-2);
  box-shadow: 0 0 0 3px rgba(132,204,22,.22);
  animation: pulse 1.6s ease-in-out infinite;
}
.ana-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.ana-kpi {
  min-width: 0;
  padding: .65rem .7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 1px 0 rgba(255,255,255,.75) inset;
  will-change: transform, opacity;
}
.ana-kpi.is-hot {
  border-color: #D8E892;
  background: linear-gradient(180deg, rgba(236,252,203,.78), rgba(255,255,255,.9));
}
.ana-kpi > span,
.ana-kpi > em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ana-kpi > span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}
.ana-kpi b {
  display: block;
  margin-top: .05rem;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ana-kpi > em {
  margin-top: .22rem;
  color: var(--ok);
  font-size: .68rem;
  font-style: normal;
  font-weight: 700;
}
.ana-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, .85fr);
  gap: 10px;
  min-height: 168px;
}
.ana-chart,
.ana-side {
  min-width: 0;
}
.ana-chart {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px 10px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,250,252,.8)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(15,23,42,.04) 54px 55px);
  overflow: hidden;
}
.ana-chart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
  font-size: .72rem;
  color: var(--muted);
}
.ana-chart-top span,
.ana-chart-top b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ana-chart-top b {
  color: var(--brand);
  font-weight: 800;
}
.ana-spark {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  min-height: 106px;
  overflow: visible;
}
.ana-gridline {
  fill: none;
  stroke: rgba(148,163,184,.32);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.ana-area {
  fill: rgba(79,70,229,.10);
}
.ana-line {
  fill: none;
  stroke: var(--brand);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 7px 10px rgba(79,70,229,.18));
  will-change: stroke-dashoffset;
}
.ana-spark circle {
  fill: var(--surface);
  stroke: var(--brand);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  will-change: transform, opacity;
}
.ana-spark circle:last-child {
  fill: var(--lime);
  stroke: #FFFFFF;
}
.ana-scan {
  position: absolute;
  z-index: 2;
  top: 36px;
  bottom: 28px;
  left: 10px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(79,70,229,.75), transparent);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.ana-scan::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.18), transparent 66%);
  transform: translate(-50%, -50%);
}
.ana-x {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  position: relative;
  z-index: 1;
  color: var(--muted-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem;
}
.ana-x span:last-child { text-align: right; }
.ana-side {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ana-channel,
.ana-action {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.84);
  will-change: transform, opacity;
}
.ana-channel {
  padding: .55rem .6rem;
}
.ana-channel.is-winner {
  border-color: #D8E892;
  background: rgba(236,252,203,.5);
}
.ana-channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: .38rem;
}
.ana-channel-top b,
.ana-channel-top em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ana-channel-top b {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}
.ana-channel-top em {
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  font-style: normal;
  font-weight: 700;
}
.ana-track {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-soft);
}
.ana-track i {
  display: block;
  height: 100%;
  min-width: 8px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  transform-origin: 0 50%;
  will-change: transform;
}
.ana-channel.is-winner .ana-track i {
  background: linear-gradient(90deg, var(--lime-2), var(--lime));
  box-shadow: 0 0 16px rgba(132,204,22,.35);
}
.ana-action {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .55rem;
  row-gap: 1px;
  align-items: center;
  padding: .58rem .6rem;
  border-color: #D8E892;
  background: rgba(236,252,203,.45);
}
.ana-action span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: .18rem .38rem;
  border-radius: 999px;
  background: var(--lime);
  color: #263600;
  font-family: 'JetBrains Mono', monospace;
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
}
.ana-action b,
.ana-action em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ana-action b {
  color: var(--ink);
  font-size: .76rem;
  font-weight: 800;
}
.ana-action em {
  color: var(--muted);
  font-size: .66rem;
  font-style: normal;
}
.ana-action.is-muted {
  border-color: #F3D1D1;
  background: rgba(254,242,242,.74);
}
.ana-action.is-muted span {
  background: #FEE2E2;
  color: #B91C1C;
}

/* Bento responsive */
@media (max-width: 920px) {
  .features { padding: 5rem 0; }
  .bento-row, .bento-row.is-rev {
    grid-template-columns: 1fr;
  }
  .bento-stack { grid-template-rows: auto auto; }
  .feat { padding: 1.4rem; }
  .feat-big .feat-ui { min-height: 220px; }
}

/* ═══════════ DATA SOURCES ═══════════════════════════════════════ */
.sources { padding: 6rem 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.src-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.src-card {
  display: flex; flex-direction: column; gap: .2rem;
  padding: 1.2rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
  transition: border-color .15s var(--t), transform .15s var(--t);
}
.src-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.src-card b { font-size: .98rem; font-weight: 700; color: var(--ink); }
.src-card span { font-size: .85rem; color: var(--muted); }

/* ═══════════ TESTIMONIALS ═══════════════════════════════════════ */
.testi { padding: 6rem 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform .2s var(--t), box-shadow .2s var(--t);
}
.testi-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.testi-card p { margin: 0; font-size: 1rem; color: var(--ink-2); line-height: 1.55; }
.testi-card footer { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.testi-card footer b { display: block; font-size: .9rem; color: var(--ink); }
.testi-card footer em { font-style: normal; font-size: .78rem; color: var(--muted); }

/* ═══════════ PRICING ════════════════════════════════════════════ */
.pricing { padding: 6rem 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bill-toggle {
  display: inline-flex; gap: 2px; padding: 3px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-top: 1.4rem;
}
.bill-toggle button {
  padding: .45rem 1rem;
  font-size: .85rem; font-weight: 600;
  border-radius: 999px;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.bill-toggle button.is-active { background: var(--ink); color: #fff; }
.bill-toggle .save { font-size: .7rem; color: var(--lime); margin-left: .35rem; font-family: 'JetBrains Mono', monospace; }
.bill-toggle button.is-active .save { color: var(--lime); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .2s var(--t), box-shadow .2s var(--t);
}
.plan:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.plan header h3 { margin: 0 0 .15rem; font-size: 1.1rem; font-weight: 700; }
.plan header p { margin: 0; font-size: .88rem; color: var(--muted); }
.plan .price { display: flex; align-items: baseline; gap: .35rem; }
.plan .amt { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.plan .per { color: var(--muted); font-size: .9rem; }
.plan-feat { display: flex; flex-direction: column; gap: .55rem; padding-top: .4rem; border-top: 1px solid var(--line); }
.plan-feat li { font-size: .92rem; color: var(--ink-2); display: flex; align-items: center; gap: .55rem; padding-left: 0; }
.plan-feat li::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: var(--ok-soft); flex: 0 0 14px; position: relative; }
.plan-feat li::after { content: ''; position: absolute; width: 6px; height: 3px; border-left: 1.5px solid var(--ok); border-bottom: 1.5px solid var(--ok); transform: rotate(-45deg); margin-left: 4px; margin-top: 2px; }
.plan-pop { border-color: var(--brand); box-shadow: 0 1px 2px rgba(20,20,30,.04), 0 12px 32px rgba(79,70,229,.14); }
.plan-pop .pop {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--brand); color: #fff;
  padding: .2rem .65rem; border-radius: 999px;
}

/* ═══════════ FAQ ════════════════════════════════════════════════ */
.faq { padding: 6rem 0; }
.faq-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: .6rem; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0;
  transition: border-color .15s var(--t), box-shadow .15s var(--t);
  overflow: hidden;
}
.faq-list details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem;
  font-weight: 600; font-size: 1rem;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .caret {
  width: 18px; height: 18px;
  position: relative;
  flex: 0 0 18px;
  transition: transform .2s var(--t);
}
.faq-list .caret::before, .faq-list .caret::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 2px; background: var(--muted);
  transform: translate(-50%, -50%);
}
.faq-list .caret::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s var(--t); }
.faq-list details[open] .caret::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-list details p { margin: 0; padding: 0 1.2rem 1.2rem; font-size: .94rem; color: var(--muted); line-height: 1.6; }

/* ═══════════ FINAL CTA ══════════════════════════════════════════ */
.cta { padding: 5rem 0 7rem; }
.cta-card {
  background: linear-gradient(140deg, var(--ink) 0%, #1A1F2A 100%);
  border-radius: var(--r-xl);
  padding: 4rem 3rem;
  text-align: center;
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(20,20,30,.20);
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 110%, rgba(199,240,58,.18), transparent 60%),
              radial-gradient(60% 80% at 0% 0%, rgba(79,70,229,.15), transparent 60%);
  pointer-events: none;
}
.cta-card .h2 { color: #fff; position: relative; }
.cta-card .sub { color: rgba(255,255,255,.75); position: relative; }
.cta-form {
  position: relative;
  display: flex; gap: .5rem;
  max-width: 460px; margin: 1.6rem auto .8rem;
  flex-wrap: wrap; justify-content: center;
  transition: opacity .25s var(--t), transform .25s var(--t), filter .25s var(--t);
}
.cta-form input {
  flex: 1; min-width: 200px;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: #fff;
  transition: background .15s, border-color .15s;
}
.cta-form input::placeholder { color: rgba(255,255,255,.5); }
.cta-form input:focus { outline: none; border-color: var(--brand); background: rgba(255,255,255,.12); }
.cta-card.is-submitted .cta-form {
  opacity: .55;
  transform: translateY(-2px);
  filter: saturate(.85);
}
.cta-card.is-submitted .cta-form input,
.cta-card.is-submitted .cta-form button {
  pointer-events: none;
}
.cta-success {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
  width: min(520px, 100%);
  max-height: 0;
  margin: 0 auto;
  padding: 0 .95rem;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(236,252,203,.18), rgba(79,70,229,.10)),
    rgba(255,255,255,.08);
  border: 1px solid rgba(236,252,203,.34);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  pointer-events: none;
  transition: opacity .3s var(--t), transform .3s var(--t), border-color .3s var(--t), margin .3s var(--t), padding .3s var(--t), max-height .3s var(--t);
}
.cta-success.is-visible {
  max-height: 180px;
  margin: .95rem auto 1rem;
  padding: .85rem .95rem;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cta-success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--lime);
  color: #263600;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(132,204,22,.14);
}
.cta-success b {
  display: block;
  margin-bottom: .1rem;
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
}
.cta-success span:last-child {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.45;
}
.cta-confetti {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  overflow: hidden;
}
.cta-confetti i {
  position: absolute;
  display: block;
  width: var(--cw, 8px);
  height: var(--ch, 14px);
  border-radius: 2px;
  background: var(--cc, var(--lime));
  box-shadow: 0 0 18px color-mix(in srgb, var(--cc, var(--lime)) 45%, transparent);
  will-change: transform, opacity;
}
.cta-fine { color: rgba(255,255,255,.6); font-size: .82rem; position: relative; margin: 0; }

/* ═══════════ FOOTER ═════════════════════════════════════════════ */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.footer-tag { color: var(--muted); margin: .8rem 0 0; font-size: .9rem; max-width: 260px; }
.footer-col h4 { margin: 0 0 .9rem; font-size: .85rem; font-weight: 700; color: var(--ink); }
.footer-col a { display: block; padding: .25rem 0; color: var(--muted); font-size: .9rem; transition: color .15s; }
.footer-col a:hover { color: var(--ink); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--muted-2);
  flex-wrap: wrap; gap: .5rem;
}

/* ═══════════ Reveal motion ══════════════════════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(10px); transition: opacity .6s var(--t), transform .6s var(--t); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].is-in { opacity: 1; transform: none; transition: none; }
  .lt-row.is-incoming { animation: none; }
  .app { transform: none; transition: none; }
  .app:hover { transform: none; }
  .tag-live::before, .dot-live, .ana-status i { animation: none; }
}

/* ═══════════ RESPONSIVE ═════════════════════════════════════════ */
@media (max-width: 1080px) {
  .steps, .why-grid, .feat-grid, .src-grid, .testi-grid, .plans { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-row { min-height: 56px; }
  /* Burger panel — single visual unit. nav-links + nav-cta stack contiguously
     thanks to JS-computed --nav-cta-top (set in main.js on toggle). */
  .nav.is-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .35rem 1.25rem .5rem; gap: 0;
  }
  .nav.is-open .nav-links a {
    min-height: 48px; display: flex; align-items: center;
    padding: .25rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  }
  .nav.is-open .nav-links a:last-child { border-bottom: 0; }
  .nav.is-open .nav-cta {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-cta-top, calc(100% + 260px)); left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .85rem 1.25rem 1.1rem; gap: .55rem;
  }
  .nav.is-open .nav-cta .btn { min-height: 46px; }

  .how, .why, .features, .sources, .testi, .pricing, .faq { padding: 4rem 0; }
  .cta { padding: 3rem 0 4rem; }
  .cta-card { padding: 2.6rem 1.4rem; }

  .steps, .why-grid, .feat-grid, .src-grid, .testi-grid, .plans { grid-template-columns: 1fr; }
  .ana-kpis, .ana-body { grid-template-columns: 1fr; }
  .ana-chart { min-height: 190px; }
  .ana-side { display: grid; grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .ana-head { align-items: flex-start; flex-direction: column; }
  .ana-status { align-self: flex-start; }
  .ana-action { grid-template-columns: 1fr; }
  .ana-action span { grid-row: auto; justify-self: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}
