:root {
  --background: #101116;
  --foreground: #f8f7ff;
  --foreground-strong: rgba(248, 247, 255, 0.94);
  --muted: rgba(248, 247, 255, 0.68);
  --muted-soft: rgba(248, 247, 255, 0.52);
  --primary: #ba63ef;
  --primary-soft: rgba(186, 99, 239, 0.12);
  --accent: #ff6a2f;
  --accent-soft: rgba(255, 106, 47, 0.12);
  --rose: #ff6c93;
  --rose-soft: rgba(255, 108, 147, 0.12);
  --ink-soft: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --panel: rgba(8, 9, 13, 0.62);
  --panel-strong: rgba(11, 12, 17, 0.86);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --surface-border: rgba(255, 255, 255, 0.06);
  --surface-border-strong: rgba(255, 255, 255, 0.09);
  --surface-highlight: rgba(255, 255, 255, 0.05);
  --cut: 18px;
  --cut-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--foreground);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(186, 99, 239, 0.08), transparent 24%),
    linear-gradient(180deg, #0d0f14 0%, #101116 48%, #0c0d11 100%);
  font-family: "Inter", "Segoe UI", sans-serif;
}

.brand-gradient-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #111217 0%,
    #111217 38%,
    #2e223f 50%,
    #8d53c6 67%,
    #ff6a2f 100%
  );
  opacity: 0.94;
}

.brand-gradient-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 48%,
    rgba(0, 0, 0, 0.12) 64%,
    rgba(0, 0, 0, 0.24) 82%,
    rgba(0, 0, 0, 0.34) 100%
  );
}

.brand-gradient-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.24) 0%,
    rgba(0, 0, 0, 0.08) 36%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1340px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.eyebrow,
.panel-kicker,
.mono-kicker,
.meta-label,
.stat-label,
.panel-note,
.brand-caption,
th {
  font-family: "IBM Plex Mono", monospace;
}

.hero,
.meta-card,
.stat-card,
.panel,
.stack-card,
.empty-state,
.table-shell {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero::after,
.meta-card::after,
.stat-card::after,
.panel::after,
.stack-card::after,
.empty-state::after,
.table-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 var(--surface-highlight),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.78fr);
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--surface-border-strong);
  background: linear-gradient(135deg, rgba(9, 10, 14, 0.76), rgba(9, 10, 14, 0.48));
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 30% 34%, rgba(186, 99, 239, 0.18), transparent 26%),
    radial-gradient(circle at 82% 68%, rgba(255, 106, 47, 0.12), transparent 24%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-copy,
.hero-meta,
.panel,
.stat-card {
  position: relative;
  z-index: 1;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: none;
  color: var(--accent);
  filter: drop-shadow(0 0 28px rgba(255, 106, 47, 0.38));
}

.brand-mark svg,
.brand-wordmark {
  display: block;
  width: 100%;
  height: auto;
}

.brand-type {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.brand-wordmark {
  width: min(156px, 100%);
  color: var(--foreground);
  opacity: 0.95;
}

.brand-caption {
  display: inline-block;
  color: var(--muted-soft);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 17, 22, 0.42);
  color: var(--foreground-strong);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(
    8px 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    8px 100%,
    0 calc(100% - 8px),
    0 8px
  );
}

.live-indicator {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.live-core,
.live-ring {
  position: absolute;
  border-radius: 999px;
}

.live-core {
  inset: 2px;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(186, 99, 239, 0.6);
  animation: live-dot-pulse 1.9s ease-in-out infinite;
}

.live-ring {
  inset: 0;
  border: 1px solid rgba(186, 99, 239, 0.42);
  animation: live-dot-ring 1.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero h1 {
  max-width: 13.5ch;
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.7rem, 5.7vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-link {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(10, 11, 15, 0.38);
  color: var(--foreground);
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 30px rgba(0, 0, 0, 0.16);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.hero-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 47, 0.3);
  background: rgba(255, 106, 47, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 34px rgba(0, 0, 0, 0.2);
}

.hero-link-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--foreground);
}

.hero-link-caption {
  color: var(--muted-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta {
  display: grid;
  gap: 14px;
  align-content: start;
}

.meta-card,
.stat-card,
.panel,
.stack-card,
.table-shell {
  background: var(--panel);
  border: 1px solid var(--surface-border);
}

.meta-card {
  padding: 18px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.015);
}

.meta-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  color: var(--foreground);
}

.meta-detail {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  word-break: break-word;
}

.status-live,
.status-stale {
  color: var(--foreground);
}

.status-live::before,
.status-stale::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 999px;
  vertical-align: middle;
}

.status-live::before {
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(186, 99, 239, 0.14);
}

.status-stale::before {
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(255, 108, 147, 0.12);
}

.stats-grid,
.grid {
  margin-top: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.015);
}

