:root {
  --bg: #f3efe4;
  --bg-deep: #31724e;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #084e17;
  --muted: #4f5d6b;
  --accent: #084e17;
  --accent-strong: #738b71;
  --accent-soft: rgba(11, 123, 108, 0.12);
  --border: rgba(35, 45, 55, 0.14);
  --shadow: rgba(21, 31, 40, 0.14);
  --radius: 16px;
  --font-sans: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 221, 168, 0.45), transparent 95%),
    radial-gradient(circle at 85% 5%, rgba(88, 199, 196, 0.28), transparent 48%),
    linear-gradient(135deg, var(--bg), var(--bg-deep));
}

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

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

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

p {
  margin: 0;
}

::selection {
  background: rgba(11, 123, 108, 0.2);
}
