*, :before, :after {
  box-sizing: border-box;
}

:root {
  --bg-0: #0a0d13;
  --bg-1: #0f131c;
  --bg-2: #151b27;
  --bg-3: #1b2330;
  --line-1: rgba(148, 163, 184, .1);
  --line-2: rgba(148, 163, 184, .2);
  --text-1: #edf2f9;
  --text-2: #97a4b8;
  --text-3: #5e6c82;
  --accent: #f0a43c;
  --accent-strong: #ffc46b;
  --accent-dim: rgba(240, 164, 60, .12);
  --accent-line: rgba(240, 164, 60, .35);
  --ok: #3ecf8e;
  --ok-dim: rgba(62, 207, 142, .12);
  --warn: #eec33f;
  --warn-dim: rgba(238, 195, 63, .12);
  --err: #f2555a;
  --err-dim: rgba(242, 85, 90, .12);
  --muted: #8494ab;
  --muted-dim: rgba(132, 148, 171, .12);
  --font-sans: "Archivo", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --bg-primary: var(--bg-0);
  --bg-secondary: var(--bg-1);
  --text-primary: var(--text-1);
  --text-secondary: var(--text-2);
  --accent-primary: var(--accent);
  --border-color: var(--line-1);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 800;
}

p {
  margin: 0;
}

table {
  border-collapse: collapse;
}

input, textarea, button {
  font: inherit;
}

::selection {
  background: var(--accent-dim);
  color: var(--accent-strong);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--bg-3);
  border: 2px solid var(--bg-0);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--line-2);
}

.page-wrapper {
  background-color: var(--bg-0);
  background-image: radial-gradient(900px 420px at 50% -120px, rgba(240, 164, 60, .07), rgba(0, 0, 0, 0) 70%), radial-gradient(rgba(148, 163, 184, .07) 1px, rgba(0, 0, 0, 0) 1px);
  background-position: top, center;
  background-size: 100% 100%, 28px 28px;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.page-wrapper:after {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(rgba(0, 0, 0, 0) 0% 55%, rgba(5, 7, 11, .55) 100%);
  position: fixed;
  inset: 0;
}

main {
  z-index: 1;
  position: relative;
}

.site-header {
  z-index: 30;
  border-bottom: 1px solid var(--line-1);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 13, 19, .82);
  position: sticky;
  top: 0;
}

.site-header-inner {
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  height: 60px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.brand {
  letter-spacing: -.02em;
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  display: flex;
}

.brand-mark {
  filter: drop-shadow(0 0 10px rgba(240, 164, 60, .28));
  place-items: center;
  width: 30px;
  height: 30px;
  display: grid;
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  display: block;
}

.brand-suffix {
  color: var(--text-3);
  font-weight: 600;
}

.site-nav {
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  display: flex;
}

.nav-link {
  border-radius: var(--radius-sm);
  color: var(--text-2);
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 600;
  transition: color .12s, background-color .12s;
}

.nav-link:hover {
  color: var(--text-1);
  background: var(--bg-2);
}

.nav-link[aria-current="page"], .nav-link.active {
  color: var(--accent-strong);
  background: var(--accent-dim);
}

.header-status {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 11px;
  display: flex;
}

.pulse-dot {
  background: var(--ok);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2.4s cubic-bezier(.4, 0, .6, 1) infinite pulse;
  box-shadow: 0 0 rgba(62, 207, 142, .55);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 rgba(62, 207, 142, .5);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(62, 207, 142, 0);
  }

  100% {
    box-shadow: 0 0 rgba(62, 207, 142, 0);
  }
}

.shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 24px 64px;
}

.shell-narrow {
  max-width: 760px;
}

.page-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 28px;
  display: flex;
}

.page-title {
  letter-spacing: -.03em;
  font-size: 30px;
  font-weight: 900;
}

.page-subtitle {
  color: var(--text-2);
  max-width: 60ch;
  margin-top: 6px;
  font-size: 14px;
}

.section-title {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  display: flex;
}

.section-title:after {
  content: "";
  background: var(--line-1);
  flex: 1;
  height: 1px;
}

.grid-main {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
  display: grid;
}

@media (width >= 1100px) {
  .grid-main {
    grid-template-columns: minmax(0, 1.9fr) minmax(340px, 1fr);
  }
}

