:root {
  --color-black: #171717;
  --color-white: #ffffff;
  --color-gray-25: #fcfcfb;
  --color-gray-50: #fafaf8;
  --color-gray-100: #f3f3f0;
  --color-gray-200: #e5e5e1;
  --color-gray-300: #d0d0cb;
  --color-gray-500: #73736f;
  --color-gray-600: #5a5a56;
  --color-gray-800: #2b2b29;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Roboto Mono", Consolas, monospace;
  --page-width: 1200px;
  --page-gutter: clamp(1rem, 4vw, 2rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-sans);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

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

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

button {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
