@font-face {
  font-family: 'Behove';
  src: url('behove.regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg:       #111008;
  --bg2:      #161309;
  --surface:  #1e1a0f;
  --border:   rgba(245,160,0,.15);
  --border2:  rgba(255,255,255,.07);
  --gold:     #f5a000;
  --gold-h:   #ffb733;
  --gold-dim: rgba(245,160,0,.12);
  --text:     #ffffff;
  --muted:    rgba(255,255,255,.55);
  --subtle:   rgba(255,255,255,.35);
  --success:  #22c55e;
  --error:    #ef4444;
  --radius:   6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Behove', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(rgba(245,160,0,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

nav {
  display: flex; align-items: center;
  padding: 0 48px; height: 64px;
  background: rgba(17,16,8,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
  position: sticky; top: 0; z-index: 100;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: -.01em; flex-shrink: 0;
}
.logo svg { width: 24px; height: 24px; }

footer {
  border-top: 1px solid var(--border2);
  font-size: .78rem;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--gold); }

.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(13,11,0,.3); border-top-color: #0d0b00;
  border-radius: 50%; animation: spin .5s linear infinite; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
