@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-cyrillic-variable.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

: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);
  --entry-title-size: clamp(2.75rem, 4.4vw, 4rem);
  --mobile-title-size: clamp(2.375rem, 10vw, 2.75rem);
  --font: "Manrope", -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;
}

.entry-title {
  margin: 0;
  font-size: var(--entry-title-size);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em;
  overflow-wrap: normal;
  text-wrap: balance;
}

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;
  }
}