.card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-pad {
  padding: 20px;
}

.kpi-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
  display: grid;
}

@media (width >= 900px) {
  .kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.kpi {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  padding: 18px 20px 16px;
  transition: border-color .15s, transform .15s;
  position: relative;
  overflow: hidden;
}

.kpi:hover {
  border-color: var(--line-2);
  transform: translateY(-1px);
}

.kpi:before {
  content: "";
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .55;
  height: 2px;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
}

.kpi-label {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-size: 10.5px;
  font-weight: 600;
}

.kpi-value {
  font-family: var(--font-mono);
  letter-spacing: -.02em;
  color: var(--text-1);
  white-space: nowrap;
  margin-top: 8px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
}

.kpi-value .unit {
  color: var(--text-3);
  letter-spacing: 0;
  margin-left: 5px;
  font-size: 13px;
  font-weight: 500;
}

.kpi-sub {
  color: var(--text-3);
  font-size: 12px;
  font-family: var(--font-mono);
  margin-top: 7px;
}

.kpi-sub .delta-up {
  color: var(--ok);
}

.kpi-sub .delta-flat {
  color: var(--text-3);
}

.badge {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 3px 10px 3px 8px;
  font-size: 10.5px;
  font-weight: 600;
  display: inline-flex;
}

.badge .dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
}

.badge-ok {
  color: var(--ok);
  background: var(--ok-dim);
  border-color: rgba(62, 207, 142, .25);
}

.badge-ok .dot {
  background: var(--ok);
  box-shadow: 0 0 8px rgba(62, 207, 142, .8);
}

.badge-warn {
  color: var(--warn);
  background: var(--warn-dim);
  border-color: rgba(238, 195, 63, .25);
}

.badge-warn .dot {
  background: var(--warn);
  box-shadow: 0 0 8px rgba(238, 195, 63, .8);
}

.badge-err {
  color: var(--err);
  background: var(--err-dim);
  border-color: rgba(242, 85, 90, .25);
}

.badge-err .dot {
  background: var(--err);
  box-shadow: 0 0 8px rgba(242, 85, 90, .8);
}

.badge-muted {
  color: var(--muted);
  background: var(--muted-dim);
  border-color: rgba(132, 148, 171, .25);
}

.badge-muted .dot {
  background: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  text-align: left;
  width: 100%;
  font-size: 13.5px;
}

.data-table thead th {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--line-1);
  white-space: nowrap;
  background: rgba(10, 13, 19, .45);
  padding: 12px 16px;
  font-size: 10.5px;
  font-weight: 600;
}

.data-table tbody td {
  border-bottom: 1px solid var(--line-1);
  vertical-align: middle;
  padding: 14px 16px;
}

.data-table tbody tr {
  transition: background-color .12s;
}

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

.data-table tbody tr.row-link {
  cursor: pointer;
}

.data-table tbody tr.row-link:hover {
  background: var(--bg-3);
}

.cell-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.cell-center {
  text-align: center;
}

.cell-right {
  text-align: right;
}

.mint-name {
  color: var(--text-1);
  letter-spacing: -.01em;
  font-weight: 700;
}

.mint-url {
  font-family: var(--font-mono);
  color: var(--text-3);
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 320px;
  margin-top: 2px;
  font-size: 11px;
  overflow: hidden;
}

.swap-io {
  font-family: var(--font-mono);
  white-space: nowrap;
  font-size: 12px;
}

.swap-io .in {
  color: var(--ok);
  font-weight: 600;
}

.swap-io .out {
  color: var(--accent);
  font-weight: 600;
}

.swap-io .sep {
  color: var(--text-3);
  margin: 0 4px;
}

.err-count {
  font-family: var(--font-mono);
  font-weight: 600;
}

.err-count.none {
  color: var(--text-3);
  opacity: .6;
}

.err-count.some {
  color: var(--err);
}

.meter {
  background: var(--bg-3);
  border-radius: 2px;
  width: 120px;
  height: 3px;
  margin-top: 6px;
  overflow: hidden;
}

.meter-fill {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 2px;
  height: 100%;
  transition: width .4s;
}

.feed {
  flex-direction: column;
  max-height: 720px;
  display: flex;
  overflow-y: auto;
}

