:root {
  color-scheme: light;
  --bg: #f4f4f4;
  --ink: #111111;
  --muted: rgba(17, 17, 17, .56);
  --soft: rgba(17, 17, 17, .08);
  --line: #d8d5cf;
  --card: #ffffff;
  --blue: #2563eb;
  --orange: #f46f45;
  --green: #35b86f;
  --yellow: #f1c94a;
  --pink: #ef6da8;
  --ease: cubic-bezier(.62, .61, .02, 1);
  --motion-ease: cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.18, 1.18, .32, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --mono: var(--font);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0;
}

body.is-home {
  height: 100svh;
  overflow: hidden;
}

a,
button {
  color: inherit;
}

button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: .3rem;
}

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

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