:root {
  --bg: #0f172a;
  --panel: rgba(17, 24, 39, 0.92);
  --panel-2: rgba(255, 255, 255, 0.04);

  --text: #e5e7eb;
  --muted: #9ca3af;

  --line: rgba(255, 255, 255, 0.08);

  --accent: #38bdf8;
  --danger: #f87171;

  --radius: 18px;
  --radius-sm: 12px;

  --max: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: #020617;
  color: var(--text);
}

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
}

h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  margin: 0;
  line-height: 1.6;
}