.stat-label {
  display: inline-block;
  font-size: 11px;
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-value {
  display: block;
  margin-top: 12px;
  color: var(--foreground);
  font-size: 1.72rem;
  line-height: 1;
}

.stat-detail {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.grid.two-col.tasks-layout {
  grid-template-columns: 1fr;
}

.grid.two-col.agents-layout {
  grid-template-columns: 1fr;
}

.panel {
  padding: 22px;
  background: var(--panel-strong);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.015);
}

.panel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-kicker {
  display: inline-block;
  color: var(--muted-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel h2 {
  margin: 4px 0 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.panel-note {
  color: var(--muted-soft);
  font-size: 12px;
}

.stack-list,
.event-list {
  display: grid;
  gap: 12px;
}

.empty-state {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.015);
}

.stack-card {
  padding: 20px;
  background: var(--panel-soft);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.stack-card:hover {
  transform: translateY(-2px);
  border-color: rgba(186, 99, 239, 0.28);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 20px 34px rgba(0, 0, 0, 0.22);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.card-topline,
.card-metadata,
.card-footer,
.event-title-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
}

.mono-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--foreground-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mono-kicker {
  color: var(--muted-soft);
  font-size: 11px;
}

.stack-card h3 {
  margin: 14px 0 0;
  color: var(--foreground);
  font-size: 1.08rem;
  line-height: 1.45;
  text-wrap: balance;
}

.card-metadata,
.card-footer,
.event-copy p,
.table-secondary,
td,
th {
  color: var(--muted);
}

.card-metadata,
.card-footer {
  font-size: 0.92rem;
}

.detail-grid,
.entity-strip {
  display: grid;
  gap: 10px;
}

.task-grid {
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dispute-grid {
  margin-top: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dispute-parties,
.card-rail {
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-cell,
.entity-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.detail-cell {
  min-height: 96px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.detail-cell-emphasis {
  border-color: rgba(186, 99, 239, 0.28);
  background: linear-gradient(135deg, rgba(186, 99, 239, 0.2), rgba(255, 255, 255, 0.04));
}

.detail-cell-warning {
  border-color: rgba(255, 106, 47, 0.3);
  background: linear-gradient(135deg, rgba(255, 106, 47, 0.18), rgba(255, 255, 255, 0.04));
}

.detail-label {
  color: var(--muted-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-value,
.detail-inline {
  color: var(--foreground);
  display: block;
  margin-top: 8px;
  font-weight: 600;
  line-height: 1.25;
}

.detail-value {
  font-size: 1rem;
}

.detail-inline {
  font-size: 0.96rem;
}

.detail-value-strong {
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.detail-value-mono,
.detail-inline {
  font-family: "IBM Plex Mono", monospace;
}

.detail-value-copy {
  margin-top: 0;
  display: block;
  user-select: all;
}

.copy-inline {
  display: block;
  margin-top: 8px;
  max-width: 100%;
}

.detail-cell-copy {
  position: relative;
}

.detail-cell-copy .copy-inline {
  margin-top: 0;
}

.detail-cell-copy .detail-value-copy {
  display: block;
  padding-right: 32px;
}

.detail-cell-copy .copy-trigger {
  position: absolute;
  top: 12px;
  right: 12px;
}

.copy-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.copy-trigger svg {
  width: 14px;
  height: 14px;
}

.copy-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 47, 0.32);
  background: rgba(255, 106, 47, 0.14);
}

.copy-trigger.is-copied {
  border-color: rgba(186, 99, 239, 0.3);
  background: rgba(186, 99, 239, 0.18);
  color: var(--primary);
}

.copy-trigger.is-error {
  border-color: rgba(255, 108, 147, 0.26);
  background: rgba(255, 108, 147, 0.16);
  color: var(--rose);
}

.entity-item {
  padding: 12px 14px;
}

.dispute-parties .entity-item {
  position: relative;
}

.dispute-parties .detail-value-copy {
  padding-right: 28px;
}

.dispute-parties .copy-trigger {
  position: absolute;
  top: 12px;
  right: 12px;
}

.entity-item-tag {
  display: flex;
  align-items: flex-end;
}

.token-amount {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 6px;
  white-space: nowrap;
}

.token-figure {
  color: var(--foreground);
  font-weight: 600;
}

.token-unit {
  color: var(--muted-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge,
.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(
    8px 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    8px 100%,
    0 calc(100% - 8px),
    0 8px
  );
}

.tone-teal {
  color: var(--primary);
  background: var(--primary-soft);
  border-color: rgba(186, 99, 239, 0.2);
}

.tone-orange {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(255, 106, 47, 0.22);
}

.tone-rose {
  color: var(--rose);
  background: var(--rose-soft);
  border-color: rgba(255, 108, 147, 0.2);
}

.tone-ink {
  color: var(--foreground-strong);
  background: var(--ink-soft);
  border-color: rgba(255, 255, 255, 0.1);
}

.privacy-pill {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(255, 106, 47, 0.22);
}

.table-shell {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  border-color: rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  overflow-y: hidden;
}

.agents-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 100%;
  table-layout: fixed;
}

.agents-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.agents-table th,
.agents-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.agents-table th {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.agents-table tbody tr {
  transition:
    background 160ms ease,
    box-shadow 160ms ease;
}

.agents-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.018);
}

.agents-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.agents-table tbody tr:last-child td {
  border-bottom: none;
}

.agents-col-agent {
  width: 30%;
}

.agents-col-status {
  width: 14%;
}

.agents-col-reputation {
  width: 12%;
}

.agents-col-completed {
  width: 11%;
}

.agents-col-stake {
  width: 11%;
}

.agents-col-capabilities {
  width: 22%;
}

.agents-cell-center {
  text-align: center !important;
}

.agents-cell-right {
  text-align: right !important;
}

.table-primary {
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.2;
}

.agent-identity {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-right: 38px;
}

.agent-copy-trigger {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.table-secondary {
  margin-top: 0;
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  color: var(--muted-soft);
  letter-spacing: 0.03em;
}

.agent-status-badge {
  min-width: 94px;
  justify-content: center;
}

.table-metric {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}

.table-metric-strong {
  min-width: 78px;
  color: var(--foreground);
  border-color: rgba(186, 99, 239, 0.18);
  background: rgba(186, 99, 239, 0.12);
}

.capability-cell {
  min-width: 220px;
  white-space: normal;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.capability-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--foreground-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stake-cell {
  white-space: nowrap;
  font-family: "IBM Plex Mono", monospace;
  font-variant-numeric: tabular-nums;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.event-item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.event-item:last-child {
  border-bottom: none;
}

.event-dot {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 999px;
}

.event-dot.tone-teal {
  background: var(--primary);
  box-shadow: 0 0 18px rgba(186, 99, 239, 0.44);
}

.event-dot.tone-orange {
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 106, 47, 0.42);
}

.event-dot.tone-rose {
  background: var(--rose);
  box-shadow: 0 0 18px rgba(255, 108, 147, 0.34);
}

.event-dot.tone-ink {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

.event-copy strong {
  font-size: 0.98rem;
}

.event-copy p {
  margin: 6px 0 0;
  line-height: 1.45;
}

@keyframes live-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.82);
    opacity: 0.78;
  }
}

@keyframes live-dot-ring {
  0% {
    transform: scale(0.7);
    opacity: 0.55;
  }
  70%,
  100% {
    transform: scale(2.45);
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .hero,
  .grid.two-col {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    max-width: 14ch;
  }

  .task-grid,
  .dispute-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 20px, 1340px);
    padding-top: 16px;
  }

  .hero,
  .panel {
    padding: 18px;
  }

  .brand-lockup {
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-wordmark {
    width: 122px;
  }

  .hero-link {
    width: 100%;
    min-width: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .badge-row {
    justify-content: flex-start;
  }

  .task-grid,
  .dispute-grid,
  .dispute-parties,
  .card-rail {
    grid-template-columns: 1fr;
  }

  th:nth-child(4),
  td:nth-child(4),
  th:nth-child(5),
  td:nth-child(5) {
    display: none;
  }
}
