/* ============================================================
   pages/product.css — Product page styles
   ------------------------------------------------------------
   Depends on: tokens.css, base.css, chrome.css
   Notes:
     - Adds a product-only --ink-warm token used by the dark
       Lobbyist section.
     - Re-declares .live-dot with slightly faster pulse
       (matches the page's other live-indicator timing).
     - Includes residual .footer-col rules (older footer
       partial — harmless if unused).
   ============================================================ */

/* ─── Product-page extra token ─── */
:root { --ink-warm: #0f172a; }

/* ════ HERO ════ */
.hero {
  padding: 48px 0 32px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(61,90,122,0.06) 0%, transparent 60%),
    var(--bg);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  background: var(--red-wash);
  border: 1px solid rgba(220,38,38,0.30);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
h1.page-title {
  font-size: 56px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.03em;
  line-height: 1.05; margin: 0 auto 22px;
  max-width: 880px;
}
h1.page-title .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}
@media (max-width: 760px) { h1.page-title { font-size: 38px; } }
.page-sub {
  font-size: 19px; line-height: 1.55;
  color: var(--body); max-width: 680px;
  margin: 0 auto 28px;
}

/* ════ SECTION NAV — chips above the flow chart ════ */
.section-nav {
  background: var(--bg);
  padding: 36px 0 24px;
}
.section-nav-inner {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.section-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 14px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.05);
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.15s ease;
}
.section-nav a:hover {
  transform: translateY(-1px);
  border-color: var(--slate-blue);
  box-shadow: 0 4px 14px rgba(61,90,122,0.15);
  color: var(--ink);
}
.section-nav a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ════ PILLAR SECTIONS ════ */
.pillar {
  padding: 100px 0;
  border-top: 1px solid var(--line-soft);
}
.pillar:first-of-type { border-top: none; }
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.pillar.reverse .pillar-grid   { grid-template-columns: 1.15fr 1fr; }
.pillar.reverse .pillar-copy   { order: 2; }
.pillar.reverse .pillar-visual { order: 1; }
@media (max-width: 880px) {
  .pillar-grid,
  .pillar.reverse .pillar-grid                                  { grid-template-columns: 1fr; gap: 40px; }
  .pillar.reverse .pillar-copy,
  .pillar.reverse .pillar-visual                                { order: 0; }
}

.pillar-num {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--slate-blue);
  margin-bottom: 14px;
}
.pillar-num .num-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%; background: var(--slate-blue);
  color: #fff; font-size: 12px; font-weight: 800;
  letter-spacing: 0;
}
h2.pillar-title {
  font-size: 36px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.025em;
  line-height: 1.15; margin: 0 0 14px;
}
@media (max-width: 720px) { h2.pillar-title { font-size: 28px; } }
.pillar-angle {
  font-size: 19px; font-style: italic; color: var(--slate-blue-deep);
  line-height: 1.45; margin: 0 0 22px;
  padding-left: 16px; border-left: 3px solid var(--slate-blue);
  font-weight: 500;
}
.pillar-text {
  font-size: 15.5px; color: var(--body);
  margin: 0 0 18px; line-height: 1.6;
}
.pillar-features {
  list-style: none; padding: 0; margin: 18px 0 0;
}
/* Grid columns instead of flex+min-width so the description column lines
   up consistently — labels longer than the column wrap to a second line
   rather than pushing the description over. */
.pillar-features li {
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  font-size: 14.5px;
  align-items: baseline;
}
@media (max-width: 720px) {
  .pillar-features li { grid-template-columns: 1fr; gap: 4px; }
}
.pillar-features li:first-child { border-top: none; padding-top: 0; }
.pillar-features li strong {
  color: var(--ink); font-weight: 700;
}
.pillar-features li span { color: var(--body); }

/* ─── Pillar chrome footer ──────────────────────────────────────
   Cross-cutting features that live on every page (slide-out, Ctrl+K,
   help). Sits below the dashboard-specific bullets on Pillar 1 to
   hand off the "always available" story without bloating the bullet
   list. Slate-soft chip strip, mono kicker, inline icon chips. */
.pillar-chrome {
  margin-top: 22px;
  padding: 14px 18px;
  background: var(--slate-blue-soft);
  border-left: 3px solid var(--slate-blue);
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  font-size: 13px;
  color: var(--ink-mid);
}
.pillar-chrome-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--slate-blue);
  margin-right: 4px;
  flex-shrink: 0;
}
.pillar-chrome-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}
/* When the chip is a link (e.g. Ctrl+K bill search → #search-palette) */
a.pillar-chrome-item:hover {
  color: var(--slate-blue-deep);
}
a.pillar-chrome-item:hover .pillar-chrome-icon { color: var(--slate-blue-deep); }
.pillar-chrome-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 18px; height: 18px;
  color: var(--slate-blue);
  flex-shrink: 0;
}
.pillar-chrome-icon svg { width: 14px; height: 14px; }
.pillar-chrome-sep {
  color: var(--faint);
  font-weight: 500;
}
@media (max-width: 720px) {
  .pillar-chrome { gap: 8px 10px; padding: 12px 14px; }
  .pillar-chrome-sep { display: none; }
}

.pillar-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 40px -10px rgba(15,23,42,0.15);
}

