/* Veklom Sovereign AI Hub — Design System */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --border: #2a2a2a;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-600: #ea580c;
  --orange-glow: rgba(249, 115, 22, 0.15);
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --green: #22c55e;
  --red: #ef4444;
  --blue: #3b82f6;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--orange-500); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-400); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Typography */
h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: 2.25rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
.subtitle { font-size: 1.125rem; color: var(--text-secondary); max-width: 640px; }
.label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-500); }
.mono { font-family: var(--font-mono); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: var(--orange-500); color: #000; }
.btn-primary:hover { background: var(--orange-400); transform: translateY(-1px); box-shadow: 0 8px 24px var(--orange-glow); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--orange-500); color: var(--orange-500); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* Cards */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: all 0.2s; }
.card:hover { border-color: var(--orange-500); background: var(--bg-card-hover); }
.card-highlight { border-color: var(--orange-500); box-shadow: 0 0 24px var(--orange-glow); }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; backdrop-filter: blur(12px); background: rgba(10, 10, 10, 0.85); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.nav-brand span { color: var(--orange-500); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--text-primary); }

/* Hero */
.hero { padding: 140px 0 80px; text-align: center; background: radial-gradient(ellipse at 50% -20%, var(--orange-glow) 0%, transparent 70%); }
.hero h1 { max-width: 800px; margin: 0 auto 24px; }
.hero .subtitle { margin: 0 auto 40px; text-align: center; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Badge */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.badge-green { background: rgba(34, 197, 94, 0.1); color: var(--green); border: 1px solid rgba(34, 197, 94, 0.2); }
.badge-orange { background: var(--orange-glow); color: var(--orange-500); border: 1px solid rgba(249, 115, 22, 0.3); }
.badge-status { background: rgba(255, 184, 0, 0.1); color: #ffb800; border: 1px solid rgba(255, 184, 0, 0.26); box-shadow: inset 0 0 18px rgba(255, 184, 0, 0.04); }

/* Steps */
.step { display: flex; gap: 20px; padding: 20px 0; }
.step-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--orange-glow); color: var(--orange-500); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; border: 1px solid rgba(249, 115, 22, 0.3); }

/* Pricing table */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pricing-card { padding: 32px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; }
.pricing-card .price-sub { color: var(--text-muted); font-size: 0.85rem; }
.pricing-card ul { list-style: none; margin-top: 20px; }
.pricing-card ul li { padding: 8px 0; color: var(--text-secondary); font-size: 0.9rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pricing-card ul li::before { content: '→'; color: var(--orange-500); font-weight: 700; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.compare-table th { text-align: left; padding: 12px 16px; background: var(--bg-card); color: var(--text-secondary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.compare-table tr:hover td { background: var(--bg-card-hover); }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--text-muted); }

/* GPC Preview */
.gpc-preview { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 16px; padding: 40px; position: relative; overflow: hidden; }
.gpc-preview::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 2px; background: linear-gradient(90deg, transparent, var(--orange-500), transparent); }

/* Pulse dashboard */
.pulse-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.pulse-card { text-align: center; padding: 24px; }
.pulse-card .value { font-size: 2rem; font-weight: 800; color: var(--text-primary); }
.pulse-card .delta { font-size: 0.8rem; color: var(--green); }
.pulse-card .pulse-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* V3 public black box preview */
.v3-blackbox-frame {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 1120px;
  height: clamp(560px, 44vw, 640px);
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  border: 1px solid var(--border);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
}
.v3-blackbox-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  background:
    linear-gradient(180deg, rgba(255, 184, 0, 0.08), transparent 14%),
    radial-gradient(circle at 50% 8%, rgba(255, 184, 0, 0.11), transparent 34%);
  mix-blend-mode: screen;
}
.v3-blackbox-inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  align-items: stretch;
  justify-content: center;
  z-index: 1;
}
.v3-blackbox-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #0a0a0c;
  pointer-events: auto;
}
.v3-side-mask-left,
.v3-side-mask-right {
  position: absolute;
  top: 64px;
  bottom: 0;
  width: 200px;
  pointer-events: auto;
  z-index: 12;
  backdrop-filter: blur(6px);
}
.v3-side-mask-left {
  left: 0;
  background:
    linear-gradient(90deg, #020617 0%, #020617 88%, rgba(2, 6, 23, 0.94) 100%);
  border-right: 1px solid rgba(255, 184, 0, 0.08);
}
.v3-side-mask-right {
  right: 0;
  background:
    linear-gradient(-90deg, #020617 0%, #020617 88%, rgba(2, 6, 23, 0.94) 100%);
  border-left: 1px solid rgba(255, 184, 0, 0.08);
}
.v3-bottom-mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  pointer-events: none;
  z-index: 13;
  background: linear-gradient(180deg, transparent, #020617 78%);
}
.v3-public-preview-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 16;
  border: 1px solid rgba(255, 184, 0, 0.28);
  background: rgba(10, 10, 10, 0.72);
  color: var(--orange-500);
  border-radius: 999px;
  padding: 6px 10px;
  font: 700 10px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

/* Sovereign status */
.status-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 184, 0, 0.07), transparent 22rem),
    #0a0d15;
  color: #f7f7f8;
}
.status-topbar {
  width: min(1120px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.status-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.status-brand img {
  width: 142px;
  height: auto;
  object-fit: contain;
}
.status-tabs {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.status-tabs button,
.status-update-btn {
  appearance: none;
  border: 0;
  color: #8f96aa;
  border-radius: 9px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: transparent;
  cursor: pointer;
}
.status-tabs button.active,
.status-update-btn {
  color: #f7f7f8;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.055);
}
.status-tabs button:hover,
.status-update-btn:hover {
  color: #fff;
  background: rgba(255, 184, 0, 0.12);
}
.status-update-btn {
  justify-self: end;
}
.status-update-btn[aria-expanded="true"] {
  color: #0a0a0a;
  background: #ffb800;
}
.status-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 76px;
}
.status-summary {
  text-align: center;
  margin: 0 auto 70px;
}
.status-checkmark {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #17c989;
  border: 6px solid rgba(23, 201, 137, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.15), 0 0 34px rgba(23, 201, 137, 0.2);
}
.status-checkmark span {
  width: 20px;
  height: 12px;
  border-left: 4px solid #06110d;
  border-bottom: 4px solid #06110d;
  transform: rotate(-45deg) translate(1px, -2px);
}
.status-summary h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: 0;
  margin-bottom: 12px;
}
.status-summary p {
  color: #7f879e;
  font-size: 1rem;
  font-weight: 700;
}
.status-updates-panel {
  margin: -28px auto 42px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 22px;
  align-items: end;
  border-radius: 16px;
  border: 1px solid rgba(255, 184, 0, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 184, 0, 0.08), transparent 40%),
    rgba(24, 28, 38, 0.88);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}
