/* ===================================================
   trust-pages.css — Shared design system for CorvusLLM
   trust, proof, evidence, and reference pages
   =================================================== */

/* ── Page shell ─────────────────────────────────── */
.tp-page {
  background: var(--bg, #06061a);
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 6rem;
}

.tp-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tp-wrap--wide {
  max-width: 1100px;
}

/* ── Metadata bar (top of page) ─────────────────── */
.tp-meta-bar {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.6rem 1.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.tp-meta-bar a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.tp-meta-bar a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.tp-meta-bar a.tp-meta-primary {
  color: var(--accent, #8b5cf6);
}

.tp-meta-dot {
  opacity: 0.3;
}

.tp-meta-strong {
  color: rgba(255, 255, 255, 0.55);
}

.tp-h2--compact {
  border: none;
  padding: 0;
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}

.tp-muted-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.tp-table-wrap--spaced {
  margin-top: 0.75rem;
}

.tp-callout--spaced {
  margin-top: 0.85rem;
}

.tp-th-center,
.tp-td-center {
  text-align: center !important;
}

.tp-text-xs {
  font-size: 0.82rem !important;
}

.tp-verify-good {
  color: #34d399;
  font-weight: 700;
}

.tp-verify-warn {
  color: #fbbf24;
  font-weight: 700;
}

.tp-verify-muted {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.tp-pill--self-reported {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.35);
}

/* ── Page hero ──────────────────────────────────── */
.tp-hero {
  padding: 5rem 0 3rem;
  text-align: left;
}

.tp-hero--centered {
  text-align: center;
}

.tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 20px;
  padding: 0.3rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.tp-badge--purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #a78bfa;
}

.tp-badge--green {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
}

.tp-badge--amber {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.22);
  color: #fbbf24;
}

.tp-badge--blue {
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.22);
  color: #93c5fd;
}

.tp-badge--neutral {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

.tp-badge .tp-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: tp-pulse 2s ease-in-out infinite;
}

@keyframes tp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.tp-hero h1 {
  font-family: var(--font-h, 'Space Grotesk', sans-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.1rem;
}

.tp-hero h1 .tp-gradient {
  background: linear-gradient(135deg, #fff 0%, #a0a0c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 0;
}

.tp-hero--centered .tp-hero-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── Section spacing ────────────────────────────── */
.tp-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 5rem;
}

.tp-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 2.5rem 0;
}