/* ════ DIRECTORY MOCK — Who's Who pillar ════ */
.dir-mock {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 14px 40px -10px rgba(15,23,42,0.15);
}
.dir-mock-head {
  padding: 16px 20px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
}
.dir-mock-title {
  font-size: 14.5px; font-weight: 700;
  color: var(--ink); margin-bottom: 10px;
}
.dir-mock-chips {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.dir-chip {
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 5px;
}
.dir-chip.active {
  background: var(--slate-blue); color: #fff;
  border-color: var(--slate-blue);
}
.dir-chip-count {
  font-size: 10px; font-weight: 600;
  color: inherit; opacity: 0.75;
  padding-left: 4px; border-left: 1px solid currentColor;
  margin-left: 2px;
}
.dir-mock-list { list-style: none; padding: 0; margin: 0; }
.dir-mock-row {
  display: flex; align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line-soft);
  gap: 14px;
}
.dir-mock-row:last-child { border-bottom: none; }
.dir-mock-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  color: #fff; font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.dir-mock-avatar.dem { background: linear-gradient(135deg, #2563eb, #1e40af); }
.dir-mock-avatar.rep { background: linear-gradient(135deg, #dc2626, #991b1b); }
.dir-mock-avatar.ind { background: linear-gradient(135deg, #6b7280, #374151); }
.dir-mock-info { flex: 1; min-width: 0; }
.dir-mock-name {
  font-size: 14px; font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}
.party-pill {
  font-size: 9.5px; font-weight: 800;
  padding: 1px 5px; border-radius: 3px;
  color: #fff;
}
.party-pill.dem { background: #2563eb; }
.party-pill.rep { background: #dc2626; }
.dir-mock-meta {
  font-size: 12px; color: var(--muted);
  line-height: 1.4;
}
.dir-mock-stat {
  font-size: 11px; color: var(--muted);
  text-align: right; flex-shrink: 0;
}
.dir-mock-stat strong {
  display: block; font-size: 18px; font-weight: 800;
  color: var(--slate-blue); line-height: 1;
  margin-bottom: 2px;
}

/* ════ VOTECARDS — vote whipping ════ */
.votecards {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.vc-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 64px; align-items: center;
}
@media (max-width: 880px) { .vc-grid { grid-template-columns: 1fr; gap: 40px; } }
.vc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-blue);
  background: var(--slate-blue-soft);
  border: 1px solid rgba(61,90,122,0.18);
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 20px;
}
.vc-copy h2 {
  font-size: 38px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.025em;
  line-height: 1.1; margin: 0 0 18px;
}
@media (max-width: 720px) { .vc-copy h2 { font-size: 28px; } }
.vc-copy .pillar-angle {
  font-size: 18px; font-style: italic;
  color: var(--slate-blue-deep); line-height: 1.45;
  margin: 0 0 22px; padding-left: 16px;
  border-left: 3px solid var(--slate-blue);
  font-weight: 500;
}
.vc-copy p {
  font-size: 15.5px; color: var(--body);
  line-height: 1.6; margin: 0 0 14px;
}
.vc-copy p strong { color: var(--ink); }
.vc-modes {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 24px;
}
.vc-mode {
  font-size: 12px; font-weight: 700;
  padding: 7px 13px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.vc-mode-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--slate-blue);
}
.vc-mode.live .vc-mode-dot { background: var(--red); }

.vc-mock {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(15,23,42,0.12);
}
.vc-mock-head {
  padding: 16px 20px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
}
.vc-mock-bill {
  font-size: 14.5px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.vc-mock-counts { display: flex; gap: 6px; }
.vc-pos {
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.02em;
}
.vc-aye { background: #dcfce7; color: #15803d; }
.vc-no  { background: #fee2e2; color: #b91c1c; }
.vc-unk { background: #f1f5f9; color: var(--muted); }
.vc-mock-list { list-style: none; padding: 0; margin: 0; }
.vc-mock-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line-soft);
  gap: 12px;
}
.vc-mock-list li:last-child { border-bottom: none; }
.vc-mock-leg {
  display: flex; align-items: center; gap: 10px;
  min-width: 0;
}
.vc-mock-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--slate-blue-soft);
  color: var(--slate-blue);
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vc-mock-name {
  font-size: 14px; color: var(--ink); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vc-mock-pill {
  font-size: 11.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  white-space: nowrap; flex-shrink: 0;
}
.vc-mock-pill.aye       { background: #dcfce7; color: #15803d; }
.vc-mock-pill.staff-aye { background: #ecfccb; color: #4d7c0f; }
.vc-mock-pill.no        { background: #fee2e2; color: #b91c1c; }
.vc-mock-pill.unknown   { background: #f1f5f9; color: var(--muted); }
.vc-mock-foot {
  padding: 14px 20px;
  font-size: 12px; color: var(--muted);
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between;
}

/* ════ LOBBYIST SEARCH — full-bleed dark ════ */
.lobbyist {
  background: var(--ink-warm); color: #fff;
  padding: 100px 0;
}
.lobbyist-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 880px) { .lobbyist-grid { grid-template-columns: 1fr; gap: 40px; } }
.lobbyist-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff;
  background: rgba(220,38,38,0.18);
  border: 1px solid rgba(220,38,38,0.4);
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 22px;
}
/* .live-dot override — slightly faster + tighter shadow ring for the
   dark section's live indicator. */
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(220,38,38,0.5);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}
.lobbyist h2 {
  font-size: 40px; font-weight: 800;
  color: #fff; letter-spacing: -0.025em;
  line-height: 1.1; margin: 0 0 18px;
}
@media (max-width: 720px) { .lobbyist h2 { font-size: 30px; } }
.lobbyist p {
  font-size: 16.5px; line-height: 1.6;
  color: rgba(255,255,255,0.78); margin: 0 0 16px;
}
.lobbyist-features {
  margin-top: 20px;
  display: grid; gap: 14px;
}
.lobbyist-feature {
  display: flex; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
}
.lobbyist-feature strong {
  color: #fff; font-weight: 700;
  display: block; margin-bottom: 3px; font-size: 14px;
}
.lobbyist-feature span {
  font-size: 13.5px; color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ────────── Dead-but-preserved graph mock styles ──────────
   These were the network-graph visualization originally
   planned for the Lobbyist section. The visual was replaced
   by the .ls-mock directory mock; rules kept in case a stale
   markup snippet still references them. Safe to delete later. */
.graph {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 36px 32px;
  position: relative;
}
.graph-label {
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 14px;
  text-align: center;
}
.graph-row {
  display: flex; justify-content: space-around;
  margin-bottom: 28px; position: relative;
}
.graph-row:last-child { margin-bottom: 0; }
.graph-node {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 600;
  color: #fff; text-align: center;
  min-width: 110px; position: relative; z-index: 2;
}
.graph-node.bill {
  background: rgba(61,90,122,0.5);
  border-color: var(--slate-blue);
  font-weight: 700;
}
.graph-node.lobbyist {
  background: rgba(220,38,38,0.15);
  border-color: rgba(220,38,38,0.45);
  color: #fca5a5;
}
.graph-svg { position: absolute; inset: 0; pointer-events: none; }

/* ════ EVERYTHING-IN-RTG GRID ════ */
.everything {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-header {
  max-width: 720px; margin: 0 auto 56px;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate-blue); margin-bottom: 14px;
}
.section-title {
  font-size: 40px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.025em;
  line-height: 1.1; margin: 0 0 16px;
}
@media (max-width: 720px) { .section-title { font-size: 30px; } }
.section-sub { font-size: 17px; color: var(--body); margin: 0; line-height: 1.55; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex; gap: 14px;
  transition: all 0.15s ease;
}
.feature-card:hover {
  border-color: var(--slate-blue);
  box-shadow: 0 6px 16px -4px rgba(15,23,42,0.08);
  transform: translateY(-1px);
}
.feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0; border-radius: 8px;
  background: var(--slate-blue-soft);
  color: var(--slate-blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-name {
  font-size: 14.5px; font-weight: 700;
  color: var(--ink); margin: 0 0 3px;
}
.feature-desc {
  font-size: 12.5px; line-height: 1.45;
  color: var(--muted); margin: 0;
}

/* ════ INTEGRATIONS STRIP ════ */
.integrations          { padding: 80px 0; }
.integrations-inner    { text-align: center; }
.integrations h3 {
  font-size: 22px; font-weight: 700;
  color: var(--ink); margin: 0 0 8px;
}
.integrations p {
  font-size: 14px; color: var(--muted); margin: 0 0 32px;
}
.integrations-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px;
}
.int-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}

/* ════ FINAL CTA ════ */
.final-cta {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  padding: 100px 0; text-align: center;
}
.final-cta h2 {
  font-size: 44px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em;
  line-height: 1.1; margin: 0 auto 18px;
  max-width: 720px;
}
.final-cta h2 .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .final-cta h2 { font-size: 32px; } }
.final-cta p {
  font-size: 17px; color: var(--body);
  max-width: 540px; margin: 0 auto 32px;
}
.final-ctas {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}

/* ────────── Residual .footer-col rules ──────────
   Bundle uses the inline footer nav from chrome.css. These
   .footer-col rules stay only in case a stale partial still
   uses the older column-style markup. */
.footer-col h4 {
  font-size: 12px; font-weight: 800; color: var(--ink);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col ul     { list-style: none; padding: 0; margin: 0; }
.footer-col li     { margin-bottom: 9px; }
.footer-col a      { color: var(--muted); font-size: 13.5px; }
.footer-col a:hover { color: var(--ink); }

/* ════════════════════════════════════════════
   FLOW CHART — A day at a glance
   (lifted from HelpGettingStarted.aspx)
   ════════════════════════════════════════════ */
.flow-section {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
/* Flow chart as page hero (Option C — flow-first product page).
   Promotes the section: white background, hero padding, hero-sized title. */
.flow-section.flow-is-hero {
  padding: 48px 0 100px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(61,90,122,0.06) 0%, transparent 60%),
    var(--bg);
  border-top: none;
  border-bottom: 1px solid var(--line-soft);
}
.flow-section.flow-is-hero .flow-header {
  max-width: 860px;
  margin: 0 auto 56px;
}
.flow-section.flow-is-hero .flow-title {
  font-size: 56px;
  letter-spacing: -0.03em;
  margin: 18px 0 22px;
}
@media (max-width: 760px) {
  .flow-section.flow-is-hero .flow-title { font-size: 38px; }
}
.flow-section.flow-is-hero .flow-sub {
  font-size: 19px;
  max-width: 700px;
  line-height: 1.55;
}
.flow-section.flow-is-hero .flow-sub strong {
  color: var(--ink);
  font-weight: 700;
}
.flow-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.flow-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-blue);
  background: var(--slate-blue-soft);
  border: 1px solid rgba(61,90,122,0.20);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.flow-title {
  font-size: 38px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.035em;
  line-height: 1.1; margin: 0 0 16px;
}
.flow-title .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .flow-title { font-size: 28px; } }
.flow-sub {
  font-size: 16px; color: var(--body);
  line-height: 1.55; margin: 0 auto;
  max-width: 580px;
}
.help-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 16px;
}
.help-flow-node {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--slate-blue);
  background: #fff;
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 280px;
  max-width: 540px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(15,23,42,0.06);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
a.help-flow-node:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(61,90,122,0.14);
  text-decoration: none;
  color: var(--ink);
}
a.help-flow-start:hover,
a.help-flow-end:hover { color: #fff; }
.flow-icon {
  font-size: 18px;
  flex-shrink: 0;
  color: var(--slate-blue);
  width: 22px;
  text-align: center;
}
.help-flow-node strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.help-flow-node span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
  line-height: 1.4;
}
.help-flow-start {
  background: var(--slate-blue);
  color: #fff;
  border-color: var(--slate-blue);
}
.help-flow-start .flow-icon,
.help-flow-start strong            { color: #fff; }
.help-flow-start span              { color: rgba(255,255,255,0.85); }
.help-flow-end {
  background: #15803d;
  color: #fff;
  border-color: #15803d;
}
.help-flow-end .flow-icon,
.help-flow-end strong              { color: #fff; }
.help-flow-end span                { color: rgba(255,255,255,0.85); }
.help-flow-action                  { background: rgba(61,90,122,0.05); }
.help-flow-decision {
  background: rgba(245,158,11,0.08);
  border-color: #f59e0b;
  border-radius: 14px;
}
.help-flow-decision .flow-icon { color: #b45309; }
.help-flow-decision strong { font-style: italic; }
.help-flow-arrow {
  width: 2px;
  height: 22px;
  background: var(--faint);
  position: relative;
  opacity: 0.7;
  margin: 0;
}
.help-flow-arrow::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: -2px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--faint);
}
.help-flow-arrow-merge { margin-top: 14px; }
.help-flow-split {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.help-flow-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 240px;
}
.help-flow-branch-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
/* Side-pair — two nodes side by side connected by a right-pointing
   arrow. Used for "Create & configure reports → Reports run themselves"
   so the AUTO-publish outcome reads as a side-effect rather than a
   sequential step. */
.help-flow-side-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}
.help-flow-side-pair > .help-flow-node { flex: 0 1 auto; }
.help-flow-side-secondary {
  background: var(--bg-soft);
  border-style: dashed !important;
}
.help-flow-arrow-right {
  width: 36px;
  height: 2px;
  background: var(--faint);
  opacity: 0.7;
  position: relative;
  flex-shrink: 0;
  margin: 0 4px;
}
.help-flow-arrow-right::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--faint);
}