.status-updates-panel[hidden] {
  display: none;
}
.status-updates-panel h2 {
  margin: 8px 0 8px;
  font-size: 1.3rem;
  letter-spacing: 0;
}
.status-updates-panel p {
  color: #8f96aa;
  font-size: 0.92rem;
}
.status-updates-form label {
  display: block;
  margin-bottom: 8px;
  color: #8f96aa;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.status-updates-form div {
  display: flex;
  gap: 10px;
}
.status-updates-form input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 13, 21, 0.8);
  color: #f7f7f8;
  font: 600 0.95rem var(--font-sans);
}
.status-updates-form input:focus {
  outline: none;
  border-color: rgba(255, 184, 0, 0.48);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}
.status-updates-form button {
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  background: #ffb800;
  color: #0a0a0a;
  font-weight: 800;
  cursor: pointer;
}
#status-updates-result {
  min-height: 20px;
  margin-top: 9px;
  color: #17c989;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
}
.status-monitor-card,
.status-preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(145deg, rgba(255, 184, 0, 0.055), transparent 32%),
    #181c26;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.status-monitor-card {
  padding: 36px;
  margin: 0 auto;
}
.status-monitor-card::after,
.status-preview-card::after {
  content: "V";
  position: absolute;
  right: 28px;
  bottom: -86px;
  color: rgba(255, 184, 0, 0.035);
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.status-monitor-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}
.status-monitor-head h2,
.status-monitor-head h3 {
  font-size: 1.05rem;
  letter-spacing: 0;
}
.status-monitor-head p {
  margin-top: 4px;
  color: #8f96aa;
  font-size: 0.86rem;
}
.status-eyebrow {
  display: block;
  color: #ffb800;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.status-boundary-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: 24px;
  align-items: end;
  margin: -4px 0 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.status-boundary-summary h3 {
  margin-top: 8px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: 0;
}
.status-boundary-summary p {
  margin-top: 6px;
  color: #8f96aa;
  font-weight: 700;
}
.status-boundary-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.06);
}
.status-boundary-metrics div {
  min-width: 0;
  padding: 14px;
  background: rgba(10, 13, 21, 0.72);
}
.status-boundary-metrics strong {
  display: block;
  color: #f7f7f8;
  font-size: 1.25rem;
  line-height: 1;
}
.status-boundary-metrics span {
  display: block;
  margin-top: 7px;
  color: #8f96aa;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-state-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #eef8f3;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.055);
}
.status-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #17c989;
  box-shadow: 0 0 0 3px rgba(23, 201, 137, 0.14);
}
.status-chevron {
  color: #8f96aa;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  margin-left: 6px;
}
.status-service-list {
  position: relative;
  z-index: 1;
}
.status-service-row {
  padding: 0 0 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.status-service-row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.status-service-row-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}
