/* ── Reset & Variables ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:        #070c18;
  --bg-dark:        #0d1321;
  --bg-card:        #111827;
  --bg-card-h:      #151e30;
  --blue:           #2563eb;
  --blue-l:         #3b82f6;
  --blue-dim:       rgba(37, 99, 235, 0.14);
  --blue-glow:      rgba(59, 130, 246, 0.30);
  --amber:          #f59e0b;
  --text-w:         #f9fafb;
  --text-g:         #9ca3af;
  --text-gl:        #d1d5db;
  --border:         rgba(255, 255, 255, 0.07);
  --border-b:       rgba(59, 130, 246, 0.30);
  --font:           'Inter', sans-serif;
  --r:              12px;
  --rl:             20px;
  --t:              0.25s ease;
}

html  { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-w);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  width: 100%;
  justify-content: space-between;
}
.btn--primary:hover {
  background: var(--blue-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--blue-glow);
}
.btn--primary .btn-icon { font-size: 18px; }

.btn--secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text-w);
  border: 1px solid var(--border);
  width: 100%;
  justify-content: space-between;
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--border-b);
}

/* ── Pill badge ──────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--blue-dim);
  border: 1px solid var(--border-b);
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--blue-l);
  font-weight: 500;
}
.pill::before { content: '●'; font-size: 7px; }

/* ── Tag chips ───────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-gl);
}
