/* ─── L8S SHARED STYLES ─── */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600;700&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --bg:           #0a0a0a;
  --surface:      #141414;
  --surface-alt:  #1a1a1a;
  --border:       #2a2a2a;
  --border-light: #222222;
  --ink:          #f0f0f0;
  --ink-mid:      #888888;
  --ink-dim:      #707070;
  --green:        #38c878;
  --green-bg:     #081810;
  --green-border: #0f3020;
  --blue:         #60a0e8;
  --blue-bg:      #081018;
  --blue-border:  #102038;
  --amber:        #e0a020;
  --amber-bg:     #181208;
  --amber-border: #382808;
  --violet:       #a878e8;
  --violet-bg:    #100818;
  --violet-border:#281838;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(
    ellipse 700px 700px at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,.04) 0%, transparent 70%
  );
}

/* ─── SITE NAV ─── */
.sitenav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 52px;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.sitenav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.sitenav-brand .logo-mark {
  width: 26px; height: 26px; background: var(--ink); border-radius: 6px;
  display: grid; place-items: center;
  font-family: 'IBM Plex Mono', monospace; color: var(--bg);
  font-size: .65rem; font-weight: 700;
}
.sitenav-brand .brand-name {
  font-weight: 800; font-size: 1rem; letter-spacing: -0.5px;
}
.sitenav-links {
  display: flex; align-items: center; gap: 4px;
}
.sitenav-link {
  text-decoration: none; color: var(--ink-dim);
  font-size: .78rem; font-weight: 500;
  padding: 6px 14px; border-radius: 8px;
  transition: background .15s, color .15s;
  position: relative;
}
.sitenav-link:hover { background: var(--surface); color: var(--ink); }
.sitenav-link.active {
  color: var(--ink); background: var(--surface);
}
.sitenav-link.active::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px; background: var(--ink); border-radius: 2px;
}
.sitenav-right {
  display: flex; align-items: center; gap: 12px;
}
.live-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-bg); border: 1px solid var(--green-border); color: var(--green);
  padding: 4px 12px; border-radius: 100px;
  font-family: 'IBM Plex Mono', monospace; font-size: .6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.live-dot {
  display: none;
}

/* ─── PAGE WRAPPER ─── */
.page { padding-top: 52px; }

/* ─── MOUSE TRACKING ─── */
/* JS sets --mx/--my on body */

/* ─── ANIMATIONS ─── */
@keyframes fadein    { to { opacity:1; transform:translateY(0); } }
@keyframes fadein-up { to { opacity:1; transform:translateY(0); } }
@keyframes pop-in    { from { transform:scale(0); opacity:0; } to { transform:scale(1); opacity:1; } }
@keyframes bounce    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(5px); } }