/* ── Section headings ───────────────────────────── */
.tp-h2 {
  font-family: var(--font-h, 'Space Grotesk', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tp-h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #e8e8f0;
  margin-bottom: 0.5rem;
}

/* ── Cards ──────────────────────────────────────── */
.tp-card {
  background: #0b0d14;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.tp-card + .tp-card {
  margin-top: 1rem;
}

.tp-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.tp-card p:last-child {
  margin-bottom: 0;
}

.tp-card a.tp-link-accent,
.tp-link-accent {
  color: var(--accent, #8b5cf6);
  text-decoration: none;
}

.tp-card a.tp-link-accent:hover,
.tp-link-accent:hover {
  text-decoration: underline;
}

.tp-link-muted {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.tp-link-muted:hover {
  color: rgba(255, 255, 255, 0.82);
}

.tp-inline-code-accent {
  color: #a78bfa;
  font-size: 0.85rem;
}

.tp-card ul,
.tp-card ol {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.9;
  padding-left: 1.4rem;
  margin: 0;
}

.tp-card li {
  margin-bottom: 0.35rem;
}

.tp-card--accent {
  background: rgba(16, 185, 129, 0.03);
  border-color: rgba(16, 185, 129, 0.15);
}

.tp-card--purple {
  background: rgba(139, 92, 246, 0.04);
  border-color: rgba(139, 92, 246, 0.18);
}

.tp-card--warn {
  background: rgba(251, 191, 36, 0.03);
  border-color: rgba(251, 191, 36, 0.15);
}

.tp-card--flat {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

/* ── Grid layout ────────────────────────────────── */
.tp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ── Step flow (numbered checklist) ─────────────── */
.tp-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tp-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: border-color 0.2s;
}

.tp-step:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.tp-step-num {
  min-width: 30px;
  height: 30px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #34d399;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.tp-step-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}

.tp-step-body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.tp-step-body a {
  color: var(--accent, #8b5cf6);
  text-decoration: none;
}

.tp-step-body a:hover {
  text-decoration: underline;
}

/* ── Evidence rows ──────────────────────────────── */
.tp-evidence-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tp-evidence-row {
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  border-left: 3px solid transparent;
}

.tp-evidence-row--verified {
  background: rgba(16, 185, 129, 0.04);
  border-color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-left: 3px solid #10b981;
}

.tp-evidence-row--unverified {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(107, 114, 128, 0.6);
}

.tp-evidence-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.tp-evidence-label--verified { color: #34d399; }
.tp-evidence-label--unverified { color: rgba(255, 255, 255, 0.3); }

.tp-evidence-body {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.tp-evidence-body a {
  color: var(--accent, #8b5cf6);
  text-decoration: none;
}

/* ── Status health cards ────────────────────────── */
.tp-status-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tp-status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid transparent;
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tp-status-card--operational {
  border-left-color: #10b981;
}

.tp-status-card--degraded {
  border-left-color: #fbbf24;
}

.tp-status-card--down {
  border-left-color: #f87171;
}

.tp-status-card--info {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.tp-status-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.tp-status-detail {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.tp-status-meta {
  margin-top: 1rem;
}

.tp-status-pill {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tp-status-pill--ok {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
}

.tp-status-pill--warn {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.tp-status-pill--down {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
}

.tp-status-pill--muted {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
}

/* ── Overall status bar ─────────────────────────── */
.tp-overall-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tp-overall-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.tp-overall-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.tp-overall-pill--ok {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
}

.tp-overall-pill--warn {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.tp-overall-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* ── Provider section headers ───────────────────── */
.tp-provider-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tp-provider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tp-provider-dot--anthropic { background: #d97757; }
.tp-provider-dot--google { background: #4285f4; }
.tp-provider-dot--deepseek { background: #60a5fa; }
.tp-provider-dot--openai { background: #10a37f; }

.tp-provider-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Table wrapper ──────────────────────────────── */
.tp-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.tp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.tp-table thead tr {
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.tp-table th {
  text-align: left;
  padding: 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.tp-table td {
  padding: 0.9rem 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

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

.tp-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

.tp-pricing-wrap {
  overflow-x: auto;
}

.tp-pricing-table {
  font-size: 0.92rem;
}

.tp-pricing-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tp-pricing-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #fff;
}

.tp-pricing-badge {
  padding-inline: 0.6rem;
}

.tp-pricing-official {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.tp-pricing-official--missing {
  color: #6b7280;
}

.tp-pricing-cell {
  color: rgba(255, 255, 255, 0.75);
}

.tp-pricing-cell--muted {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.tp-pricing-subnote {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.tp-pricing-cell-note {
  font-size: 0.85rem;
  color: #6b7280;
}

.tp-pricing-verify {
  font-size: 0.8rem;
  font-weight: 700;
}

.tp-pricing-verify--verified {
  color: #10b981;
}

.tp-pricing-verify--partial {
  color: #fbbf24;
}

.tp-pricing-verify--unverified {
  color: #6b7280;
}

.tp-pricing-source {
  color: var(--accent, #7c3aed);
  font-size: 0.85rem;
  text-decoration: none;
}

.tp-pricing-source:hover {
  text-decoration: underline;
}

.tp-pricing-cheapai {
  color: var(--accent, #8b5cf6);
  font-weight: 700;
}

.tp-pricing-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.tp-pricing-note-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.tp-pricing-note-link:hover {
  color: rgba(255, 255, 255, 0.72);
}

/* ── Badge pills (compatibility) ────────────────── */
.tp-pill {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.tp-pill--tested {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
}

.tp-pill--partial {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.tp-pill--untested {
  background: rgba(107, 114, 128, 0.12);
  color: #9ca3af;
}

.tp-pill--verified {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
}

.tp-pill--unverified {
  background: rgba(107, 114, 128, 0.1);
  color: #9ca3af;
}

.tp-pill--preview {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}

.tp-pricing-method-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.tp-pricing-list {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.85;
  padding-left: 1.35rem;
  margin: 0 0 0.5rem;
}

.tp-pricing-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  align-items: center;
}

.tp-pricing-legend-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Code block ─────────────────────────────────── */
.tp-code {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  font-size: 0.84rem;
  line-height: 1.65;
  color: #a78bfa;
  overflow-x: auto;
  white-space: pre;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

/* ── Language label pill ────────────────────────── */
.tp-lang-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15em 0.55em;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.tp-lang-pill--python { background: rgba(59, 130, 246, 0.12); color: #93c5fd; }
.tp-lang-pill--node { background: rgba(16, 185, 129, 0.12); color: #34d399; }
.tp-lang-pill--curl { background: rgba(156, 163, 175, 0.12); color: #9ca3af; }
.tp-lang-pill--config { background: rgba(251, 191, 36, 0.1); color: #fbbf24; }

/* ── Related pages panel ────────────────────────── */
.tp-related {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tp-related-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.tp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
}

.tp-related-link {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.tp-related-link:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.tp-related-link-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.2rem;
}

.tp-related-link-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

/* ── CTA bar (bottom of page) ───────────────────── */
.tp-cta-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.tp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent, #8b5cf6);
  color: #fff;
  padding: 0.6rem 1.3rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}

.tp-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.tp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.6rem 1.3rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s, background 0.2s;
}

.tp-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.tp-btn-secondary--compact {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.tp-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
  align-items: center;
}

.tp-callout-strong {
  color: #fbbf24;
}

.tp-cta-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
}

.tp-cta-text-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.tp-cta-text-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ── TOC (table of contents) ────────────────────── */
.tp-toc {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.tp-toc-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.85rem;
}

.tp-toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 1.5rem;
}

.tp-toc-item {
  font-size: 0.87rem;
  color: var(--accent, #8b5cf6);
  text-decoration: none;
  line-height: 1.9;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.tp-toc-item:hover {
  opacity: 1;
}

/* ── Inline callout ─────────────────────────────── */
.tp-callout {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.tp-callout--info {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
}

.tp-callout--warn {
  background: rgba(251, 191, 36, 0.04);
  border: 1px solid rgba(251, 191, 36, 0.18);
  color: rgba(255, 255, 255, 0.65);
}

.tp-callout--accent {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: rgba(255, 255, 255, 0.65);
}

/* ── Mechanism grid (how it works) ─────────────── */
.tp-mechanism-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.tp-mechanism-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.tp-mechanism-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.tp-mechanism-num {
  font-family: var(--font-h, 'Space Grotesk', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(139, 92, 246, 0.3);
  margin-bottom: 0.75rem;
}

.tp-mechanism-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.tp-mechanism-body {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── Pricing row (data pages) ───────────────────── */
.tp-pricing-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.5rem 1.5rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

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

.tp-pricing-model {
  font-weight: 600;
  color: #fff;
}

.tp-pricing-model-id {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: monospace;
  margin-top: 0.15rem;
}

.tp-pricing-official {
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.tp-pricing-cheapai {
  text-align: right;
  color: #34d399;
  font-weight: 700;
  white-space: nowrap;
}

.tp-pricing-savings {
  text-align: right;
  color: rgba(52, 211, 153, 0.7);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* ── Responsive breakpoints ─────────────────────── */
@media (max-width: 700px) {
  .tp-hero {
    padding: 4rem 0 2rem;
  }

  .tp-grid-2,
  .tp-grid-3,
  .tp-toc-grid {
    grid-template-columns: 1fr;
  }

  .tp-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .tp-cta-text-links {
    margin-left: 0;
  }

  .tp-card {
    padding: 1.25rem 1.25rem;
  }

  .tp-pricing-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .tp-related-grid {
    grid-template-columns: 1fr;
  }

  .tp-hero h1 {
    font-size: 1.9rem;
  }

  .tp-wrap {
    padding: 0 1rem;
  }
}

@media (max-width: 420px) {
  .tp-pricing-row {
    grid-template-columns: 1fr;
  }

  .tp-card {
    padding: 1rem;
  }

  .tp-cta-bar {
    gap: 12px;
  }
}

/* Homepage Alignment Pass */
:root:not([data-theme="light"]) .tp-page {
  background:
    radial-gradient(circle at top center, rgba(196, 122, 245, 0.08), transparent 28%),
    #0d0c0b;
}

:root:not([data-theme="light"]) .tp-meta-bar {
  background: rgba(255, 255, 255, 0.02);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: rgba(233, 236, 231, 0.48);
}

:root:not([data-theme="light"]) .tp-meta-bar a,
:root:not([data-theme="light"]) .tp-cta-text-links a {
  color: rgba(233, 236, 231, 0.58);
}

:root:not([data-theme="light"]) .tp-meta-bar a.tp-meta-primary,
:root:not([data-theme="light"]) .tp-toc-item,
:root:not([data-theme="light"]) .tp-card a,
:root:not([data-theme="light"]) .tp-related-link-title {
  color: var(--accent);
}

:root:not([data-theme="light"]) .tp-hero h1,
:root:not([data-theme="light"]) .tp-h2,
:root:not([data-theme="light"]) .tp-h3,
:root:not([data-theme="light"]) .tp-status-name,
:root:not([data-theme="light"]) .tp-related-label {
  color: #f5f6ef;
  text-wrap: balance;
}

:root:not([data-theme="light"]) .tp-hero-sub,
:root:not([data-theme="light"]) .tp-card p,
:root:not([data-theme="light"]) .tp-card li,
:root:not([data-theme="light"]) .tp-status-detail,
:root:not([data-theme="light"]) .tp-related-link-desc,
:root:not([data-theme="light"]) .tp-mechanism-body {
  color: rgba(233, 236, 231, 0.72);
}

:root:not([data-theme="light"]) .tp-card,
:root:not([data-theme="light"]) .tp-toc,
:root:not([data-theme="light"]) .tp-mechanism-card,
:root:not([data-theme="light"]) .tp-related-link,
:root:not([data-theme="light"]) .tp-cta-bar {
  background: linear-gradient(180deg, rgba(17, 15, 14, 0.96), rgba(13, 12, 11, 0.99));
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 54px rgba(0, 0, 0, 0.18);
}

:root:not([data-theme="light"]) .tp-badge--purple,
:root:not([data-theme="light"]) .tp-badge--blue,
:root:not([data-theme="light"]) .tp-badge--neutral {
  background: rgba(196, 122, 245, 0.08);
  border-color: rgba(196, 122, 245, 0.18);
  color: #ead8ff;
}

:root:not([data-theme="light"]) .tp-badge--green,
:root:not([data-theme="light"]) .tp-pricing-cheapai,
:root:not([data-theme="light"]) .tp-pricing-savings {
  color: #7ef3b6;
}

:root:not([data-theme="light"]) .tp-badge--green {
  background: rgba(126, 243, 182, 0.08);
  border-color: rgba(126, 243, 182, 0.18);
}

:root:not([data-theme="light"]) .tp-toc,
:root:not([data-theme="light"]) .tp-mechanism-card {
  background: linear-gradient(180deg, rgba(17, 15, 14, 0.94), rgba(13, 12, 11, 0.98));
}

:root:not([data-theme="light"]) .tp-callout--info,
:root:not([data-theme="light"]) .tp-card--purple {
  background: rgba(196, 122, 245, 0.06);
  border-color: rgba(196, 122, 245, 0.16);
}

/* Service status page */
body[data-page-key="service-status"] .status-page {
  --status-bg: #0d0c0b;
  --status-panel: rgba(18, 17, 16, 0.96);
  --status-panel-strong: rgba(24, 22, 21, 0.98);
  --status-panel-soft: rgba(255, 255, 255, 0.045);
  --status-border: rgba(255, 255, 255, 0.1);
  --status-border-strong: rgba(196, 122, 245, 0.24);
  --status-text: #f5f6ef;
  --status-muted: rgba(233, 236, 231, 0.72);
  --status-faint: rgba(233, 236, 231, 0.48);
  --status-accent: #c47af5;
  --status-accent-strong: #ead8ff;
  --status-green: #22c55e;
  --status-green-text: #86efac;
  --status-amber: #f59e0b;
  --status-red: #ef4444;
  --status-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  background:
    radial-gradient(circle at 16% 0%, rgba(196, 122, 245, 0.16), transparent 28%),
    radial-gradient(circle at 84% 6%, rgba(34, 197, 94, 0.1), transparent 24%),
    linear-gradient(180deg, #12100f 0%, #0d0c0b 44%, #090909 100%);
}

body[data-page-key="service-status"] .status-wrap {
  max-width: 1100px;
}

body[data-page-key="service-status"] .status-header {
  padding: 5rem 0 2rem;
}

body[data-page-key="service-status"] .status-topline,
body[data-page-key="service-status"] .status-section-head,
body[data-page-key="service-status"] .status-board-footer,
body[data-page-key="service-status"] .status-axis,
body[data-page-key="service-status"] .status-provider-links,
body[data-page-key="service-status"] .status-legend {
  display: flex;
  align-items: center;
}

body[data-page-key="service-status"] .status-topline {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

body[data-page-key="service-status"] .status-live-badge {
  margin-bottom: 0;
}

body[data-page-key="service-status"] .status-subscribe-link,
body[data-page-key="service-status"] .status-window-pill {
  border: 1px solid var(--status-border);
  color: var(--status-accent-strong);
  background: rgba(196, 122, 245, 0.1);
  border-radius: 999px;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

body[data-page-key="service-status"] .status-subscribe-link:hover {
  border-color: var(--status-border-strong);
  background: rgba(196, 122, 245, 0.16);
}

body[data-page-key="service-status"] .status-hero-panel {
  border: 1px solid var(--status-border);
  background:
    radial-gradient(circle at 12% 15%, rgba(196, 122, 245, 0.16), transparent 26%),
    linear-gradient(135deg, var(--status-panel-strong), var(--status-panel));
  border-radius: 28px;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  box-shadow: var(--status-shadow), inset 0 1px rgba(255, 255, 255, 0.06);
}

body[data-page-key="service-status"] .status-hero-copy h1 {
  color: var(--status-text);
  font-family: var(--font-h, "Space Grotesk", sans-serif);
  font-size: 3.55rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  white-space: nowrap;
  text-wrap: nowrap;
}

body[data-page-key="service-status"] .status-hero-copy .tp-hero-sub {
  color: var(--status-muted);
  max-width: 680px;
}

body[data-page-key="service-status"] .status-board,
body[data-page-key="service-status"] .status-incidents,
body[data-page-key="service-status"] .status-method-card {
  border: 1px solid var(--status-border);
  background: linear-gradient(180deg, var(--status-panel-strong), var(--status-panel));
  border-radius: 26px;
  box-shadow: var(--status-shadow), inset 0 1px rgba(255, 255, 255, 0.06);
}

body[data-page-key="service-status"] .status-summary-kicker,
body[data-page-key="service-status"] .status-component-group,
body[data-page-key="service-status"] .status-window-pill,
body[data-page-key="service-status"] .status-incident-date {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page-key="service-status"] .status-summary-kicker {
  color: var(--status-faint);
  font-size: 0.72rem;
  font-weight: 900;
}

body[data-page-key="service-status"] .status-summary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
  justify-content: space-between;
  border-bottom: 1px solid var(--status-border);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

body[data-page-key="service-status"] .status-summary-meta,
body[data-page-key="service-status"] .status-summary-source {
  color: var(--status-muted);
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

body[data-page-key="service-status"] .status-summary-meta strong {
  color: var(--status-text);
}

body[data-page-key="service-status"] .status-board,
body[data-page-key="service-status"] .status-incidents,
body[data-page-key="service-status"] .status-method-card {
  margin-bottom: 1.25rem;
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
}

body[data-page-key="service-status"] .status-section-head {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

body[data-page-key="service-status"] .status-section-head h2,
body[data-page-key="service-status"] .status-method-card h2 {
  color: var(--status-text);
  font-family: var(--font-h, "Space Grotesk", sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

body[data-page-key="service-status"] .status-section-head p,
body[data-page-key="service-status"] .status-method-card p,
body[data-page-key="service-status"] .status-method-card li {
  color: var(--status-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

body[data-page-key="service-status"] .status-component-list,
body[data-page-key="service-status"] .status-incident-list {
  display: grid;
  gap: 0.72rem;
}

body[data-page-key="service-status"] .status-component-row {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(360px, 0.95fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--status-border);
  border-left: 4px solid rgba(255, 255, 255, 0.18);
  background: var(--status-panel-soft);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

body[data-page-key="service-status"] .status-component-row:hover {
  border-color: var(--status-border-strong);
  transform: translateY(-1px);
}

body[data-page-key="service-status"] .status-component-row--ok {
  border-left-color: var(--status-green);
}

body[data-page-key="service-status"] .status-component-row--warn {
  border-left-color: var(--status-amber);
}

body[data-page-key="service-status"] .status-component-row--down {
  border-left-color: var(--status-red);
}

body[data-page-key="service-status"] .status-component-row--muted {
  border-left-color: rgba(148, 163, 184, 0.7);
}

body[data-page-key="service-status"] .status-component-main {
  min-width: 0;
}

body[data-page-key="service-status"] .status-component-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

body[data-page-key="service-status"] .status-component-name {
  color: var(--status-text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

body[data-page-key="service-status"] .status-component-group {
  color: var(--status-accent-strong);
  background: rgba(196, 122, 245, 0.1);
  border: 1px solid rgba(196, 122, 245, 0.2);
  border-radius: 999px;
  padding: 0.18rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 900;
}

body[data-page-key="service-status"] .status-component-detail,
body[data-page-key="service-status"] .status-component-meta {
  color: var(--status-muted);
  font-size: 0.8rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

body[data-page-key="service-status"] .status-component-meta {
  color: var(--status-faint);
  margin-top: 0.25rem;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
}

body[data-page-key="service-status"] .status-component-history {
  min-width: 0;
}

body[data-page-key="service-status"] .status-bars {
  display: grid;
  grid-template-columns: repeat(90, minmax(2px, 1fr));
  gap: 2px;
  width: 100%;
}

body[data-page-key="service-status"] .status-bar {
  display: block;
  min-height: 30px;
  border-radius: 3px;
  background: rgba(148, 163, 184, 0.24);
}

body[data-page-key="service-status"] .status-bar--ok,
body[data-page-key="service-status"] .status-bar--ok-soft {
  background: linear-gradient(180deg, #58e18a, #16a34a);
}

body[data-page-key="service-status"] .status-bar--ok-soft {
  opacity: 0.38;
}

body[data-page-key="service-status"] .status-bar--warn {
  background: linear-gradient(180deg, #fbbf24, #d97706);
}

body[data-page-key="service-status"] .status-bar--down {
  background: linear-gradient(180deg, #fb7185, #dc2626);
}

body[data-page-key="service-status"] .status-bar--muted {
  background: rgba(148, 163, 184, 0.24);
}

body[data-page-key="service-status"] .status-board-footer {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

body[data-page-key="service-status"] .status-axis,
body[data-page-key="service-status"] .status-provider-links,
body[data-page-key="service-status"] .status-legend {
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--status-faint);
  font-size: 0.76rem;
  font-weight: 700;
}

body[data-page-key="service-status"] .status-provider-links a {
  border: 1px solid var(--status-border);
  color: var(--status-accent-strong);
  background: rgba(196, 122, 245, 0.1);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}

body[data-page-key="service-status"] .status-provider-links a:hover {
  border-color: var(--status-border-strong);
  background: rgba(196, 122, 245, 0.16);
}

body[data-page-key="service-status"] .status-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page-key="service-status"] .status-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

body[data-page-key="service-status"] .status-dot--ok {
  background: var(--status-green);
}

body[data-page-key="service-status"] .status-dot--warn {
  background: var(--status-amber);
}

body[data-page-key="service-status"] .status-dot--down {
  background: var(--status-red);
}

body[data-page-key="service-status"] .status-dot--muted {
  background: rgba(148, 163, 184, 0.7);
}

body[data-page-key="service-status"] .status-incident-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--status-border);
  background: var(--status-panel-soft);
  border-radius: 16px;
  padding: 1rem;
}

body[data-page-key="service-status"] .status-incident-card--active {
  border-color: rgba(245, 158, 11, 0.36);
  background: rgba(245, 158, 11, 0.08);
}

body[data-page-key="service-status"] .status-incident-date {
  color: var(--status-faint);
  font-size: 0.72rem;
  font-weight: 900;
}

body[data-page-key="service-status"] .status-incident-card h3 {
  color: var(--status-text);
  font-size: 0.98rem;
  margin: 0 0 0.25rem;
}

body[data-page-key="service-status"] .status-incident-card p {
  color: var(--status-muted);
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 0;
}

body[data-page-key="service-status"] .status-method-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}

body[data-page-key="service-status"] .status-method-card code {
  border: 1px solid var(--status-border);
  color: var(--status-accent-strong);
  background: rgba(196, 122, 245, 0.1);
  border-radius: 7px;
  padding: 0.08rem 0.34rem;
}

body[data-page-key="service-status"] .status-method-note {
  border-top: 1px solid var(--status-border);
  margin-top: 1rem;
  padding-top: 1rem;
}

body[data-page-key="service-status"] .tp-related {
  margin-top: 1.5rem;
}

:root[data-theme="light"] body[data-page-key="service-status"] .status-page {
  --status-bg: #f6f2eb;
  --status-panel: rgba(255, 255, 255, 0.86);
  --status-panel-strong: rgba(255, 255, 255, 0.96);
  --status-panel-soft: rgba(255, 255, 255, 0.66);
  --status-border: rgba(32, 26, 39, 0.13);
  --status-border-strong: rgba(123, 79, 168, 0.26);
  --status-text: #201a27;
  --status-muted: #5f5868;
  --status-faint: #746d7c;
  --status-accent: #7b4fa8;
  --status-accent-strong: #522b7f;
  --status-green: #138e49;
  --status-green-text: #0f7a3d;
  --status-amber: #b7791f;
  --status-red: #c2414b;
  --status-shadow: 0 24px 60px rgba(58, 42, 24, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(185, 116, 233, 0.16), transparent 29%),
    radial-gradient(circle at 88% 4%, rgba(19, 142, 73, 0.13), transparent 24%),
    linear-gradient(180deg, #fbf7ef 0%, #f6f2eb 46%, #f1ece4 100%);
}

:root[data-theme="light"] body[data-page-key="service-status"] .status-hero-panel,
:root[data-theme="light"] body[data-page-key="service-status"] .status-board,
:root[data-theme="light"] body[data-page-key="service-status"] .status-incidents,
:root[data-theme="light"] body[data-page-key="service-status"] .status-method-card,
:root[data-theme="light"] body[data-page-key="service-status"] .status-component-row,
:root[data-theme="light"] body[data-page-key="service-status"] .status-incident-card {
  box-shadow: var(--status-shadow), inset 0 1px rgba(255, 255, 255, 0.92);
}

:root[data-theme="light"] body[data-page-key="service-status"] .status-subscribe-link,
:root[data-theme="light"] body[data-page-key="service-status"] .status-window-pill,
:root[data-theme="light"] body[data-page-key="service-status"] .status-component-group,
:root[data-theme="light"] body[data-page-key="service-status"] .status-provider-links a {
  background: rgba(185, 116, 233, 0.12);
  border-color: rgba(123, 79, 168, 0.22);
  color: var(--status-accent-strong);
}

:root[data-theme="light"] body[data-page-key="service-status"] .status-live-badge {
  background: rgba(19, 142, 73, 0.12);
  border-color: rgba(19, 142, 73, 0.26);
  color: var(--status-green-text);
}

:root[data-theme="light"] body[data-page-key="service-status"] .tp-overall-pill--ok,
:root[data-theme="light"] body[data-page-key="service-status"] .tp-status-pill--ok {
  background: rgba(19, 142, 73, 0.12);
  color: var(--status-green-text);
}

:root[data-theme="light"] body[data-page-key="service-status"] .tp-overall-pill--warn,
:root[data-theme="light"] body[data-page-key="service-status"] .tp-status-pill--warn {
  background: rgba(183, 121, 31, 0.13);
  color: #925f14;
}

:root[data-theme="light"] body[data-page-key="service-status"] .tp-status-pill--down {
  background: rgba(194, 65, 75, 0.12);
  color: #a6313a;
}

:root[data-theme="light"] body[data-page-key="service-status"] .tp-status-pill--muted {
  background: rgba(100, 116, 139, 0.12);
  color: #4b5563;
}

:root[data-theme="light"] body[data-page-key="service-status"] .status-bar--ok,
:root[data-theme="light"] body[data-page-key="service-status"] .status-bar--ok-soft {
  background: linear-gradient(180deg, #24b960, #138e49);
}

:root[data-theme="light"] body[data-page-key="service-status"] .status-bar--warn {
  background: linear-gradient(180deg, #e7a835, #b7791f);
}

:root[data-theme="light"] body[data-page-key="service-status"] .status-bar--down {
  background: linear-gradient(180deg, #e35d67, #c2414b);
}

@media (width <= 900px) {
  body[data-page-key="service-status"] .status-component-row {
    grid-template-columns: 1fr;
  }

  body[data-page-key="service-status"] .status-hero-copy h1 {
    font-size: 2.45rem;
    white-space: normal;
  }

  body[data-page-key="service-status"] .status-component-history {
    order: 3;
  }

  body[data-page-key="service-status"] .status-board-footer,
  body[data-page-key="service-status"] .status-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (width <= 620px) {
  body[data-page-key="service-status"] .status-header {
    padding-top: 3.75rem;
  }

  body[data-page-key="service-status"] .status-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-page-key="service-status"] .status-subscribe-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body[data-page-key="service-status"] .status-bars {
    grid-template-columns: repeat(90, minmax(1px, 1fr));
    gap: 1px;
  }

  body[data-page-key="service-status"] .status-bar {
    min-height: 24px;
  }

  body[data-page-key="service-status"] .status-incident-card {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
