/* ── OHBump site — design tokens ──────────────────────────────────────── */
:root {
  --bg:        #0A0C12;
  --surface:   #12151F;
  --surface-2: #171B29;
  --border:    #262B3D;
  --text:      #E7E9F2;
  --text-muted:#8B90A8;
  --text-dim:  #5C6180;

  --blurple:   #5865F2;
  --blurple-2: #7A85F7;
  --green:     #57F287;
  --gold:      #F2B84B;
  --purple:    #9B59B6;
  --red:       #ED4245;

  --display: 'Space Grotesk', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Faint radial glow behind everything, like a server's presence dot */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 400px at 15% -5%, rgba(88,101,242,0.16), transparent 60%),
    radial-gradient(500px 380px at 100% 10%, rgba(87,242,135,0.08), transparent 60%);
  pointer-events: none;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blurple-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(87,242,135,0.18);
}

p { color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--blurple-2); outline-offset: 3px; }

.btn-primary {
  background: var(--blurple);
  color: white;
  box-shadow: 0 6px 24px rgba(88,101,242,0.35);
}
.btn-primary:hover { background: var(--blurple-2); box-shadow: 0 8px 28px rgba(88,101,242,0.45); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--text-dim); background: var(--surface); }

/* ── Nav ──────────────────────────────────────────────────────────────── */
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10,12,18,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
nav.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
.brand .mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blurple), var(--purple));
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  color: white;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.nav-links a { text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    border: 1px solid var(--border); background: transparent; color: var(--text);
  }
}

/* ── Footer ───────────────────────────────────────────────────────────── */
footer.site {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 96px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-fine { font-size: 13px; color: var(--text-dim); margin-top: 24px; }

/* ── Legal pages ──────────────────────────────────────────────────────── */
.legal {
  padding: 64px 0 40px;
  max-width: 760px;
}
.legal h1 { font-size: clamp(28px, 5vw, 40px); margin-bottom: 10px; }
.legal .updated {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 40px;
  display: block;
}
.legal h2 {
  font-size: 19px;
  margin-top: 44px;
  margin-bottom: 12px;
  color: var(--text);
}
.legal p, .legal li { color: var(--text-muted); font-size: 15px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal a.inline { color: var(--blurple-2); text-decoration: underline; text-underline-offset: 2px; }

.notice-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.notice-box strong { color: var(--text); }

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 40px;
}
.toc .eyebrow { margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 24px; }
.toc li { font-size: 14px; margin-bottom: 8px; }
.toc a { text-decoration: none; color: var(--text-muted); }
.toc a:hover { color: var(--blurple-2); }
@media (max-width: 560px) { .toc ol { columns: 1; } }
