/* === Lead Management page === */

/* Hero */
.lm-hero {
  position: relative;
  padding-top: 32px;
  padding-bottom: 80px;
  overflow: hidden;
}
.lm-hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 720px;
  background:
    radial-gradient(60% 60% at 30% 20%, rgba(64,204,191,0.18), transparent 60%),
    radial-gradient(50% 60% at 80% 30%, rgba(64,204,191,0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.lm-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.lm-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin-top: 16px;
}
.lm-hero h1 .accent {
  background: linear-gradient(120deg, var(--teal-500) 0%, var(--teal-400) 60%, var(--teal-700) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lm-hero .lede {
  color: var(--muted);
  font-size: 18px;
  margin-top: 22px;
  max-width: 52ch;
  text-wrap: pretty;
}
.lm-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.lm-hero .benefits-row {
  justify-content: flex-start;
  margin-top: 24px;
}

/* Hero leads table mock */
.lm-leads-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255,255,255,0.6);
  overflow: hidden;
  position: relative;
}
.lm-leads-mock .mock-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}
.lm-leads-mock .mock-bar .traf {
  display: flex; gap: 6px;
}
.lm-leads-mock .mock-bar .traf i {
  width: 10px; height: 10px; border-radius: 999px; background: #e1e3df;
  display: inline-block;
}
.lm-leads-mock .mock-bar .crumbs {
  font-size: 12px; color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  display: flex; align-items: center; gap: 8px;
}
.lm-leads-mock .mock-bar .crumbs b { color: var(--ink); font-weight: 600; }

