/* Заглушка pdfkonvert.ru в стиле облегчённого «бланка» PDF-нормы (токены — из ../PoForme/web/src/tokens.css). */

@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/pt-sans-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: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/pt-sans-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: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/pt-sans-cyrillic-700-normal.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/pt-sans-latin-700-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;
}

:root {
  --bg: #ffffff;
  --surface-2: #f5f6f9;
  --ink: #1a2130;
  --ink-2: #454d5e;
  --ink-3: #626a79;
  --line: #e3e6ec;
  --blue: #1f3f9a;
  --blue-2: #2c54c4;
  --r-doc: 4px;
  --r-ctl: 8px;
  --r-card: 12px;
  color-scheme: only light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: var(--surface-2);
  color: var(--ink);
  font: 16px/24px 'PT Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 2px;
}

.sheet {
  width: 100%;
  max-width: 560px;
  padding: 28px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

.kicker {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

h1 {
  margin: 0;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.01em;
}

.lead {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 26px;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* Двойная синяя линия — примета «бланка» там, где есть обещание */
.note {
  margin-top: 22px;
  padding: 16px 18px 18px;
  border: 1px solid var(--line);
  border-top: 3px double var(--blue);
  border-radius: var(--r-doc);
}

.note h2 {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}

.note p {
  margin: 6px 0 14px;
  font-size: 15px;
  line-height: 22px;
  color: var(--ink-2);
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--r-ctl);
  background: var(--blue);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.btn:hover {
  background: var(--blue-2);
}

@media (min-width: 600px) {
  .sheet {
    padding: 36px 40px;
  }
  h1 {
    font-size: 36px;
    line-height: 42px;
  }
}