.status-service-name,
.status-service-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.status-service-name strong {
  font-size: 1.05rem;
  color: #f6f7fb;
}
.status-row-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07120d;
  background: #17c989;
  box-shadow: 0 0 0 3px rgba(23, 201, 137, 0.12);
}
.status-row-check svg {
  width: 14px;
  height: 14px;
}
.status-info {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #8f96aa;
  border: 1px solid rgba(143, 150, 170, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
}
.status-service-right {
  color: #8f96aa;
  font-weight: 700;
}
.status-service-right b,
.status-uptime-line span {
  color: #17c989;
}
.status-uptime-line {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  font-weight: 800;
}
.status-history-bar {
  display: grid;
  grid-template-columns: repeat(90, minmax(3px, 1fr));
  gap: 3px;
}
.status-history-cell {
  height: 28px;
  border-radius: 3px;
  background: #17c989;
}
.status-history-cell.status-degraded {
  background: #ffb800;
}
.status-history-cell.status-down {
  background: #ff6b5c;
}
.status-history-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #7f879e;
  font-weight: 700;
}
.status-preview-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 48% 0%, rgba(255, 184, 0, 0.08), transparent 24rem),
    var(--bg-primary);
}
.status-preview-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.status-preview-heading .subtitle {
  margin: 10px auto 0;
}
.status-preview-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px;
}
.status-preview-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
  color: #8f96aa;
  font-weight: 700;
}
.status-preview-meta strong {
  color: #f7f7f8;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}
.status-boundary-metrics-preview {
  margin-bottom: 24px;
}
.status-service-list-compact .status-service-row {
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.status-service-list-compact .status-history-cell {
  height: 18px;
}
.status-service-list-compact .status-history-axis {
  font-size: 0.82rem;
}
.status-secondary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 30px;
}
.status-detail-panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(24, 28, 38, 0.76);
  padding: 26px;
}
.status-detail-panel h2 {
  margin: 8px 0 10px;
  font-size: 1.25rem;
  letter-spacing: 0;
}
.status-detail-panel p,
.status-incident p {
  color: #8f96aa;
  font-size: 0.92rem;
}
.status-detail-panel a {
  display: inline-flex;
  margin-top: 18px;
  color: #ffb800;
  font-weight: 800;
}
.status-incident-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.status-incident {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.status-incident:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.status-incident-date {
  color: #ffb800;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.status-incident h3 {
  margin: 6px 0 5px;
  font-size: 1rem;
  letter-spacing: 0;
}
.status-incident-pill {
  align-self: flex-start;
  border: 1px solid rgba(23, 201, 137, 0.26);
  border-radius: 999px;
  padding: 5px 9px;
  color: #17c989;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.status-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 0 42px;
  color: #7f879e;
  font-size: 0.88rem;
}
.status-footer span {
  color: #f7f7f8;
  font-weight: 800;
}
.status-footer a {
  color: #8f96aa;
}

/* Footer */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-secondary); font-size: 0.9rem; padding: 4px 0; }

/* Uptime bar */
.uptime-bar { display: flex; gap: 2px; height: 32px; }
.uptime-bar .bar { flex: 1; border-radius: 3px; background: var(--green); }
.uptime-bar .bar.down { background: var(--red); }

/* Sidebar spine */
.sidebar { position: fixed; left: 0; top: 64px; bottom: 0; width: 56px; background: var(--bg-secondary); border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; padding: 12px 0; gap: 4px; z-index: 50; }
.sidebar a { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; position: relative; }
.sidebar a:hover, .sidebar a.active { background: var(--orange-glow); color: var(--orange-500); }
.sidebar a .tooltip { position: absolute; left: 60px; background: var(--bg-card); color: var(--text-primary); padding: 6px 12px; border-radius: 6px; font-size: 0.75rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; border: 1px solid var(--border); }
.sidebar a:hover .tooltip { opacity: 1; }
.sidebar .divider { width: 24px; height: 1px; background: var(--border); margin: 8px 0; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .v3-blackbox-frame { height: 520px; border-radius: 18px; }
  .v3-blackbox-inner { width: 1180px; }
  .v3-side-mask-left, .v3-side-mask-right { display: none; }
  .v3-public-preview-badge { right: 14px; top: 14px; }
  .status-topbar {
    height: auto;
    padding: 16px 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .status-tabs { order: 3; overflow-x: auto; padding-bottom: 2px; }
  .status-update-btn { justify-self: start; }
  .status-page { padding: 56px 0; }
  .status-summary { margin-bottom: 40px; }
  .status-monitor-card,
  .status-preview-card,
  .status-detail-panel { padding: 20px; }
  .status-monitor-head,
  .status-service-row-head,
  .status-preview-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .status-boundary-summary,
  .status-boundary-metrics { grid-template-columns: 1fr; }
  .status-secondary-grid { grid-template-columns: 1fr; }
  .status-history-bar { grid-template-columns: repeat(45, minmax(4px, 1fr)); }
  .status-history-cell { height: 22px; }
  .status-incident { flex-direction: column; }
}

@media (max-width: 480px) {
  .status-tabs { gap: 8px; }
  .status-tabs button,
  .status-update-btn { padding: 8px 11px; font-size: 0.84rem; }
  .status-updates-panel,
  .status-updates-form div { grid-template-columns: 1fr; flex-direction: column; }
  .status-service-right { flex-wrap: wrap; }
  .status-history-bar { grid-template-columns: repeat(30, minmax(5px, 1fr)); }
  .status-footer { flex-wrap: wrap; }
}