.lm-leads-mock .toolbar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.lm-leads-mock .toolbar .search {
  flex: 1;
  height: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted-2);
}
.lm-leads-mock .toolbar .pill {
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-2);
  font-weight: 500;
}
.lm-leads-mock .toolbar .pill.on {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.lm-table {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.9fr 0.9fr 0.6fr;
  font-size: 13px;
}
.lm-table .th, .lm-table .td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 10px;
  min-width: 0;
}
.lm-table .th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.lm-table .lead-cell {
  display: flex; align-items: center; gap: 10px;
  min-width: 0;
}
.lm-table .av {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--teal-100);
  flex-shrink: 0; overflow: hidden;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  color: var(--teal-700);
}
.lm-table .av img { width: 100%; height: 100%; object-fit: cover; }
.lm-table .lead-name { font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lm-table .lead-sub { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lm-table .lead-cell > div:last-child { min-width: 0; flex: 1; }
.lm-table .src-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px; border-radius: 999px;
  font-size: 11px; font-weight: 500;
  border: 1px solid var(--line);
}
.lm-table .src-chip.fb { background: #E7F0FE; color: #1877F2; border-color: transparent; }
.lm-table .src-chip.wa { background: #E6F7EC; color: #1B8B43; border-color: transparent; }
.lm-table .src-chip.web { background: var(--line-2); color: var(--ink-2); }
.lm-table .src-chip.ig { background: #FCE8F0; color: #C13584; border-color: transparent; }
.lm-table .stage {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
}
.lm-table .stage .dot { width: 8px; height: 8px; border-radius: 999px; }
.lm-table .row-actions { color: var(--muted-2); justify-content: flex-end; }
.lm-table .td > span,
.lm-table .td > .stage,
.lm-table .td > .src-chip { white-space: nowrap; }

.lm-leads-mock .footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
  white-space: nowrap;
}
.lm-leads-mock .footer-bar > span { white-space: nowrap; }

/* Floating chips on hero mock */
.lm-hero-chip {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  animation: lmFloat 6s ease-in-out infinite;
}
.lm-hero-chip .ic {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
}
.lm-hero-chip b { display: block; font-weight: 600; font-size: 13px; }
.lm-hero-chip small { color: var(--muted); font-size: 11px; }
.lm-hero-chip-1 { top: -16px; right: -24px; animation-delay: 0s; }
.lm-hero-chip-2 { bottom: 24px; left: -32px; animation-delay: -3s; }
@keyframes lmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Stats band */
.lm-stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 48px 0;
}
.lm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}
.lm-stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lm-stat .num small {
  font-size: 28px; font-weight: 600;
  margin-left: 2px;
  color: var(--teal-500);
  -webkit-text-fill-color: var(--teal-500);
}
.lm-stat .lbl {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  max-width: 24ch;
  line-height: 1.4;
}

/* Feature highlights grid */
.lm-feat-grid-section {
  padding: var(--gutter) 0;
}
.lm-feat-grid-header {
  text-align: center;
  margin-bottom: 48px;
}
.lm-feat-grid-header h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 14px;
}
.lm-feat-grid-header p {
  color: var(--muted);
  font-size: 17px;
  max-width: 52ch;
  margin: 14px auto 0;
  text-wrap: pretty;
}
.lm-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lm-feat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lm-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--teal-200);
}
.lm-feat-card-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.lm-feat-card-ic.teal   { background: var(--teal-50);  color: var(--teal-600); }
.lm-feat-card-ic.indigo { background: #EEF2FF;          color: #4F46E5; }
.lm-feat-card-ic.amber  { background: #FEF3C7;          color: #D97706; }
.lm-feat-card-ic.emerald{ background: #ECFDF5;          color: #059669; }
.lm-feat-card-ic.blue   { background: #EFF6FF;          color: #2563EB; }
.lm-feat-card-ic.violet { background: #F5F3FF;          color: #7C3AED; }
.lm-feat-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.lm-feat-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Feature blocks (alternating) */
.lm-feature {
  padding: var(--gutter) 0;
}
.lm-feature .container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.lm-feature.reverse .container > .lm-feature-copy { order: 2; }
.lm-feature.reverse .container > .lm-feature-visual { order: 1; }
.lm-feature-copy h2 {
  font-size: 40px;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
  margin-top: 16px;
}
.lm-feature-copy .lede {
  color: var(--muted);
  font-size: 17px;
  margin-top: 18px;
  max-width: 50ch;
  text-wrap: pretty;
}
.lm-feature-bullets {
  list-style: none;
  margin: 28px 0 0; padding: 0;
  display: grid; gap: 14px;
}
.lm-feature-bullets li {
  display: flex; gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
}
.lm-feature-bullets li .check {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.lm-feature-bullets li b { color: var(--ink); font-weight: 600; }
.lm-feature-actions {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

.lm-feature-visual {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.lm-feature-visual.tinted {
  background: linear-gradient(180deg, var(--teal-50), var(--surface) 60%);
}
.lm-feature-visual.dark {
  background: linear-gradient(180deg, #0E1614, #1A2724);
  border-color: #1A2724;
  color: white;
}
.lm-feature-visual .v-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.lm-feature-visual.dark .v-title { color: rgba(255,255,255,0.6); }

/* Inbox visual */
.v-inbox {
  display: flex; flex-direction: column; gap: 8px;
}
.v-inbox .row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
}
.v-inbox .row.unread { background: var(--teal-50); border-color: var(--teal-100); }
.v-inbox .av { width: 32px; height: 32px; border-radius: 999px; background: var(--teal-100); flex-shrink: 0; overflow: hidden; }
.v-inbox .av img { width: 100%; height: 100%; object-fit: cover; }
.v-inbox .meta { flex: 1; min-width: 0; }
.v-inbox .name { font-weight: 600; }
.v-inbox .preview { color: var(--muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-inbox .time { font-size: 11px; color: var(--muted-2); }
.v-inbox .src-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 600;
}

/* Assignment visual */
.v-assign {
  display: grid; gap: 10px;
}
.v-assign .lead-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
}
.v-assign .lead-pill .name { font-weight: 600; flex: 1; }
.v-assign .lead-pill .arrow { color: var(--muted-2); }
.v-assign .lead-pill .owner {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 4px;
  background: var(--teal-50);
  border-radius: 999px;
  font-weight: 500; color: var(--teal-700);
  font-size: 12px;
}
.v-assign .lead-pill .owner .av-sm {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--teal-200);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: var(--teal-700);
  overflow: hidden;
}
.v-assign .rule {
  margin-top: 8px;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: var(--bg);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.v-assign .rule b { color: var(--ink); font-weight: 700; }

/* Score / qualify visual */
.v-score {
  display: grid; gap: 14px;
}
.v-score .card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.v-score .card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.v-score .card-head .av {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--teal-100);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.v-score .card-head .av img { width: 100%; height: 100%; object-fit: cover; }
.v-score .card-head .name { font-weight: 600; font-size: 14px; }
.v-score .card-head .sub { font-size: 12px; color: var(--muted); }
.v-score .card-head .score-pill {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 12px; font-weight: 700;
}
.v-score .signal {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line-2);
}
.v-score .signal:first-of-type { border-top: none; padding-top: 0; }
.v-score .signal .label { flex: 1; color: var(--ink-2); }
.v-score .signal .bar {
  width: 80px; height: 6px;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}
.v-score .signal .bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-600));
  border-radius: 999px;
}

/* Pipeline kanban (mini) */
.v-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.v-pipeline .col {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  min-height: 240px;
  display: flex; flex-direction: column; gap: 8px;
}
.v-pipeline .col-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.v-pipeline .col-head .count {
  font-size: 10px;
  background: white;
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 999px;
  color: var(--muted);
}
.v-pipeline .deal {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11px;
  display: flex; flex-direction: column; gap: 4px;
}
.v-pipeline .deal .nm { font-weight: 600; color: var(--ink); }
.v-pipeline .deal .amt { color: var(--teal-600); font-weight: 600; font-size: 11px; }
.v-pipeline .deal .meta { color: var(--muted-2); font-size: 10px; }
.v-pipeline .deal.dragging {
  border: 1px dashed var(--teal-500);
  background: var(--teal-50);
}

/* Deals list visual (table view matching actual app) */
.v-deals-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.v-deals-stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.v-ds-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.v-ds-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.v-ds-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-700);
}
.v-ds-badge.green { background: #ECFDF5; color: #059669; }
.v-deals-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.v-deals-head {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 0.8fr;
  padding: 8px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.v-deals-head > div {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.v-deals-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 0.8fr;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-2);
  align-items: center;
  gap: 4px;
}
.v-deals-row:last-child { border-bottom: none; }
.v-deals-row.won { background: #F0FDF9; }
.v-deals-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.v-deals-av {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--teal-100);
  flex-shrink: 0;
  overflow: hidden;
  display: grid; place-items: center;
}
.v-deals-av img { width: 100%; height: 100%; object-fit: cover; }
.v-deals-cname     { font-size: 12px; font-weight: 600; color: var(--ink); }
.v-deals-deal-name { font-size: 12px; font-weight: 600; color: var(--ink); }
.v-deals-amt       { font-size: 11px; color: var(--teal-600); font-weight: 600; }
.v-deals-stage {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  background: white;
}
.v-deals-date {
  font-size: 11px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
}
.v-deals-date.overdue { color: #DC2626; font-weight: 600; }
.v-deals-owner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ink-2);
}
.v-deals-owner-av {
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 8px; font-weight: 700;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* Activity timeline */
.v-timeline {
  position: relative;
  padding-left: 20px;
}
.v-timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.v-timeline .item {
  position: relative;
  padding: 8px 0 16px;
  font-size: 13px;
}
.v-timeline .item::before {
  content: "";
  position: absolute;
  left: -19px; top: 12px;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: white;
  border: 2px solid var(--teal-500);
  box-shadow: 0 0 0 3px var(--surface);
}
.v-timeline .item.muted::before { border-color: var(--muted-2); }
.v-timeline .item .when { font-size: 11px; color: var(--muted-2); }
.v-timeline .item .what { color: var(--ink-2); }
.v-timeline .item .what b { color: var(--ink); font-weight: 600; }

/* Reports / chart visual */
.v-report {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.v-report .head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.v-report .head .ttl { font-weight: 600; font-size: 14px; }
.v-report .head .delta {
  font-size: 12px; color: var(--teal-600); font-weight: 600;
  background: var(--teal-50); padding: 2px 8px; border-radius: 999px;
}
.v-report .chart {
  height: 140px;
  display: flex; align-items: flex-end; gap: 6px;
}
.v-report .chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--teal-400), var(--teal-600));
  border-radius: 6px 6px 2px 2px;
  position: relative;
}
.v-report .chart .bar.dim {
  background: var(--line);
}
.v-report .legend {
  display: flex; gap: 16px;
  margin-top: 14px;
  font-size: 11px; color: var(--muted);
}
.v-report .legend .swatch {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}

/* Source breakdown */
.v-sources {
  display: grid; gap: 10px;
  margin-top: 16px;
}
.v-sources .row {
  display: grid;
  grid-template-columns: 16px 80px 1fr 50px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}
.v-sources .row .label { color: var(--ink-2); font-weight: 500; }
.v-sources .row .meter {
  height: 8px;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}
.v-sources .row .meter i {
  display: block;
  height: 100%;
  border-radius: 999px;
}
.v-sources .row .val {
  text-align: right;
  color: var(--muted);
  font-feature-settings: "tnum";
}
.v-sources .swatch {
  width: 12px; height: 12px;
  border-radius: 4px;
}

/* Integrations strip */
.lm-integrations-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.lm-integrations-strip h3 {
  font-size: 14px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}
.lm-integrations-strip .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.lm-integrations-strip .cell {
  background: var(--surface);
  padding: 28px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  transition: background .2s;
}
.lm-integrations-strip .cell:hover { background: var(--bg); }
.lm-integrations-strip .cell .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
}

