:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f3f8ff;
  --card: #ffffff;
  --text: #101828;
  --muted: #667085;
  --border: #d8e7ff;
  --accent: #2f80ed;
  --accent-soft: #e8f2ff;
  --danger: #e11d48;
  --success: #079455;
  --warning: #b54708;
  --info: #2563eb;
  --shadow: 0 18px 50px rgba(33, 83, 152, 0.12);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --topbar-height: 64px;
  --color-muted: var(--muted);
  --color-text: var(--text);
  --color-border: var(--border);
  --color-surface-alt: var(--bg-soft);
  --color-primary-400: var(--accent);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background:
    linear-gradient(180deg, rgba(47, 128, 237, 0.08), transparent 300px),
    var(--bg);
  color: var(--text);
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
