/* ========================================
   Base Styles — Reset, body, typography
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-secondary);
}

h1, h2, h3, h4 {
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  color: var(--text-primary);
}

::selection {
  background: var(--accent-purple);
  color: #fff;
}

input:focus, textarea:focus, button:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 1px;
}

.text-muted {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