@media (max-width: 720px) {
  .help-flow-node {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 11px 14px;
  }
  .help-flow-split  { flex-direction: column; gap: 0; }
  .help-flow-branch { min-width: 0; width: 100%; }
  .help-flow-side-pair { flex-direction: column; }
  .help-flow-arrow-right {
    width: 2px;
    height: 22px;
    margin: 0;
  }
  .help-flow-arrow-right::after {
    right: auto;
    top: auto;
    left: -4px;
    bottom: -2px;
    border-top: 7px solid var(--faint);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 0;
  }
}

/* ════════════════════════════════════════════
   NEW SNIPPET MOCKS — matching homepage-v2 style
   ════════════════════════════════════════════ */

/* ── Dashboard mock (Pillar 1) ─ focused snippet of Dashboard.aspx ── */
.db-mock {
  background: #fff;
  overflow: hidden;
  color: #1e293b;
  font-size: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 40px -10px rgba(15,23,42,0.15);
}
.db-topbar {
  display: flex; align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.db-logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--slate-blue);
}
.db-logo-mark {
  width: 18px; height: 18px;
  border: 2px solid var(--slate-blue);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.db-logo-mark::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 7px; height: 1.5px;
  background: var(--slate-blue);
  transform: translate(-50%, -50%) rotate(-30deg);
  transform-origin: left center;
}
.db-logo strong { color: var(--red); }
.db-session-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600;
  padding: 4px 9px; border-radius: 5px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  margin-left: 6px;
}
.db-search {
  flex: 1;
  display: flex; align-items: center; gap: 7px;
  padding: 5px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  font-size: 10.5px;
  color: #94a3b8;
  min-width: 0;
}
.db-search svg          { color: #94a3b8; flex-shrink: 0; }
.db-search-text         { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.db-kbd {
  font-size: 9px; font-weight: 700;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  padding: 1px 5px;
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.db-notif {
  position: relative;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748b;
}
.db-notif-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 16px; height: 13px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 8px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
.db-avatar-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600;
  color: #1e293b;
}
.db-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate-blue), var(--slate-blue-deep));
  color: #fff;
  font-size: 9px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

