/* VOIDD Ops Command Kit — shared design system
   Linear void surfaces + command chrome (sales/buy/access/demo) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

:root {
  --void: #08090a;
  --carbon: #0f1011;
  --obsidian: #161718;
  --graphite: #23252a;
  --smoke: #383b3f;
  --ash: #62666d;
  --fog: #8a8f98;
  --mist: #d0d6e0;
  --paper: #f4f5f6;
  --white: #ffffff;
  --lime: #c8e64a;
  --iris: #6366f1;
  --teal: #02b8cc;
  --coral: #eb5757;
  --green: #27a644;
  --blue: #6ea8ff;
  --gold: #e6c07b;
  --bg: var(--void);
  --fg: var(--paper);
  --muted: var(--fog);
  --muted2: var(--ash);
  --card: var(--carbon);
  --border: var(--graphite);
  --border-soft: rgba(35, 37, 42, 0.85);
  --primary: var(--blue);
  --primary-fg: #061018;
  --radius: 8px;
  --radius-lg: 12px;
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-shot: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 24px 64px -16px rgba(0,0,0,0.75);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* sticky topbar — all kit pages */
.topbar {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 16, 17, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.topbar-inner {
  max-width: 1100px; margin: 0 auto;
  height: 52px; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--fg); text-decoration: none; font-weight: 600;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; color: var(--white); }
.mark {
  width: 28px; height: 28px; border-radius: 6px;
  display: grid; place-items: center;
  background: var(--primary); color: var(--primary-fg);
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  box-shadow: 0 0 0 1px rgba(110,168,255,0.35);
}
.brand-text {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
}
.nav { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-size: 13px; }
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover, .nav a.on { color: var(--fg); }
.nav-cta {
  font-family: var(--mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 6px;
  background: var(--lime); color: #0a0b05;
  text-decoration: none !important;
}
.nav-cta:hover { filter: brightness(1.06); text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 560px; margin: 0 auto; padding: 28px 20px 64px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 12px;
  font-family: var(--mono);
}

/* cards / panels */
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--carbon);
  box-shadow: var(--shadow-shot);
  padding: 22px;
}
.panel h1 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
}
.panel .sub { margin: 0 0 16px; color: var(--muted); font-size: 0.95rem; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 16px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter .15s, transform .15s, background .15s;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-block { display: flex; width: 100%; margin-top: 10px; }
.btn-lime {
  background: var(--lime); color: #0a0b05;
  border-color: transparent;
}
.btn-primary {
  background: var(--primary); color: var(--primary-fg);
}
.btn-gold {
  background: linear-gradient(135deg, #e6c07b, #c9a05a);
  color: #1a1205;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}
.btn-ghost {
  background: transparent;
  color: var(--mist);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.03); color: var(--paper); }
.btn.is-disabled, .btn[disabled] {
  opacity: 0.45; pointer-events: none; cursor: not-allowed;
}

.price {
  font-family: var(--mono);
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}
.price small { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fog);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 3px 8px;
  margin-bottom: 12px;
}

.divider {
  height: 1px; background: var(--border);
  margin: 18px 0; border: 0;
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--obsidian);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.note.ok { border-color: rgba(39,166,68,0.35); color: #6ee7a0; }
.note.warn { border-color: rgba(230,192,123,0.35); color: var(--gold); }
.note strong { color: var(--gold); }

.list-check {
  margin: 0; padding-left: 1.15rem;
  color: var(--muted); font-size: 0.92rem;
}
.list-check li { margin: 0.4rem 0; }

pre.install {
  margin: 12px 0 0;
  padding: 14px;
  background: var(--void);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fog);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  overflow: auto;
}

.foot-mini {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  justify-content: space-between;
}
.foot-mini a { color: var(--ash); }
