:root {
  color-scheme: dark;
  --color-bg: #0f172a;
  --color-surface: #111827;
  --color-table: #0f6b4d;
  --color-table-deep: #064e3b;
  --color-text: #f8fafc;
  --color-muted: #cbd5e1;
  --color-accent: #f43f5e;
  --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.32);
  --font-sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 50% 20%, rgba(15, 107, 77, 0.42), transparent 34rem),
    linear-gradient(145deg, var(--color-bg), #020617);
}

button,
input,
select,
textarea {
  font: inherit;
}

noscript {
  display: block;
  padding: 1rem;
  color: #111827;
  background: #fef3c7;
}
