:root {
  --zoa-blue: 110 193 228;
  --zoa-green: 85 172 104;
  --zoa-dark: 20 30 38;
  --zoa-slate: 64 74 84;
  --zoa-mist: 241 247 251;
  --zoa-sand: 247 249 245;
  --zoa-white: 255 255 255;
  --shadow-lg: 0 24px 60px rgb(12 32 48 / 0.12), 0 8px 22px rgb(12 32 48 / 0.08);
  --shadow-sm: 0 12px 30px rgb(12 32 48 / 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1140px;
  --font-display: "Sora", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgb(var(--zoa-dark));
  background: linear-gradient(135deg, rgb(var(--zoa-mist)) 0%, rgb(247 249 252) 45%, rgb(var(--zoa-sand)) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: rgb(var(--zoa-green));
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  margin: 0;
}

button,
input,
textarea {
  font-family: inherit;
}
