:root {
  --bg: #020617;
  --bg-soft: #020617;
  --surface: #0b1120;
  --surface-soft: #111827;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --accent: #6366f1;
  --accent-soft: rgba(99, 102, 241, 0.15);
  --accent-strong: #4f46e5;
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --text-softer: #6b7280;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0%, #020617 55%);
  color: var(--text-main);
}

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

a:hover {
  text-decoration: underline;
}
