/* Design system: tokens extracted from the Agenio template via computed
   styles. Light-only by deliberate choice — the design commits to a single
   light look.

   This repo has no build step, so the Tailwind-style utility classes the
   templates use inline (max-w-6xl, flex, grid-cols-4, text-sm, ...) are
   hand-written in the utility layer below rather than generated. */

:root {
  --canvas: #f3f4f6;
  --card: #ffffff;
  --ink: #030712;
  --muted: #6b7280;
  --line: #e5e7eb;

  /* Neon lime — the template's signature accent, used SPARINGLY: announcement
     bar, micro-labels on dark, dot grids, qualified-badge tint. Raw lime text
     is only legible on dark surfaces; --signal is the on-light equivalent. */
  --lime: #98ff03;
  --lime-soft: rgba(152, 255, 3, 0.15);
  --signal: #3f6212;

  --on-dark-muted: rgba(249, 250, 251, 0.64);
  --on-dark-line: rgba(255, 255, 255, 0.14);
  --on-dark-card: rgba(255, 255, 255, 0.08);

  --outcome-qualified-fg: #1a2e05;
  --outcome-qualified-bg: rgba(152, 255, 3, 0.35);
  --outcome-insufficient-fg: #92400e;
  --outcome-insufficient-bg: #fef3c7;
  --outcome-disqualified-fg: #991b1b;
  --outcome-disqualified-bg: #fee2e2;
  --outcome-duplicate-fg: #1e40af;
  --outcome-duplicate-bg: #dbeafe;

  --font-display: "Space Grotesk", ui-monospace, monospace;
  --font-sans: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  border-color: var(--line);
  box-sizing: border-box;
}

html,
body {
  background: var(--canvas);
  color: var(--ink);
  margin: 0;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Tailwind-preflight equivalents the page markup assumes: no link
   underlines, zeroed heading/paragraph/list margins, unstyled buttons. */
a {
  color: inherit;
  text-decoration: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
dl,
dt,
dd {
  margin: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  background-image: none;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding: 0;
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

/* ============================================================
   Utility layer — the Tailwind-style classes the templates use inline,
   hand-written because there is no build step. Named after their Tailwind
   equivalents. Placed BEFORE the component classes below so component rules
   like .heading-2/.ghost-num/.stat-num win ties.
   ============================================================ */

.container-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; width: 100%; }
.container-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; width: 100%; }
.container-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; width: 100%; }
.container-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; width: 100%; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.self-start { align-self: flex-start; }

.gap-1 { gap: 0.25rem; } .gap-1_5 { gap: 0.375rem; } .gap-2 { gap: 0.5rem; } .gap-2_5 { gap: 0.625rem; }
.gap-x-8 { column-gap: 2rem; } .gap-y-1 { row-gap: 0.25rem; }
.gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-5 { gap: 1.25rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.p-2 { padding: 0.5rem; } .p-3 { padding: 0.75rem; } .p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; } .p-7 { padding: 1.75rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1_5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3_5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-2_5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-3 { padding-top: 0.75rem; } .pt-4 { padding-top: 1rem; } .pt-5 { padding-top: 1.25rem; } .pt-6 { padding-top: 1.5rem; } .pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; } .pt-20 { padding-top: 5rem; }
.pb-6 { padding-bottom: 1.5rem; } .pb-10 { padding-bottom: 2.5rem; } .pb-12 { padding-bottom: 3rem; } .pb-14 { padding-bottom: 3.5rem; } .pb-16 { padding-bottom: 4rem; }