.feed-item {
  border-bottom: 1px solid var(--line-1);
  border-left: 2px solid rgba(0, 0, 0, 0);
  padding: 13px 18px;
  transition: background-color .12s;
}

.feed-item:hover {
  background: var(--bg-3);
}

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

.feed-item.state-ok {
  border-left-color: var(--ok);
}

.feed-item.state-err {
  border-left-color: var(--err);
}

.feed-item.state-warn {
  border-left-color: var(--warn);
}

.feed-item.state-unknown {
  border-left-color: var(--muted);
}

.feed-meta {
  font-family: var(--font-mono);
  color: var(--text-3);
  align-items: center;
  gap: 8px;
  font-size: 11px;
  display: flex;
}

.feed-route {
  font-family: var(--font-mono);
  color: var(--text-2);
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-top: 5px;
  font-size: 12px;
  display: flex;
}

.feed-route .hop {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 46%;
  overflow: hidden;
}

.feed-route .arrow {
  color: var(--accent);
  flex-shrink: 0;
}

.feed-amount {
  font-family: var(--font-mono);
  color: var(--text-1);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}

.feed-fee {
  font-family: var(--font-mono);
  color: var(--text-3);
  white-space: nowrap;
  font-size: 11px;
}

.feed-top {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  display: flex;
}

.feed-error {
  border-radius: var(--radius-sm);
  background: var(--err-dim);
  color: var(--err);
  font-family: var(--font-mono);
  border: 1px solid rgba(242, 85, 90, .2);
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 10px;
  font-size: 11px;
  line-height: 1.45;
  display: flex;
}

.feed-error-text {
  word-break: break-word;
  flex: 1;
}

.feed-error .cat-pill {
  margin-top: 1px;
}

.cat-pill {
  font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid;
  border-radius: 999px;
  flex: none;
  align-items: center;
  padding: 2px 7px;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.4;
  display: inline-flex;
}

.cat-pill.cat-network, .cat-pill.cat-timeout, .cat-pill.cat-ssl {
  color: var(--err);
  background: var(--err-dim);
}

.cat-pill.cat-mint {
  color: var(--warn);
  background: var(--warn-dim);
}

.cat-pill.cat-fee {
  color: var(--accent-strong);
  background: var(--accent-dim);
}

.cat-pill.cat-liquidity {
  color: #6ba8ff;
  background: rgba(107, 168, 255, .12);
}

.cat-pill.cat-config {
  color: #bd97ff;
  background: rgba(189, 151, 255, .12);
}

.cat-pill.cat-internal, .cat-pill.cat-unknown {
  color: var(--muted);
  background: var(--muted-dim);
}

.incident {
  border-radius: var(--radius-md);
  background: linear-gradient(rgba(242, 85, 90, .1), rgba(242, 85, 90, .04));
  border: 1px solid rgba(242, 85, 90, .28);
  margin-top: 18px;
  padding: 14px 16px;
}

.incident-head {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  display: flex;
}

.incident-title {
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--err);
  font-size: 12px;
  font-weight: 700;
}

.incident-when {
  color: var(--text-3);
  margin-left: auto;
  font-size: 11px;
}

.incident-msg {
  color: var(--text-2);
  word-break: break-word;
  font-size: 12px;
  line-height: 1.5;
}

.btn {
  border-radius: var(--radius-md);
  letter-spacing: .01em;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  color: var(--text-1);
  background: none;
  border: 1px solid rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  transition: background-color .13s, border-color .13s, color .13s, transform .13s, box-shadow .13s;
  display: inline-flex;
}

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.btn:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #181006;
  box-shadow: inset 0 1px rgba(255, 255, 255, .25), 0 6px 20px rgba(240, 164, 60, .25);
}

.btn-primary:hover:not(:disabled) {
  box-shadow: inset 0 1px rgba(255, 255, 255, .25), 0 8px 26px rgba(240, 164, 60, .4);
}

.btn-secondary {
  background: var(--bg-2);
  border-color: var(--line-2);
  color: var(--text-1);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--bg-3);
  border-color: var(--line-2);
}

.btn-ghost {
  color: var(--text-2);
  border-color: rgba(0, 0, 0, 0);
}

.btn-ghost:hover:not(:disabled) {
  color: var(--text-1);
  background: var(--bg-2);
}

.btn-block {
  width: 100%;
}

