:root {
  --color-background: #f7f7f2;
  --color-surface: #ffffff;
  --color-text: #151515;
  --color-muted: #626262;
  --color-border: #dcd8ce;
  --color-accent: #23ACCF;
  --color-accent-dark: #1B8FAE;
  --shadow-soft: 0 18px 48px rgba(20, 20, 20, 0.08);
  --container-width: 1120px;
  --space-page: clamp(1rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
