/* V1 Status page: privacy-preserving public status */
.landing-wrap--status {
  min-height: 100vh;
}

.tp-status {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 16px 40px;
}

.tp-status-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.tp-status-h1 {
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tp-status-lead {
  margin: 0 0 14px;
  opacity: 0.86;
  line-height: 1.55;
}

.tp-status-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.tp-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.tp-status-pill[data-state="Operational"] { border-color: rgba(50, 215, 75, 0.35); }
.tp-status-pill[data-state="Degraded"] { border-color: rgba(255, 159, 10, 0.35); }
.tp-status-pill[data-state="Outage"] { border-color: rgba(255, 69, 58, 0.35); }
.tp-status-pill[data-state="Unknown"] { border-color: rgba(142, 142, 147, 0.35); }

.tp-status-meta {
  font-size: 12px;
  opacity: 0.75;
}

.tp-status-hero-card,
.tp-status-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px;
}

.tp-status-card-title {
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.tp-status-bullets {
  margin: 0;
  padding-left: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.tp-status-footnote {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.75;
}

.tp-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.tp-status-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.tp-status-metric .k {
  font-size: 12px;
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tp-status-metric .v {
  font-weight: 900;
  font-size: 18px;
  margin-top: 2px;
}

.tp-status-metric-icon {
  width: 10px;
  height: 10px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}
.tp-status-metric-icon--ok { background: rgba(50, 215, 75, 0.85); }
.tp-status-metric-icon--bad { background: rgba(255, 69, 58, 0.80); }
.tp-status-metric-icon--lat { background: rgba(14, 165, 233, 0.80); }
.tp-status-metric-icon--peak { background: rgba(245, 158, 11, 0.85); }
.tp-status-metric-icon--req { background: rgba(124, 58, 237, 0.80); }

.tp-status-metric-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  flex-shrink: 0;
}
.tp-status-metric-icon-svg svg { display: block; }
.tp-status-metric-icon-svg--ok { color: rgba(22, 163, 74, 0.95); background: rgba(22, 163, 74, 0.12); }
.tp-status-metric-icon-svg--bad { color: rgba(220, 38, 38, 0.95); background: rgba(220, 38, 38, 0.10); }
.tp-status-metric-icon-svg--lat { color: rgba(2, 132, 199, 0.95); background: rgba(14, 165, 233, 0.12); }
.tp-status-metric-icon-svg--peak { color: rgba(217, 119, 6, 0.95); background: rgba(245, 158, 11, 0.12); }
.tp-status-metric-icon-svg--req { color: rgba(109, 40, 217, 0.95); background: rgba(124, 58, 237, 0.12); }

.tp-status-synth-hint {
  margin: 12px 0 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

.tp-status-th-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tp-status-th-ico {
  display: inline-flex;
  color: #94a3b8;
  flex-shrink: 0;
}

.tp-status-demo-badge {
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  white-space: nowrap;
}

.tp-status-muted {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.7;
}

.tp-status-notices {
  display: grid;
  gap: 10px;
}
.tp-status-notice {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.tp-status-notice--warning { border-color: rgba(255,159,10,0.25); }
.tp-status-notice--info { border-color: rgba(52, 199, 89, 0.18); }
.tp-status-notice .t { font-weight: 800; }
.tp-status-notice .m { opacity: 0.85; margin-top: 4px; line-height: 1.45; }

.tp-status-section {
  margin-top: 8px;
}
.tp-status-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 10px;
}
.tp-status-section-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tp-status-title-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.tp-status-title-icon svg { display: block; }
.tp-status-title-icon--indigo { color: #4f46e5; }
.tp-status-title-icon--sky { color: #0ea5e9; }
.tp-status-title-icon--violet { color: #7c3aed; }
.tp-status-title-icon--amber { color: #f59e0b; }

.tp-status-legend {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  opacity: 0.85;
}
.tp-status-legend .seg {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
  margin-right: 6px;
  border: 1px solid rgba(255,255,255,0.18);
}
.seg.ok { background: rgba(50, 215, 75, 0.85); }
.seg.degraded { background: rgba(255, 159, 10, 0.85); }
.seg.outage { background: rgba(255, 69, 58, 0.85); }
.seg.unknown { background: rgba(142, 142, 147, 0.65); }

.tp-status-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.tp-status-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tp-status-table th, .tp-status-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: middle;
}
.tp-status-table thead th {
  font-size: 12px;
  opacity: 0.75;
  font-weight: 800;
  background: rgba(255,255,255,0.04);
}
.tp-status-table tbody tr:hover td {
  background: rgba(255,255,255,0.03);
}

.tp-status-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.tp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-block;
}
.tp-status-dot.ok { background: rgba(50, 215, 75, 0.9); }
.tp-status-dot.degraded { background: rgba(255, 159, 10, 0.9); }
.tp-status-dot.outage { background: rgba(255, 69, 58, 0.9); }
.tp-status-dot.unknown { background: rgba(142, 142, 147, 0.75); }

.tp-status-bar {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 2px;
  align-items: center;
  min-width: 320px;
}
.tp-status-bar span {
  height: 10px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.10);
  display: inline-block;
}
.tp-status-bar span.ok { background: rgba(50, 215, 75, 0.85); }
.tp-status-bar span.degraded { background: rgba(255, 159, 10, 0.85); }
.tp-status-bar span.outage { background: rgba(255, 69, 58, 0.85); }
.tp-status-bar span.unknown { background: rgba(142, 142, 147, 0.6); }

/* footer icon link helper (shared) */
.landing-footer-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.landing-footer-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

@media (max-width: 980px) {
  .tp-status-hero { grid-template-columns: 1fr; }
  .tp-status-grid { grid-template-columns: 1fr; }
  .tp-status-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tp-status-bar { min-width: 240px; }
}

