:root {
  color-scheme: light;
  --bg: #f9f8f9;
  --surface: #ffffff;
  --text: #231d33;
  --muted: #6b6679;
  --border: #e6e5e8;
  --accent: #6239c6;
  --accent-dark: #5130a3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
}

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

a {
  color: var(--accent);
}
