@import url("/design-tokens.css");
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/manrope-latin-400-normal.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;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/manrope-cyrillic-400-normal.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: 600;
  font-display: swap;
  src: url("/fonts/manrope-latin-600-normal.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;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/manrope-cyrillic-600-normal.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: 800;
  font-display: swap;
  src: url("/fonts/manrope-latin-800-normal.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;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/manrope-cyrillic-800-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
:root {
  font-family: var(--font-ui);
  color: var(--color-ink);
  background: var(--color-canvas);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 7%;
  border-bottom: 1px solid var(--color-border);
  gap: 20px;
}
.brand {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -2px;
}
.brand span {
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0;
  color: var(--color-muted);
  margin-left: 15px;
}
.action,
button {
  display: inline-block;
  background: var(--color-brand);
  color: white;
  padding: 13px 20px;
  border: 0;
  border-radius: 7px;
  font-size: 12px;
}
main {
  max-width: 1120px;
  margin: auto;
  padding: 75px 30px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-muted);
}
h1 {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -2px;
  line-height: 1.1;
}
.lead {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 600px;
}
form {
  display: flex;
  gap: 10px;
  margin: 35px 0;
}
input {
  padding: 13px;
  border: 1px solid var(--color-border);
  border-radius: 7px;
  background: white;
  max-width: 400px;
  width: 100%;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 25px;
  background: white;
}
.card h2 {
  font-size: 19px;
  line-height: 1.5;
}
.card small,
.card span {
  color: var(--color-muted);
  font-size: 11px;
}
.empty {
  padding: 40px;
  border: 1px dashed var(--color-selected);
  color: var(--color-muted);
  grid-column: 1/-1;
  border-radius: 10px;
}
article {
  white-space: pre-wrap;
  line-height: 1.9;
  font-size: 15px;
  max-width: 800px;
  margin-bottom: 40px;
  overflow-wrap: anywhere;
}
footer {
  border-top: 1px solid var(--color-border);
  margin: 30px 7%;
  padding-top: 25px;
  color: var(--color-muted);
  font-size: 11px;
}
@media (max-width: 600px) {
  .brand span {
    display: none;
  }
  header {
    padding: 20px;
  }
  .action {
    font-size: 10px;
    padding: 11px;
  }
  main {
    padding: 45px 22px;
  }
}

button,
.action {
  font-family: var(--font-ui);
  font-size: 14px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
input {
  font: inherit;
  font-size: 14px;
  min-height: 44px;
  border-color: var(--color-border-strong);
  border-radius: var(--radius-sm);
}
button:hover,
.action:hover {
  background: var(--color-brand-hover);
}
:where(a, button, input):focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}
.lead,
.card small,
.card span,
.empty,
footer,
.eyebrow,
.brand span {
  color: var(--color-muted);
}
.card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

button,.action {box-shadow:var(--shadow-control);transition:box-shadow var(--duration-fast),transform var(--duration-fast)}
button:hover,.action:hover {box-shadow:var(--shadow-control-hover);transform:none}
button:active,.action:active {box-shadow:var(--shadow-control-pressed);transform:translateY(1px)}
input {box-shadow:var(--shadow-field)}
@media(prefers-reduced-motion:reduce){button,.action{transition:none}button:hover,.action:hover,button:active,.action:active{transform:none}}

body{background:var(--color-surface)}.card{box-shadow:none}article{line-height:1.85}main{padding-top:88px;padding-bottom:88px}
