:root {
  --bg: #081018;
  --bg-soft: #0d1721;
  --surface: rgba(13, 22, 33, 0.78);
  --surface-strong: rgba(16, 27, 39, 0.94);
  --ink: #f4efe6;
  --muted: #a39c92;
  --line: rgba(244, 239, 230, 0.12);
  --accent: #e27a3f;
  --accent-deep: #85c9bb;
  --accent-soft: #332117;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(226, 122, 63, 0.17), transparent 28%),
    radial-gradient(circle at top right, rgba(133, 201, 187, 0.14), transparent 24%),
    linear-gradient(180deg, #071018 0%, #0a1118 48%, #05080d 100%);
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.6;
}

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

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

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

::selection {
  background: rgba(226, 122, 63, 0.28);
  color: #fff4ea;
}
