/* ── Reset & Base ── */

/* ── Feather Icon Helpers ── */

.feather-icon {
  display: inline-block;
  vertical-align: -0.125em;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-secondary);
  padding-top: calc(var(--header-height) + 4px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ── */

h1 { font-size: 2.5rem; line-height: 1.2; color: var(--text-primary); }
h2 { font-size: 1.5rem; line-height: 1.3; color: var(--text-primary); margin-bottom: var(--space-md); }
h3 { font-size: 1.125rem; line-height: 1.4; color: var(--text-primary); }
p { color: var(--text-secondary); }
small { font-size: 0.875rem; color: var(--text-muted); }

/* ── Text Selection ── */

::selection {
  background: var(--color-primary-muted);
  color: inherit;
}

::-moz-selection {
  background: var(--color-primary-muted);
  color: inherit;
}
