/* Copyright (c) 2026 Martial Systems LLC. All rights reserved. */
:root {
  --bg: #090b0f;
  --panel: #141b24;
  --border: #2a3a4c;
  --border-soft: #1e2a38;
  --text: #eef3f8;
  --muted: #a8b4c2;
  --faint: #8a96a6;
  --accent: #2ec27e;
  --bad: #e85d5d;
  --font: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --max: 1080px;
  --topbar-h: 52px;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 15px;
}

.topbar {
  border-bottom: 1px solid var(--border-soft);
  background: rgba(9, 11, 15, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--topbar-h);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  color: var(--bad);
  font-size: 1.1rem;
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; gap: 0.05rem; }
.brand-name { font-weight: 600; font-size: 0.95rem; }
.brand-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}
.nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav a.active {
  color: var(--text);
  background: rgba(46, 194, 126, 0.12);
  border: 1px solid rgba(46, 194, 126, 0.28);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.15rem 3rem;
}
.hero {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-soft);
}
.kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.lede {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.15rem 1.2rem;
  margin: 1rem 0;
}
.panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.panel p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.brb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0 0.5rem;
}
.brb {
  width: min(220px, 70vw);
  height: min(220px, 70vw);
  border-radius: 50%;
  border: 4px solid #7a1f1f;
  background: radial-gradient(circle at 35% 30%, #ff6b6b, #c62828 55%, #7f1d1d);
  color: #fff8f8;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  opacity: 0.92;
}
.brb-cap {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-soft);
  color: var(--faint);
  font-size: 0.78rem;
}
.site-footer .legal {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  line-height: 1.55;
  max-width: 42rem;
}