.field {
  flex-direction: column;
  gap: 8px;
  width: 100%;
  display: flex;
}

.field-label {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-size: 11px;
  font-weight: 600;
}

.field-input, .field-textarea {
  background: var(--bg-0);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--text-1);
  font-family: var(--font-mono);
  padding: 12px 14px;
  font-size: 13px;
  transition: border-color .13s, box-shadow .13s;
}

.field-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.field-input::placeholder {
  color: var(--text-3);
}

.field-textarea::placeholder {
  color: var(--text-3);
}

.field-input:focus, .field-textarea:focus {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px var(--accent-dim);
  outline: none;
}

.field-input.has-error, .field-textarea.has-error {
  border-color: var(--err);
}

.field-hint {
  color: var(--text-3);
  font-size: 12px;
}

.field-hint.is-error {
  color: var(--err);
}

.callout {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  padding: 14px 16px;
  font-size: 13.5px;
}

.callout-ok {
  background: var(--ok-dim);
  color: var(--ok);
  border-color: rgba(62, 207, 142, .3);
}

.callout-err {
  background: var(--err-dim);
  color: var(--err);
  border-color: rgba(242, 85, 90, .3);
}

.qr-panel {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  display: flex;
}

.qr-frame {
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px var(--line-2),
                0 0 40px rgba(240, 164, 60, .12);
  background: #fff;
  padding: 14px;
  line-height: 0;
}

.qr-frame svg {
  width: 220px;
  height: 220px;
  display: block;
}

.pr-string {
  background: var(--bg-0);
  border: 1px solid var(--line-1);
  border-radius: var(--radius-sm);
  width: 100%;
  font-family: var(--font-mono);
  color: var(--text-2);
  word-break: break-all;
  text-align: left;
  max-height: 84px;
  padding: 10px 12px;
  font-size: 11px;
  overflow-y: auto;
}

.empty-state {
  text-align: center;
  color: var(--text-3);
  padding: 44px 24px;
  font-size: 13.5px;
}

.empty-state .glyph {
  opacity: .5;
  margin-bottom: 10px;
  font-size: 22px;
  display: block;
}

.skeleton {
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.skeleton:after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(148, 163, 184, .12), rgba(0, 0, 0, 0));
  animation: 1.6s infinite shimmer;
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.skeleton-row {
  height: 14px;
  margin: 16px;
}

.detail-head {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  display: flex;
}

.back-link {
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 12px;
  transition: color .12s;
  display: inline-flex;
}

.back-link:hover {
  color: var(--accent-strong);
}

.stat-chips {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
  display: grid;
}