.db-body {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 280px;
}
.db-sidebar {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 1px;
}
.db-nav {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 10px; font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}
.db-nav svg          { color: #94a3b8; flex-shrink: 0; }
.db-nav.active       { background: rgba(61,90,122,0.10); color: var(--slate-blue); }
.db-nav.active svg   { color: var(--slate-blue); }
.db-nav-new {
  font-size: 7.5px; font-weight: 800;
  background: #dcfce7; color: #15803d;
  padding: 1px 4px; border-radius: 3px;
  letter-spacing: 0.04em;
  margin-left: auto;
}

.db-main { padding: 12px; overflow: hidden; }
.db-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.db-stat-card {
  padding: 9px 11px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  position: relative;
}
.db-stat-label {
  font-size: 9px; font-weight: 700;
  color: #64748b;
  margin-bottom: 4px;
}
.db-stat-num {
  font-size: 18px; font-weight: 800;
  color: #1e293b;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.db-stat-sub {
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #94a3b8;
  margin-top: 4px;
}
.db-stat-icon {
  position: absolute; top: 8px; right: 9px;
  width: 18px; height: 18px;
  background: rgba(34,197,94,0.10);
  color: #15803d;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
}
.db-stat-icon.amber { background: rgba(245,158,11,0.10); color: #b45309; }
.db-stat-icon.slate { background: rgba(61,90,122,0.10); color: var(--slate-blue); }

.db-tracked {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}
.db-tracked-head {
  padding: 8px 11px;
  border-bottom: 1px solid #e2e8f0;
  display: flex; align-items: center; gap: 8px;
  background: #f8fafc;
}
.db-tracked-title {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700;
  color: #1e293b;
}
.db-tracked-title svg { color: var(--slate-blue); }
.db-tracked-new {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 8.5px; font-weight: 800;
  background: rgba(220,38,38,0.10);
  color: var(--red);
  padding: 2px 6px; border-radius: 3px;
  letter-spacing: 0.04em;
}
.db-tracked-sort {
  margin-left: auto;
  font-size: 9.5px; font-weight: 600;
  color: #64748b;
  padding: 3px 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}
.db-bill-row {
  padding: 7px 11px;
  border-bottom: 1px solid #f1f5f9;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 10px;
}
.db-bill-row:last-child { border-bottom: none; }
.db-bill-row.new        { border-left: 3px solid #22c55e; padding-left: 8px; }
.db-bill-id {
  font-size: 10.5px; font-weight: 700;
  color: var(--slate-blue);
  font-variant-numeric: tabular-nums;
}
.db-bill-author {
  color: #1e293b;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.db-bill-author strong { font-weight: 600; }
.db-bill-author small {
  display: block;
  font-size: 9px;
  color: #94a3b8;
  margin-top: 1px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.db-bill-pos {
  font-size: 8.5px; font-weight: 700;
  padding: 2px 7px; border-radius: 999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.db-bill-pos.support { background: rgba(34,197,94,0.15); color: #15803d; }
.db-bill-pos.oppose  { background: rgba(220,38,38,0.15); color: #b91c1c; }
.db-bill-pos.sponsor { background: rgba(61,90,122,0.15); color: var(--slate-blue); }
.db-bill-pos.watch   { background: rgba(245,158,11,0.15); color: #b45309; }

/* ════════════════════════════════════════════════════════
   FEATURED SECTION — "Open a bill" (#bill-page anchor)
   Same .pillar layout as numbered pillars, but the eyebrow is
   not a num-circle — it's a red live-dot pill so it reads as
   a featured moment, not a numbered step in the 7-pillar list.
   ════════════════════════════════════════════════════════ */
/* Pillar 4 (#bill-page) — stacks copy on top, full-width mock below.
   The mock needs both columns to keep its in-product sidebar on the
   right; stacking gives it the breathing room without forcing the
   internal 2-col body to collapse. */
#bill-page .pillar-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}
#bill-page .pillar-copy { max-width: 760px; }
#bill-page .pillar-visual { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   Bill Page mock — modelled on the real Analysis page (SB 904)
   Layout: utility strip → header → 2-col body (main + sticky side)
   ══════════════════════════════════════════════════════════════ */
.bp-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px -14px rgba(15,23,42,0.18);
  color: #1e293b;
  font-size: 11.5px;
  /* As small as the in-mock 2-col body can sustain before the sidebar
     wraps below — sidebar is 240px, main needs ~360px to read. */
  max-width: 720px;
  margin: 0 auto;
}

/* ── Top utility strip ── */
.bp-mock-utility {
  display: flex; align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  font-size: 12px;
}
.bp-mock-util-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.bp-mock-util-ico svg { width: 15px; height: 15px; }
.bp-mock-util-bookmark { color: #f59e0b; }
.bp-mock-util-reviewed { color: #cbd5e1; }
.bp-mock-util-bill {
  font-weight: 700;
  color: var(--slate-blue);
  font-size: 13px;
  letter-spacing: -0.005em;
  margin-left: 2px;
}
.bp-mock-util-sep-char { color: #cbd5e1; font-weight: 500; margin: 0 3px; }
.bp-mock-util-spacer { flex: 1; }
.bp-mock-util-nav { display: inline-flex; align-items: center; gap: 5px; }
.bp-mock-util-nav-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-blue);
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  padding: 4px 9px;
}
.bp-mock-util-nav-btn svg { width: 11px; height: 11px; flex-shrink: 0; }
.bp-mock-util-nav-pos {
  display: inline-flex; align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
  background: #f1f5f9;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 4px 10px;
}

/* ── Bill header ── */
.bp-mock-head {
  padding: 14px 20px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.bp-mock-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin: 0 0 6px 0;
}
.bp-mock-bill-num {
  color: #1e293b;
  font-weight: 700;
  margin-right: 4px;
}
.bp-mock-author-line {
  display: inline-flex; align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 6px;
}
.bp-mock-author-ico { width: 13px; height: 13px; color: #94a3b8; flex-shrink: 0; }
.bp-mock-status-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 10px;
}
.bp-mock-status-loc { color: #1e293b; font-weight: 500; }
.bp-mock-status-date {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.bp-mock-status-intro { color: #15803d; }
.bp-mock-status-amend { color: #b91c1c; }

/* Track + Position pills row */
.bp-mock-pills-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px;
}
/* Canonical RTG Track convention — fa-bullseye + pale-green pill */
.bp-mock-track-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0;
  background: #f0faf0;
  color: #2d6a4f;
  border: 1px solid #c8e6d0;
  padding: 3px 10px 3px 9px;
  border-radius: 5px;
}
.bp-mock-track-pill svg { width: 12px; height: 12px; }
.bp-mock-pos-pill {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  background: #15803d;
  color: #fff;
  padding: 3px 11px;
  border-radius: 5px;
  text-transform: uppercase;
}
.bp-mock-pos-sponsor {
  background: var(--red);
  color: #fff;
}
.bp-mock-pills-meta {
  margin-left: 4px;
  font-size: 11px;
  color: #64748b;
}
.bp-mock-pills-review {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px;
  color: #b91c1c;
  font-weight: 500;
}
.bp-mock-pills-review svg { width: 11px; height: 11px; flex-shrink: 0; }

/* ── 2-col body: main content + right sidebar (Bill Pages nav).
   Keeps the in-product layout intact at the constrained 720px width. ── */
.bp-mock-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  padding: 14px;
  background: var(--bg-soft);
}
.bp-mock-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px 18px;
  min-width: 0;
}

/* ── Analysis ribbon — committee analyses as boxed cards ── */
.bp-mock-ribbon {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.bp-mock-ribbon::-webkit-scrollbar { display: none; }
.bp-mock-ribbon-card {
  display: flex; flex-direction: column;
  gap: 3px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px 7px;
  min-width: 100px;
  flex-shrink: 0;
}
.bp-mock-ribbon-card.active {
  border-color: var(--slate-blue);
  box-shadow: 0 0 0 1px var(--slate-blue);
}
.bp-mock-rc-name {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e293b;
}
.bp-mock-rc-date {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: -0.005em;
}
.bp-mock-rc-counts {
  display: inline-flex; align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.bp-mock-rc-sup { color: #15803d; }
.bp-mock-rc-opp { color: #b91c1c; }
.bp-mock-rc-neu { color: #92400e; }
.bp-mock-rc-sep { color: #cbd5e1; font-weight: 400; }

/* ── Selected analysis header ── */
.bp-mock-prov-head {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}
.bp-mock-prov-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-blue);
}
.bp-mock-prov-date {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #94a3b8;
}
.bp-mock-prov-sub {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

/* ── Provider sub-tabs (Summary / Support / Oppose / Neutral / Full Text) ── */
.bp-mock-prov-tabs {
  display: flex; flex-wrap: wrap;
  gap: 2px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
}
.bp-mock-prov-tab {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  padding: 8px 10px 9px;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.bp-mock-prov-tab svg { width: 12px; height: 12px; flex-shrink: 0; }
.bp-mock-prov-tab.active {
  color: var(--slate-blue);
  border-bottom-color: var(--slate-blue);
  font-weight: 700;
}
.bp-mock-thumb-up { color: #15803d; }
.bp-mock-thumb-down { color: #b91c1c; }
.bp-mock-prov-count {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  padding: 1px 6px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #64748b;
}
.bp-mock-prov-count-sup { background: #dcfce7; color: #15803d; }
.bp-mock-prov-count-opp { background: #fee2e2; color: #b91c1c; }
.bp-mock-prov-count-neu { background: #fef3c7; color: #92400e; }

/* ── Summary content — direct H5 headings, no eyebrow ── */
.bp-mock-content { padding-top: 2px; }
.bp-mock-h {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
  letter-spacing: -0.005em;
}
.bp-mock-h + .bp-mock-p { margin-top: 0; }
.bp-mock-content .bp-mock-h:not(:first-child) { margin-top: 16px; }
.bp-mock-p {
  font-size: 12px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}
.bp-mock-p-muted { color: #94a3b8; font-style: italic; }

/* ── Sticky sidebar cards (right column) ── */
.bp-mock-side {
  display: flex; flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.bp-mock-side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px 12px;
}
.bp-mock-side-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #94a3b8;
  padding-bottom: 6px;
  margin-bottom: 4px;
  border-bottom: 1px solid #f1f5f9;
}
.bp-mock-side-sublabel {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 8px 0 4px;
}
.bp-mock-side-link {
  display: flex; align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 500;
  color: #475569;
  padding: 4px 0;
  letter-spacing: -0.005em;
}
.bp-mock-side-link svg {
  width: 13px; height: 13px;
  color: #94a3b8;
  flex-shrink: 0;
}
.bp-mock-side-link.active {
  color: var(--slate-blue);
  font-weight: 700;
}
.bp-mock-side-link.active svg { color: var(--slate-blue); }

/* Positions sub-section links — colored thumb icons + count chip on the right */
.bp-mock-side-pos { justify-content: flex-start; }
.bp-mock-side-pos svg { color: inherit; }
.bp-mock-side-pos .bp-mock-thumb-up { color: #15803d; }
.bp-mock-side-pos .bp-mock-thumb-down { color: #b91c1c; }
.bp-mock-side-count {
  margin-left: auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  padding: 1px 6px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #64748b;
}
.bp-mock-side-count-sup { background: #dcfce7; color: #15803d; }
.bp-mock-side-count-opp { background: #fee2e2; color: #b91c1c; }
.bp-mock-side-count-neu { background: #fef3c7; color: #92400e; }

/* ── Below the 2-col threshold, sidebar drops under main as a 3-up
   row, then collapses to a column at very narrow widths. ── */
@media (max-width: 620px) {
  .bp-mock-body { grid-template-columns: 1fr; }
  .bp-mock-side { flex-direction: row; flex-wrap: wrap; }
  .bp-mock-side > .bp-mock-side-card { flex: 1 1 180px; min-width: 0; }
}
@media (max-width: 460px) {
  .bp-mock-side { flex-direction: column; }
  .bp-mock-side > .bp-mock-side-card { flex: 1 1 auto; }
}
@media (max-width: 600px) {
  .bp-mock-utility { padding: 8px 12px; font-size: 11px; gap: 6px; }
  .bp-mock-util-bill { font-size: 12px; }
  .bp-mock-util-nav-btn span { display: none; }
  .bp-mock-head { padding: 12px 14px; }
  .bp-mock-title { font-size: 14px; }
  .bp-mock-main { padding: 12px 14px 14px; }
  .bp-mock-prov-tab { font-size: 10.5px; padding: 7px 7px 8px; gap: 4px; }
  .bp-mock-ribbon-card { min-width: 90px; padding: 7px 10px 6px; }
}


/* ── Live Activity (Pillar 2) ─────────────── */
.lv-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px -10px rgba(15,23,42,0.15);
  color: #1e293b;
  font-size: 12px;
}
.lv-mock-toolbar {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 8px;
  padding: 11px 16px;
  background: rgba(61,90,122,0.04);
  border-bottom: 1px solid #e2e8f0;
}
.lv-filter-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: 999px;
  background: #fff; border: 1px solid #e2e8f0;
  color: #64748b;
  white-space: nowrap;
}
.lv-filter-chip.active {
  color: var(--slate-blue);
  border-color: rgba(61,90,122,0.30);
  background: rgba(61,90,122,0.08);
}
.lv-view-report {
  margin-left: auto;
  font-size: 11px; font-weight: 600;
  color: var(--slate-blue);
  border: 1px solid rgba(61,90,122,0.30);
  padding: 4px 11px; border-radius: 6px;
  background: #fff;
}
.lv-snapshot {
  padding: 13px 16px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.lv-snapshot-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 7px;
}
.lv-snapshot-stats {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 18px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.lv-stat strong {
  font-size: 16px; font-weight: 700;
  color: #1e293b;
  margin-right: 4px;
}
.lv-stat           { color: #64748b; }
.lv-stat-sep       { width: 1px; height: 16px; background: #e2e8f0; }
.lv-stat.warn strong { color: #b91c1c; }
.lv-stat.pass strong { color: #15803d; }
.lv-stat.fail strong { color: #94a3b8; }
.lv-mock-thead, .lv-mock-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1.2fr) 100px 32px 32px 32px auto;
  gap: 10px;
  padding: 8px 16px;
  align-items: center;
}
.lv-mock-thead {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate-blue);
}
.lv-mock-row {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  font-size: 12px;
}
.lv-mock-row:last-child { border-bottom: none; }
/* Narrow-viewport: drop the date column so the author column has room. */
@media (max-width: 720px) {
  .lv-mock-thead,
  .lv-mock-row {
    grid-template-columns: 56px minmax(0, 1fr) 26px 26px 26px auto !important;
    gap: 8px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .lv-mock-thead > span:nth-child(3),
  .lv-date           { display: none !important; }
  .lv-author small   { display: none; }
}
.lv-bill {
  font-weight: 700; color: var(--slate-blue);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lv-author       { color: #1e293b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lv-author small { display: block; font-size: 10px; color: #94a3b8; margin-top: 1px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lv-date         { font-size: 10.5px; color: #64748b; font-variant-numeric: tabular-nums; white-space: nowrap; }
.lv-y, .lv-n, .lv-nv { text-align: center; font-variant-numeric: tabular-nums; font-weight: 600; }
.lv-y  { color: #15803d; }
.lv-n  { color: #b91c1c; }
.lv-nv { color: #94a3b8; }
.lv-h-y, .lv-h-n, .lv-h-nv { text-align: center; }
.lv-h-outcome, .lv-outcome { text-align: right; }
.lv-outcome-pill {
  display: inline-block;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 4px;
}
.lv-outcome-pill.pass { background: rgba(34,197,94,0.18); color: #15803d; }

/* ── Ctrl+K palette mock (Pillar 3) ─ "the fast way"
   Floating bill-search palette with inline bookmark/track actions.
   Anchored as #search-palette so Ctrl+K mentions site-wide can link here. */
.kp-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px -14px rgba(15,23,42,0.22);
  color: #1e293b;
  font-size: 13px;
  margin-bottom: 24px;
}

/* Header: search input + ESC pill */
.kp-mock-head {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #e2e8f0;
}
.kp-mock-search-icon {
  color: #94a3b8;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.kp-mock-search-icon svg { width: 18px; height: 18px; }
.kp-mock-query {
  font-size: 15px;
  color: #1e293b;
  display: inline-flex;
  align-items: baseline;
}
.kp-mock-caret {
  display: inline-block;
  width: 1.5px; height: 14px;
  background: var(--slate-blue);
  margin-left: 2px;
  animation: kp-caret 1s steps(2) infinite;
}
@keyframes kp-caret { 50% { opacity: 0; } }
.kp-mock-esc {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}

/* Filter chips (session-year scope) */
.kp-mock-chips {
  display: flex;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid #e2e8f0;
}
.kp-mock-chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 5px 14px;
}
.kp-mock-chip.active {
  background: var(--slate-blue);
  border-color: var(--slate-blue);
  color: #fff;
  font-weight: 600;
}

/* Section label */
.kp-mock-section {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
  padding: 12px 18px 6px;
}

/* Results list */
.kp-mock-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kp-mock-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid #f1f5f9;
}
.kp-mock-row:last-child { border-bottom: none; }
.kp-mock-row.selected {
  background: #f1f5f9;
}
.kp-mock-row-main { min-width: 0; }
.kp-mock-row-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}
.kp-mock-bill-num { color: var(--slate-blue); }
.kp-mock-sep     { color: #cbd5e1; }
.kp-mock-author  { color: #94a3b8; font-weight: 500; }
.kp-mock-row-title {
  font-size: 13px;
  color: #1e293b;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kp-mock-row-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #475569;
  white-space: nowrap;
}
.kp-mock-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* Per-row action cluster: bookmark, track, popout, arrow */
.kp-mock-row-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kp-act {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #94a3b8;
  cursor: default;
}
.kp-act svg { width: 14px; height: 14px; }

/* Bookmark filled state — yellow */
.kp-act.kp-act-bookmarked {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #b45309;
}

/* Tracked state — green check pill */
.kp-act.kp-act-tracked {
  background: #dcfce7;
  border-color: #86efac;
  color: #15803d;
}

/* Active arrow on selected row — dark / inverted */
.kp-act.kp-act-arrow {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Footer keyboard hints */
.kp-mock-footer {
  display: flex;
  gap: 18px;
  padding: 9px 18px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  font-size: 11px;
  color: #64748b;
}
.kp-mock-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kp-mock-shortcut kbd {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  padding: 1px 5px;
  letter-spacing: 0.04em;
}

/* Mobile: tighten row layout, drop the status column to its own line */
@media (max-width: 720px) {
  .kp-mock-row {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
  }
  .kp-mock-row-status {
    grid-column: 1 / -1;
    font-size: 11px;
  }
  .kp-mock-row-actions { gap: 4px; }
  .kp-act { width: 26px; height: 26px; }
}


/* ── BillSearchHub track row (Pillar 3) ─────────────── */
.bsh-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px -10px rgba(15,23,42,0.15);
}
.bsh-mock-head {
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--slate-blue-soft) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.bsh-mock-eyebrow {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-blue);
  background: rgba(61,90,122,0.10);
  padding: 3px 8px; border-radius: 3px;
  margin-bottom: 6px;
}
.bsh-mock-title {
  font-size: 14px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.bsh-row {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line-soft);
}
.bsh-row:last-child { border-bottom: none; }
.bsh-row-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.bsh-bill-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; font-weight: 700;
  color: var(--slate-blue-deep);
  background: var(--slate-blue-soft);
  padding: 3px 9px; border-radius: 4px;
  flex-shrink: 0;
}
.bsh-author {
  flex: 1;
  font-size: 12px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bsh-track-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: 6px;
  border: 1px solid #15803d;
  color: #15803d;
  background: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}
.bsh-track-btn.tracked {
  background: #16a34a; color: #fff; border-color: #16a34a;
}
.bsh-track-btn .check { font-size: 11px; font-weight: 900; }
.bsh-track-btn .bullseye-mini {
  width: 10px; height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative; display: inline-block;
}
.bsh-track-btn .bullseye-mini::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 3.5px; height: 3.5px;
  background: currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.bsh-title {
  font-size: 13px; color: var(--ink);
  margin-bottom: 8px; font-weight: 500;
  line-height: 1.35;
}
.bsh-summary {
  background: var(--slate-blue-wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 12px; color: var(--body);
  line-height: 1.55;
}
.bsh-summary-label {
  display: block;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.bsh-location {
  font-size: 11px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.bsh-pin { color: #94a3b8; flex-shrink: 0; }

/* ── Position Matrix (Pillar 4) ─────────────── */
.pm-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px -10px rgba(15,23,42,0.15);
  color: #1e293b;
  font-size: 12px;
}
.pm-mock-head {
  padding: 14px 18px 10px;
  border-bottom: 1px solid #e2e8f0;
}
.pm-mock-title {
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--slate-blue);
  margin-bottom: 3px;
}
.pm-mock-sub { font-size: 11.5px; color: #64748b; }
.pm-mock-legend {
  display: flex; flex-wrap: wrap; gap: 5px 10px;
  padding: 10px 18px;
  background: rgba(61,90,122,0.04);
  border-bottom: 1px solid #e2e8f0;
  font-size: 11px; color: #64748b;
}
.pm-mock-legend-item {
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.pm-mock-chips {
  padding: 11px 18px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
}
.pm-mock-chip {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3px;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #64748b;
  padding: 4px 10px;
  text-transform: uppercase;
}
.pm-mock-chip.active {
  background: rgba(61,90,122,0.10);
  border-color: rgba(61,90,122,0.25);
  color: var(--slate-blue);
}
.pm-mock-chip-num { margin-left: 4px; opacity: 0.85; }
.pm-mock-chip.switched-chip {
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.40);
  color: #b45309;
}
.pm-mock-resultshead {
  padding: 8px 18px;
  font-size: 11px; font-weight: 600;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.pm-mock-resultshead strong { color: #1e293b; }
.pm-mock-tablehead, .pm-mock-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px 88px;
  gap: 10px;
  align-items: center;
  padding: 10px 18px;
}
.pm-mock-tablehead {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate-blue);
  padding: 9px 18px;
}
.pm-mock-tablehead-event { text-align: center; }
.pm-event-date {
  color: #94a3b8;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 2px;
}
.pm-mock-row {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}
.pm-mock-row:last-child { border-bottom: none; }
.pm-mock-row.switched { background: rgba(245,158,11,0.04); }
.pm-org {
  font-size: 12.5px; font-weight: 600;
  color: #1e293b;
  display: flex; align-items: center; gap: 7px;
  min-width: 0;
}
.pm-org-name {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pm-switched-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 8.5px; font-weight: 800;
  background: rgba(245,158,11,0.15);
  color: #b45309;
  border: 1px solid rgba(245,158,11,0.40);
  padding: 1px 6px; border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.pm-event-cell { text-align: center; }
.pm-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 24px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  border: 1px solid transparent;
}
.pm-pill.s   { background: rgba(34,197,94,0.20);  color: #15803d; border-color: rgba(34,197,94,0.40); }
.pm-pill.o   { background: rgba(239,68,68,0.18);  color: #b91c1c; border-color: rgba(239,68,68,0.40); }
.pm-pill.n   { background: rgba(148,163,184,0.20);color: #475569; border-color: rgba(148,163,184,0.40); }
.pm-pill.sia { background: rgba(132,204,22,0.20); color: #3f6212; border-color: rgba(132,204,22,0.40); }
.pm-pill.oua { background: rgba(245,158,11,0.20); color: #b45309; border-color: rgba(245,158,11,0.40); }
.pm-pill-dash {
  display: inline-block;
  color: #cbd5e1;
  font-size: 14px; font-weight: 600;
}

/* ── Lobbyist Search (Lobbyist section) — dark-bg friendly ─── */
.ls-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px -10px rgba(15,23,42,0.15);
  color: #1e293b;
  font-size: 13px;
}
.ls-mock-title {
  padding: 18px 22px 10px;
  font-size: 20px; font-weight: 500;
  color: #1e293b;
  letter-spacing: -0.3px;
}
.ls-mock-tabs {
  display: flex; gap: 0;
  padding: 0 8px;
  background: rgba(61,90,122,0.04);
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ls-mock-tabs::-webkit-scrollbar { display: none; height: 0; }
.ls-mock-tab {
  background: transparent; border: none;
  padding: 10px 9px 9px;
  font-size: 11.5px; font-weight: 600;
  color: #64748b;
  letter-spacing: 0.1px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
  cursor: pointer;
}
.ls-mock-tab.active {
  color: var(--slate-blue);
  border-bottom-color: var(--slate-blue);
}
.ls-tab-count {
  font-size: 9.5px; font-weight: 700;
  background: rgba(61,90,122,0.10);
  color: var(--slate-blue);
  padding: 1px 6px; border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.ls-mock-tab.active .ls-tab-count { background: var(--slate-blue); color: #fff; }
.ls-mock-toolbar {
  padding: 11px 22px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.ls-mock-searchbox {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  color: #1e293b;
  font-size: 13px;
}
.ls-mock-searchbox svg { color: #94a3b8; flex-shrink: 0; }
.ls-mock-searchbox-text { font-weight: 500; }
.ls-mock-caret {
  display: inline-block; width: 1.5px; height: 14px;
  background: var(--slate-blue);
  margin-left: 1px;
  animation: ls-caret 1s steps(2) infinite;
}
@keyframes ls-caret { 50% { opacity: 0; } }
.ls-mock-row {
  padding: 12px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}
.ls-mock-row:last-child   { border-bottom: none; }
.ls-mock-row-main         { min-width: 0; }
.ls-mock-row-title {
  font-size: 13.5px; font-weight: 600;
  color: #1e293b;
  margin-bottom: 3px;
  line-height: 1.35;
}
.ls-mock-row-meta {
  font-size: 11px; color: #64748b;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ls-type-pill {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 5px; vertical-align: 1px;
}
.ls-type-pill.lobbyist { background: rgba(37,99,235,0.10);  color: #2563eb; }
.ls-type-pill.firm     { background: rgba(249,115,22,0.10); color: #ea580c; }
.ls-type-pill.employer { background: rgba(79,70,229,0.10);  color: #4f46e5; }
.ls-type-pill.spender  { background: rgba(245,158,11,0.12); color: #b45309; }
.ls-status-pill {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-right: 5px; vertical-align: 1px;
  color: #15803d;
  background: rgba(22,163,74,0.12);
}
.ls-mock-stats {
  display: flex; gap: 18px; align-items: center;
  flex-shrink: 0;
}
.ls-mock-stat { text-align: center; min-width: 58px; }
.ls-mock-stat-num {
  font-size: 15px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
  line-height: 1;
  color: #1e293b;
}
.ls-mock-stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

/* Back-to-top — product page adds focus + reduced-motion variants */
.back-to-top:focus-visible {
  outline: 2px solid var(--slate-blue);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top              { transition: opacity 0.15s ease; transform: none; }
  .back-to-top.is-visible   { transform: none; }
  .back-to-top:hover        { transform: none; }
}

/* ═══════════════════════════════════════════════════════
   V2 POLISH PASS — editorial pillar mastheads
   ═══════════════════════════════════════════════════════ */

/* Editorial pillar masthead — replaces the circle-numbered chip.
   Spans full pillar-copy width with rule lines above/below + mono §-num. */
.pillar-num {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 22px !important;
  align-items: baseline;
  padding: 14px 0 14px !important;
  margin: 0 0 28px !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
}
.pillar-num .num-circle {
  background: transparent !important;
  color: var(--slate-blue) !important;
  width: auto !important; height: auto !important;
  border-radius: 0 !important;
  font-family: var(--mono) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  line-height: 1;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.pillar-num .num-circle::before {
  content: '§\00a0';
  color: var(--slate-blue);
  font-weight: 500;
}
@media (max-width: 720px) {
  .pillar-num {
    gap: 14px !important;
    padding: 10px 0 !important;
    margin-bottom: 22px !important;
  }
  .pillar-num,
  .pillar-num .num-circle {
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
  }
}


/* ══════════════════════════════════════════════════════════════
   Reports list mock (Pillar 5 — Reports & Publishing)
   Modelled on the real RTG Reports page: drag-to-reorder + click-
   icon-to-categorize + AUTO publishing + STALE/NEVER RUN flags.
   ══════════════════════════════════════════════════════════════ */
.rp-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px -14px rgba(15,23,42,0.18);
  color: #1e293b;
  font-size: 12px;
}

/* ── Header ── */
.rp-mock-head {
  display: flex; align-items: flex-start;
  gap: 14px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.rp-mock-head-main { flex: 1; min-width: 0; }
.rp-mock-title {
  display: inline-flex; align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin: 0 0 3px 0;
}
.rp-mock-title-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  color: var(--slate-blue);
}
.rp-mock-title-ico svg { width: 17px; height: 17px; }
.rp-mock-sub {
  font-size: 10.5px;
  color: #64748b;
  display: flex; align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.rp-mock-drag-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 11px; height: 11px;
  color: #94a3b8;
  vertical-align: middle;
}
.rp-mock-drag-ico svg { width: 11px; height: 11px; }
.rp-mock-head-actions {
  display: inline-flex; align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.rp-mock-btn-help {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500;
  color: #1e293b;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 4px 10px;
}
.rp-mock-btn-help svg { width: 11px; height: 11px; color: #64748b; }
.rp-mock-btn-new {
  font-size: 11px; font-weight: 600;
  color: #fff;
  background: var(--slate-blue);
  border-radius: 5px;
  padding: 5px 12px;
}

/* ── Filter bar ── */
.rp-mock-filters {
  background: var(--bg-soft);
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 16px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.rp-mock-filters-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px;
}
.rp-mock-filters-row-sub { gap: 6px; }
.rp-mock-search {
  display: inline-flex; align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #94a3b8;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 5px 12px;
  flex: 1; min-width: 140px; max-width: 240px;
}
.rp-mock-search svg { width: 11px; height: 11px; flex-shrink: 0; }
.rp-mock-search-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rp-mock-folder-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #64748b;
}
.rp-mock-folder-select {
  display: inline-flex; align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #1e293b;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  padding: 3px 8px;
}
.rp-mock-folder-select svg { width: 10px; height: 10px; color: #94a3b8; }
.rp-mock-folder-link {
  font-size: 10.5px;
  color: #475569;
  margin-right: 4px;
}
.rp-mock-pill-toggle {
  display: inline-flex; align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #475569;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 4px 10px;
}
.rp-mock-pill-toggle svg { width: 11px; height: 11px; }
.rp-mock-pill-toggle.rp-mock-pill-on {
  color: #fff;
  background: #1e293b;
  border-color: #1e293b;
}

/* ── Rows ── */
.rp-mock-rows {
  display: flex; flex-direction: column;
  background: #fff;
}
.rp-mock-row {
  display: flex; align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #f1f5f9;
}
.rp-mock-row:last-child { border-bottom: none; }
.rp-mock-check {
  width: 14px; height: 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 3px;
  flex-shrink: 0;
}
.rp-mock-drag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 16px;
  color: #cbd5e1;
  flex-shrink: 0;
  cursor: grab;
}
.rp-mock-drag svg { width: 14px; height: 14px; }
.rp-mock-cat {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 7px;
  flex-shrink: 0;
}
.rp-mock-cat svg { width: 17px; height: 17px; }
.rp-mock-cat-slate { background: rgba(45,90,135,0.10); color: var(--slate-blue); }
.rp-mock-cat-green { background: #dcfce7; color: #15803d; }
.rp-mock-cat-amber { background: #fef3c7; color: #b45309; }
.rp-mock-cat-red   { background: #fee2e2; color: #b91c1c; }
.rp-mock-row-main {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  gap: 3px;
}
.rp-mock-row-title {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.rp-mock-row-sub {
  font-size: 10.5px;
  color: #64748b;
}
.rp-mock-row-sub em { font-style: italic; color: #94a3b8; }
.rp-mock-row-sub-stale strong { color: #b91c1c; font-weight: 600; }

/* Category tags (pin/portal/private/live) */
.rp-mock-tag {
  display: inline-flex; align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
}
.rp-mock-tag svg { width: 10px; height: 10px; flex-shrink: 0; }
.rp-mock-tag-team    { background: rgba(220,38,38,0.10); color: var(--red); }
.rp-mock-tag-my      { background: rgba(45,90,135,0.10); color: var(--slate-blue); }
.rp-mock-tag-private { background: #f1f5f9; color: #64748b; }
.rp-mock-tag-portal  { background: rgba(45,90,135,0.10); color: var(--slate-blue); }
.rp-mock-tag-live    { background: #dcfce7; color: #15803d; padding: 2px 10px; }

/* Row actions */
.rp-mock-row-actions {
  display: inline-flex; align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.rp-mock-auto {
  display: inline-flex; align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #475569;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  padding: 4px 9px;
}
.rp-mock-auto svg { width: 11px; height: 11px; }
.rp-mock-auto-on {
  color: #15803d;
  background: #f0faf0;
  border-color: #c8e6d0;
}
.rp-mock-act {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  color: #94a3b8;
  border-radius: 5px;
}
.rp-mock-act svg { width: 13px; height: 13px; }
.rp-mock-act-chev svg { width: 12px; height: 12px; }

/* ── Mobile ── */
@media (max-width: 720px) {
  .rp-mock-head { padding: 12px 14px 10px; flex-direction: column; gap: 8px; }
  .rp-mock-head-actions { align-self: flex-start; }
  .rp-mock-filters { padding: 8px 12px; }
  .rp-mock-row { padding: 10px 12px; gap: 8px; }
  .rp-mock-cat { width: 28px; height: 28px; }
  .rp-mock-cat svg { width: 14px; height: 14px; }
  .rp-mock-row-actions { gap: 4px; }
  .rp-mock-act { width: 20px; height: 20px; }
}


/* ══════════════════════════════════════════════════════════════
   Organizational Directory mock (Pillar 8)
   Lifted from homepage's .org-directory section; uses a light
   container background here (no dark stripe) so it slots into
   the standard pillar-grid layout.
   ══════════════════════════════════════════════════════════════ */
.od-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px -14px rgba(15,23,42,0.18);
  color: #1e293b;
  font-size: 12px;
}
.od-mock-head {
  padding: 16px 20px 14px;
  border-bottom: 1px solid #e2e8f0;
}
.od-mock-breadcrumb {
  font-size: 10.5px;
  color: #94a3b8;
  margin-bottom: 8px;
}
.od-mock-breadcrumb .crumb-link    { color: var(--slate-blue); font-weight: 600; }
.od-mock-breadcrumb .crumb-sep     { margin: 0 5px; color: #cbd5e1; }
.od-mock-breadcrumb .crumb-current { color: #1e293b; font-weight: 600; }
.od-mock-org-name {
  font-size: 18px; font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}
.od-mock-org-sub { font-size: 11px; color: #64748b; }

.od-mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid #e2e8f0;
}
.od-stat {
  padding: 11px 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.od-stat-num {
  font-size: 22px; font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.od-stat-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #64748b;
}
.od-stat.support              { background: rgba(34,197,94,0.08);  border-color: rgba(34,197,94,0.30); }
.od-stat.support .od-stat-num { color: #15803d; }
.od-stat.oppose               { background: rgba(220,38,38,0.07);  border-color: rgba(220,38,38,0.28); }
.od-stat.oppose .od-stat-num  { color: #b91c1c; }
.od-stat.switched             { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.30); }
.od-stat.switched .od-stat-num{ color: #b45309; }
.od-stat.moving               { background: rgba(61,90,122,0.06);  border-color: rgba(61,90,122,0.25); }
.od-stat.moving .od-stat-num  { color: var(--slate-blue); }

.od-mock-tabs {
  display: flex;
  padding: 0 12px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto;
  scrollbar-width: none;
}
.od-mock-tabs::-webkit-scrollbar { display: none; }
.od-tab {
  padding: 9px 10px 8px;
  font-size: 11px; font-weight: 600;
  color: #64748b;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.od-tab.active {
  color: var(--slate-blue);
  border-bottom-color: var(--slate-blue);
}
.od-tab-count {
  font-size: 9px; font-weight: 700;
  background: rgba(61,90,122,0.10);
  color: var(--slate-blue);
  padding: 1px 6px; border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.od-tab.active .od-tab-count { background: var(--slate-blue); color: #fff; }

.od-mock-rows-head {
  padding: 9px 20px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex; justify-content: space-between; align-items: center;
}
.od-mock-rows-head-range {
  font-size: 10px; font-weight: 600;
  color: #94a3b8;
  text-transform: none;
  letter-spacing: 0;
}
.od-bill-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 20px;
  border-bottom: 1px solid #f1f5f9;
}
.od-bill-row:last-child { border-bottom: none; }
.od-bill-id {
  font-size: 11.5px; font-weight: 700;
  color: var(--slate-blue);
  font-variant-numeric: tabular-nums;
}
.od-bill-info { min-width: 0; }
.od-bill-title {
  font-size: 12px; font-weight: 500;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 3px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.od-bill-meta {
  font-size: 10.5px;
  color: #64748b;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.od-bill-meta::before {
  content: '\2022';
  color: #22c55e;
  margin-right: 5px;
}
.od-bill-pos {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: 6px;
  border: 1px solid transparent;
  white-space: nowrap;
  text-transform: uppercase;
}
.od-bill-pos.oppose {
  background: rgba(220,38,38,0.10);
  border-color: rgba(220,38,38,0.30);
  color: #b91c1c;
}
.od-bill-pos.support {
  background: rgba(34,197,94,0.10);
  border-color: rgba(34,197,94,0.30);
  color: #15803d;
}
.od-bill-pos.abstain {
  color: #475569;
  font-weight: 600;
  border: none;
  padding: 3px 0;
}
.od-bill-pos.abstain::before {
  content: '\003D';
  margin-right: 4px;
  color: #94a3b8;
}
