/* Vortex Base — Reset + global element styles */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.5;
  background: var(--bg-body);
  color: var(--text-primary);
  min-height: 100vh;
}

a { color: var(--accent-blue); text-decoration: none; transition: color var(--transition-fast); }
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

details { margin: var(--sp-4) 0; }
summary {
  cursor: pointer;
  padding: 10px var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: var(--text-md);
  color: var(--text-secondary);
  transition: background var(--transition-fast);
}
summary:hover { background: var(--bg-hover); }

table { width: 100%; border-collapse: collapse; }

::selection {
  background: var(--accent-blue-light);
  color: var(--text-primary);
}
