/* ============================================================
   BASE — Reset, Body, Typography
   ============================================================ */

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

/* ── Scroll ───────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

/* ── Body ─────────────────────────────────────────────────── */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 0%,   rgba(99, 102, 241, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%,  rgba(99, 102, 241, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%,   rgba(99, 102, 241, 0.02) 0%, transparent 70%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Selection ────────────────────────────────────────────── */
::selection {
  background: rgba(99, 102, 241, 0.3);
  color: #fff;
}

/* ── Links ────────────────────────────────────────────────── */
a {
  color: inherit;
  text-decoration: none;
}

/* ── Images ───────────────────────────────────────────────── */
img {
  max-width: 100%;
  display: block;
}

/* ── Focus ────────────────────────────────────────────────── */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

/* ── Skip link ────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: 12px;
}