@media (width >= 800px) {
  .stat-chips {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat-chip {
  background: var(--bg-2);
  border: 1px solid var(--line-1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.stat-chip .label {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-size: 10px;
}

.stat-chip .value {
  font-family: var(--font-mono);
  color: var(--text-1);
  margin-top: 5px;
  font-size: 17px;
  font-weight: 700;
}

.uptime-card {
  margin-bottom: 32px;
}

.uptime-head {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  display: flex;
}

.section-title.compact {
  margin-bottom: 4px;
}

.uptime-window {
  color: var(--text-3);
  font-size: 11px;
}

.uptime-primary {
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  min-width: 120px;
  display: flex;
}

.uptime-value {
  font-family: var(--font-mono);
  color: var(--text-1);
  white-space: nowrap;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.uptime-state {
  font-family: var(--font-mono);
  color: var(--text-3);
  white-space: nowrap;
  font-size: 11px;
}

.uptime-bars {
  grid-template-columns: repeat(48, minmax(2px, 1fr));
  gap: 2px;
  width: 100%;
  height: 22px;
  margin-top: 18px;
  display: grid;
}

.uptime-bar {
  background: var(--bg-3);
  border-radius: 2px;
  min-width: 2px;
  height: 22px;
  display: block;
}

.uptime-bar.ok {
  background: linear-gradient(rgba(62, 207, 142, .95), rgba(62, 207, 142, .55));
}

.uptime-bar.warn {
  background: linear-gradient(rgba(238, 195, 63, .95), rgba(238, 195, 63, .55));
}

.uptime-bar.err {
  background: linear-gradient(rgba(242, 85, 90, .95), rgba(242, 85, 90, .55));
}

.uptime-bar.unknown {
  background: rgba(132, 148, 171, .16);
}

.uptime-empty {
  grid-column: 1 / -1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  height: 22px;
  display: grid;
}

.uptime-empty span {
  background: var(--bg-3);
  border-radius: 2px;
  display: block;
}

.uptime-legend {
  font-family: var(--font-mono);
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 12px;
  font-size: 10.5px;
  display: flex;
}

.uptime-legend span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.uptime-legend .lgd {
  border-radius: 2px;
  width: 9px;
  height: 9px;
  display: inline-block;
}

.lgd.ok {
  background: var(--ok);
}

.lgd.warn {
  background: var(--warn);
}

.lgd.err {
  background: var(--err);
}

.lgd.unknown {
  background: rgba(132, 148, 171, .3);
}

.uptime-meta {
  font-family: var(--font-mono);
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
  font-size: 11px;
  display: flex;
}

@media (width <= 640px) {
  .uptime-head {
    flex-direction: column;
    align-items: stretch;
  }

  .uptime-primary {
    text-align: left;
    align-items: flex-start;
  }
}

.kv-list {
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
  font-size: 13px;
  display: grid;
}

.kv-list dt {
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding-top: 2px;
  font-size: 11px;
}

.kv-list dd {
  color: var(--text-2);
  word-break: break-word;
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line-1);
  z-index: 1;
  margin-top: auto;
  position: relative;
}

.site-footer-inner {
  max-width: 1240px;
  color: var(--text-3);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 22px 24px;
  font-size: 12.5px;
  display: flex;
}

.site-footer a {
  color: var(--text-2);
  transition: color .12s;
}

.site-footer a:hover {
  color: var(--accent-strong);
}

.footer-meta {
  font-family: var(--font-mono);
  letter-spacing: .06em;
  font-size: 11px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rise {
  animation: .48s cubic-bezier(.16, 1, .3, 1) both rise-in;
}

.rise-1 {
  animation-delay: 40ms;
}

.rise-2 {
  animation-delay: .11s;
}

.rise-3 {
  animation-delay: .18s;
}

.rise-4 {
  animation-delay: .25s;
}

@media (prefers-reduced-motion: reduce) {
  .rise, .rise-1, .rise-2, .rise-3, .rise-4, .pulse-dot {
    animation: none;
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.flex-grow {
  flex-grow: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.w-full {
  width: 100%;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

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

.text-dim {
  color: var(--text-3);
}

.text-soft {
  color: var(--text-2);
}

@keyframes ack-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ack-banner {
  border-radius: var(--radius-md);
  background: var(--ok-dim);
  width: 100%;
  color: var(--ok);
  border: 1px solid rgba(62, 207, 142, .35);
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  animation: .36s cubic-bezier(.16, 1, .3, 1) both ack-in;
  display: flex;
}

.ack-banner .amount {
  font-family: var(--font-mono);
  white-space: nowrap;
  font-weight: 700;
}

.ack-banner .detail {
  color: var(--text-2);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  overflow: hidden;
}

.ack-banner .check {
  background: rgba(62, 207, 142, .2);
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  display: grid;
}

a.mint-name:hover {
  color: var(--accent-strong);
}

.tag-list {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.tag {
  background: var(--bg-3);
  border: 1px solid var(--line-1);
  font-family: var(--font-mono);
  color: var(--text-2);
  letter-spacing: .04em;
  white-space: nowrap;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 10.5px;
}

.donation-list {
  flex-direction: column;
  display: flex;
}

.donation-row {
  border-bottom: 1px solid var(--line-1);
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  display: flex;
}

.donation-row:last-child {
  border-bottom: none;
}

.donation-row .amount {
  font-family: var(--font-mono);
  color: var(--ok);
  white-space: nowrap;
  font-weight: 700;
}

.donation-row .meta {
  font-family: var(--font-mono);
  color: var(--text-3);
  white-space: nowrap;
  font-size: 11px;
}

.steps-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  display: grid;
}

@media (width >= 900px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step-card {
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  position: relative;
}

.step-card .step-num {
  font-family: var(--font-mono);
  color: var(--accent);
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
}

.step-card h3 {
  letter-spacing: -.01em;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 800;
}

.step-card p {
  color: var(--text-2);
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
}