/* Use cases / personas grid */
.lm-personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lm-persona {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.lm-persona .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid; place-items: center;
}
.lm-persona h4 { font-size: 18px; }
.lm-persona p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.lm-persona .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto; padding-top: 8px;
}
.lm-persona .tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--line-2);
  color: var(--ink-2);
  font-weight: 500;
}

/* Comparison band */
.lm-compare {
  background: var(--ink);
  color: white;
  padding: var(--gutter) 0;
}
.lm-compare .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.lm-compare .eyebrow {
  background: rgba(64,204,191,0.16); color: var(--teal-400);
}
.lm-compare h2 {
  color: white;
  font-size: 36px; line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 16px;
  text-wrap: balance;
}
.lm-compare .lede {
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  font-size: 16px;
  max-width: 36ch;
}
.lm-compare-table {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lm-compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lm-compare-row:last-child { border-bottom: none; }
.lm-compare-row .cell {
  padding: 16px 20px;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.lm-compare-row .cell.label { color: rgba(255,255,255,0.85); }
.lm-compare-row .cell.them { color: rgba(255,255,255,0.5); border-left: 1px solid rgba(255,255,255,0.08); }
.lm-compare-row .cell.us {
  color: white; font-weight: 600;
  background: rgba(64,204,191,0.06);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.lm-compare-row.head .cell {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  font-weight: 600;
}
.lm-compare-row.head .cell.us { color: var(--teal-400); }
.lm-compare-row .check { color: var(--teal-400); }
.lm-compare-row .x { color: rgba(255,255,255,0.3); }

/* Page CTA / hero alt accents */
.lm-hero .eyebrow { background: rgba(38,177,165,0.10); }

/* Responsive */
@media (max-width: 980px) {
  .lm-hero .container { grid-template-columns: 1fr; gap: 48px; }
  .lm-feature .container { grid-template-columns: 1fr; gap: 40px; }
  .lm-feature.reverse .container > .lm-feature-copy { order: 1; }
  .lm-feature.reverse .container > .lm-feature-visual { order: 2; }
  .lm-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lm-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .lm-personas { grid-template-columns: 1fr; }
  .lm-compare .container { grid-template-columns: 1fr; gap: 32px; }
  .lm-integrations-strip .grid { grid-template-columns: repeat(3, 1fr); }
  .lm-table { font-size: 12px; grid-template-columns: 1.6fr 1fr 0.8fr; }
  .lm-table .col-stage, .lm-table .col-actions { display: none; }
  .lm-hero-chip-1, .lm-hero-chip-2 { display: none; }
}
@media (max-width: 540px) {
  .lm-feat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .lm-compare-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .lm-compare-row .cell.label {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
  }
  .lm-compare-row.head .cell.label {
    display: none;
  }
  .lm-compare-row .cell.them {
    border-left: none;
    border-top: none;
  }
  .lm-compare-row .cell.them,
  .lm-compare-row .cell.us {
    font-size: 12px;
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Keep eyebrows on a single line so they don't break in narrow grids */
.eyebrow { white-space: nowrap; }
