:root {
  font-family: "Inter", "Sora", system-ui, -apple-system, sans-serif;
  color: #0b1b33;
  background-color: #e1ecff;
  --font-body: "Inter", "Sora", system-ui, -apple-system, sans-serif;
  --color-ink: #0b1b33;
  --color-muted: #5f6c7c;
  --color-panel: #ffffff;
  --color-panel-strong: #f7fbff;
  --color-surface: #eef5ff;
  --color-border: rgba(11, 27, 51, 0.08);
  --color-outline: rgba(15, 118, 254, 0.4);
  --color-accent: #0f81ef;
  --color-accent-strong: #0d4fe1;
  --color-shadow: rgba(11, 27, 51, 0.12);
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.25rem;
  --space-xl: 1.75rem;
  --space-xxl: 2.5rem;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(220, 238, 255, 0.8) 0%, #d9e9ff 40%, #cbe5ff 100%);
  color: var(--color-ink);
}

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

img {
  max-width: 100%;
  display: block;
}

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