.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; } .mt-7 { margin-top: 1.75rem; } .mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; } .mt-14 { margin-top: 3.5rem; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-1_5 { margin-bottom: 0.375rem; } .mb-5 { margin-bottom: 1.25rem; } .mb-6 { margin-bottom: 1.5rem; }
.mt-1_5 { margin-top: 0.375rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-2 { margin-left: 0.5rem; } .ml-3 { margin-left: 0.75rem; }
.mr-2 { margin-right: 0.5rem; } .mr-3 { margin-right: 0.75rem; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top: 1px solid var(--line); }
.border-b { border-bottom: 1px solid var(--line); }
.border-y { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rounded-lg { border-radius: 10px; }
.rounded-xl { border-radius: 14px; }
.rounded-full { border-radius: 999px; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
/* Exact Tailwind type scale (size/line-height) so headings measure the same. */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.leading-relaxed { line-height: 1.65; }
.leading-snug { line-height: 1.35; }
.leading-tight { line-height: 1.15; }
.whitespace-pre-line { white-space: pre-line; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-none { list-style: none; }
.underline { text-decoration: underline; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.relative { position: relative; }
.hover-opacity:hover { opacity: 0.7; }

@media (min-width: 640px) {
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
  /* Arbitrary sizes used as text-[52px] etc. — like Tailwind, these set
     only font-size (line-height comes from heading-2's own 1). */
  .sm\:text-52 { font-size: 52px; }
  .sm\:text-56 { font-size: 56px; }
  .sm\:text-64 { font-size: 64px; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:pt-24 { padding-top: 6rem; }
  .sm\:pt-28 { padding-top: 7rem; }
  .sm\:pb-14 { padding-bottom: 3.5rem; }
  .sm\:pb-16 { padding-bottom: 4rem; }
  .sm\:pb-20 { padding-bottom: 5rem; }
  .sm\:pb-24 { padding-bottom: 6rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
}
@media (max-width: 639px) {
  .max-sm\:hidden { display: none; }
}


.font-display {
  font-family: var(--font-display);
}

/* Type scale measured off the live template:
   h1  SG  60/60  600  -0.06em  uppercase
   h2  URB 64/64  600  -0.03em
   body URB 16/24 500 · small URB 14/20 500 · buttons URB 14 600
   label SG 12/20 400 uppercase, NORMAL tracking
   numbering "//01" URB 18/28 500 */

.display-hero {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 1;
}

.heading-2 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25rem;
  text-transform: uppercase;
  letter-spacing: normal;
  color: var(--muted);
}
.label-lime {
  color: var(--lime);
}
.label-ink {
  color: var(--ink);
}

.numbering {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: var(--muted);
}

.stat-num {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.section-dark {
  background: var(--ink);
  color: #f9fafb;
}
.section-dark .text-muted {
  color: var(--on-dark-muted);
}
.section-dark .card {
  background: var(--on-dark-card);
  border-color: var(--on-dark-line);
}

.dot-grid {
  background-image: radial-gradient(var(--lime) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  border-radius: 999px;
  padding: 0.3em 0.85em;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.badge-outcome-qualified {
  color: var(--outcome-qualified-fg);
  background: var(--outcome-qualified-bg);
}
.badge-outcome-insufficient_evidence {
  color: var(--outcome-insufficient-fg);
  background: var(--outcome-insufficient-bg);
}
.badge-outcome-disqualified {
  color: var(--outcome-disqualified-fg);
  background: var(--outcome-disqualified-bg);
}
.badge-outcome-duplicate_or_merge_review {
  color: var(--outcome-duplicate-fg);
  background: var(--outcome-duplicate-bg);
}

button {
  font-family: inherit;
  cursor: pointer;
}

.btn-signal,
.btn-white,
.btn-outline,
.btn-ghost-dark,
.btn-dark-icon {
  border: none;
  font-family: var(--font-sans);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-signal {
  background: var(--ink);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.15s ease;
}
.btn-signal:hover {
  opacity: 0.85;
}
.btn-signal:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-white {
  background: #ffffff;
  color: var(--ink);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.15s ease;
}
.btn-white:hover {
  opacity: 0.88;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: border-color 0.15s ease;
}
.btn-outline:hover {
  border-color: var(--muted);
}
.btn-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-ghost-dark {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--on-dark-line);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: border-color 0.15s ease;
}
.btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-dark-icon {
  gap: 0.75rem;
  background: var(--ink);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
  transition: opacity 0.15s ease;
}
.btn-dark-icon:hover {
  opacity: 0.88;
}
.btn-dark-icon .icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-dark-icon:hover .icon-square {
  transform: translateX(3px);
}

.grid-responsive {
  display: grid;
  gap: 1rem;
}
@media (max-width: 720px) {
  .grid-responsive {
    grid-template-columns: 1fr !important;
  }
}

.text-muted {
  color: var(--muted);
}

/* ————— Agenio full-section port ————— */

.blueprint-grid {
  background-image:
    linear-gradient(to right, rgba(3, 7, 18, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(3, 7, 18, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
}

.pixel-block {
  position: absolute;
  background: var(--lime);
}

.chevron-pulse {
  display: inline-block;
  animation: chevron-pulse 1.6s ease-in-out infinite;
}
@keyframes chevron-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}

.header-card {
  background: #ffffff;
  border: 1px solid var(--line);
  position: relative;
}
.crop-mark {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.marquee {
  overflow: visible;
}
.marquee-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.stack-log {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.stack-log-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 12px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--canvas);
}
.stack-log-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-soft);
  flex-shrink: 0;
}

.outline-word {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(3, 7, 18, 0.35);
  white-space: nowrap;
}
.outline-word.filled {
  color: var(--ink);
  -webkit-text-stroke: 0;
}

.ghost-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  color: rgba(3, 7, 18, 0.08);
  letter-spacing: -0.04em;
}
.section-dark .ghost-num {
  color: rgba(255, 255, 255, 0.1);
}

.card-lift {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(3, 7, 18, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .card-lift,
  .btn-dark-icon .icon-square {
    transition: none;
  }
}

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.section-dark .compare-row {
  border-color: var(--on-dark-line);
}
.compare-row:last-child {
  border-bottom: 0;
}
.compare-mark {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.05rem;
}
.compare-mark.no {
  background: rgba(3, 7, 18, 0.08);
  color: var(--muted);
}
.compare-mark.yes {
  background: var(--lime);
  color: var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  font-weight: 600;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-body {
  padding-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 46rem;
  margin: 0;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
}

.slash-label::before {
  content: "/";
  color: var(--lime);
  margin-right: 0.25rem;
}

/* ————— Escalation strip ————— */

.escalation-ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin-inline: 0;
  margin-bottom: 0;
  padding: 0;
}
.escalation-step {
  position: relative;
  min-width: 0;
}
.escalation-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translate(50%, -50%);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--muted);
  pointer-events: none;
}

.escalation-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.escalation-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.escalation-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.escalation-card-current {
  background: var(--ink);
  color: #f9fafb;
  border-color: var(--ink);
  box-shadow: 0 0 0 1px rgba(152, 255, 3, 0.4);
}
.escalation-card-current.card-lift:hover {
  box-shadow: 0 16px 32px -16px rgba(3, 7, 18, 0.5), 0 0 0 1px rgba(152, 255, 3, 0.4);
}
.escalation-card-current .text-muted {
  color: var(--on-dark-muted);
}
.escalation-card-current .label {
  color: var(--on-dark-muted);
}
.escalation-card-current .escalation-index {
  color: var(--on-dark-muted);
}
.escalation-card-current .escalation-metric {
  border-color: var(--on-dark-line);
}

.escalation-index {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.escalation-meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.escalation-meter i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  font-style: normal;
}
.escalation-meter i.on {
  background: var(--nc);
}
.escalation-meter-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.escalation-meter-stake {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--nc);
}
.escalation-meter-count {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--muted);
}
.escalation-card-current .escalation-meter i {
  background: var(--on-dark-line);
}
.escalation-card-current .escalation-meter i.on {
  background: #fcd34d;
}
.escalation-card-current .escalation-meter-stake,
.escalation-card-current .escalation-meter-count {
  color: var(--on-dark-muted);
}

.escalation-badge {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
}

.escalation-metric {
  border-top: 1px solid var(--line);
}
.escalation-metric strong {
  font-weight: 600;
}

@media (max-width: 820px) {
  .escalation-ladder {
    grid-template-columns: 1fr;
  }
  .escalation-step:not(:last-child)::after {
    content: none;
  }
}
