:root {
  --bg: #000;
  --panel: #070707;
  --panel-raised: #0c0c0c;
  --line: #242424;
  --line-soft: #151515;
  --text: #f5f5f5;
  --muted: #989898;
  --dim: #5f5f5f;
  --focus: #fff;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-size: 1.75rem;
  letter-spacing: 0;
}

h3 {
  font-size: 0.95rem;
  font-weight: 650;
}

strong {
  font-weight: 650;
}

.muted {
  color: var(--muted);
}
