@font-face {
  font-family: "Montserrat Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/montserrat-cyrillic-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/montserrat-latin-wght-normal.woff2") format("woff2-variations");
  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: "Montserrat Alternates";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/fonts/montserrat-alternates-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: "Montserrat Alternates";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/fonts/montserrat-alternates-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: "Montserrat Alternates";
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url("/fonts/montserrat-alternates-cyrillic-800-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat Alternates";
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url("/fonts/montserrat-alternates-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;
}

:root {
  color-scheme: light;
  --background: #fffbf8;
  --surface: #e0e0e0;
  --surface-elevated: #ffffff;
  --accent: #da4e1b;
  --accent-hover: #ec5624;
  --accent-pressed: #bd4015;
  --ink: #070707;
  --ink-muted: #4c4946;
  --line: rgb(7 7 7 / 0.14);
  font-family: "Montserrat Variable", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  padding-top: 50px;
}

.site-header__inner {
  display: flex;
  width: min(1826px, calc(100% - 56px));
  min-height: 96px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
}

.logo-link img {
  width: 245px;
  height: 48px;
}

.home-link {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 18px 25px;
  border: 1px solid var(--accent);
  border-radius: 20px;
  background: var(--accent);
  color: white;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.home-link:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.home-link:active {
  border-color: var(--accent-pressed);
  background: var(--accent-pressed);
  transform: translateY(0);
}

.page-intro {
  width: min(1570px, calc(100% - 56px));
  margin: 0 auto;
  padding: 110px 0 120px;
  text-align: center;
}

.page-intro h1 {
  margin: 0;
  font-family: "Montserrat Alternates", "Montserrat Variable", system-ui, sans-serif;
  font-size: clamp(54px, 5.25vw, 100px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.page-intro h1 span {
  color: var(--accent);
}

.page-intro__lead {
  max-width: 1020px;
  margin: 60px auto 0;
  color: var(--ink);
  font-size: clamp(21px, 1.7vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  text-wrap: balance;
}

.page-intro__revision {
  margin: 34px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  font-weight: 600;
}

.document-layout {
  display: grid;
  width: min(1400px, calc(100% - 56px));
  margin: 0 auto;
  padding-bottom: 250px;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}

.document-nav {
  position: sticky;
  top: 30px;
  padding: 40px;
  border-radius: 45px;
  background: var(--surface);
}

.document-nav h2 {
  margin: 0 0 24px;
  font-family: "Montserrat Alternates", "Montserrat Variable", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.document-nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-nav li + li {
  border-top: 1px solid var(--line);
}

.document-nav a {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition:
    color 150ms ease,
    transform 150ms ease;
}

.document-nav a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.document-nav__number {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.document {
  overflow: hidden;
  border-radius: 45px;
  background: var(--surface);
}

.operator-notice {
  padding: 60px;
  background: var(--accent);
  color: white;
}

.operator-notice h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Montserrat Alternates", "Montserrat Variable", system-ui, sans-serif;
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.operator-notice p {
  max-width: 780px;
  margin: 32px 0 0;
  color: rgb(255 255 255 / 0.9);
  font-size: 20px;
  line-height: 1.6;
}

.operator-notice a {
  color: white;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.operator-details {
  max-width: 780px;
  margin: 36px 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.28);
}

.operator-details div {
  display: grid;
  grid-template-columns: minmax(148px, 220px) minmax(0, 1fr);
  gap: 8px 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.28);
}

.operator-details dt {
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.operator-details dd {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.document__body {
  padding: 0 60px 20px;
}

.policy-section {
  padding: 58px 0 52px;
  scroll-margin-top: 30px;
}

.policy-section + .policy-section {
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  max-width: 800px;
  margin: 0 0 28px;
  font-family: "Montserrat Alternates", "Montserrat Variable", system-ui, sans-serif;
  font-size: clamp(29px, 2.25vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.policy-section p,
.policy-section li {
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 1.65;
}

.policy-section p {
  margin: 0;
}

.policy-section p + p,
.policy-section ul + p,
.policy-section p + ul {
  margin-top: 22px;
}

.policy-section ul {
  margin-bottom: 0;
  padding-left: 26px;
}

.policy-section li + li {
  margin-top: 10px;
}

.policy-section li::marker {
  color: var(--accent);
}

.policy-section a {
  color: var(--accent);
  font-weight: 650;
  text-decoration-color: rgb(218 78 27 / 0.4);
  text-underline-offset: 4px;
  transition: color 150ms ease;
}

.policy-section a:hover {
  color: var(--accent-hover);
}

.site-footer {
  overflow: hidden;
  border-radius: 48px 48px 0 0;
  background: var(--accent);
  color: #eeeeee;
}

.site-footer__inner {
  display: grid;
  width: min(1826px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 48px;
  gap: 48px;
}

.site-footer__brand {
  display: inline-block;
  font-family: "Montserrat Alternates", "Montserrat Variable", system-ui, sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.site-footer__brand:hover {
  opacity: 0.8;
}

.site-footer__description {
  max-width: 885px;
  margin: 32px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.site-footer__secondary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 20px;
}

.site-footer__nav a {
  color: rgb(255 255 255 / 0.75);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: white;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.25);
  color: rgb(255 255 255 / 0.65);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.site-footer__requisites {
  max-width: 520px;
  line-height: 1.45;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 12px;
}

.site-footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-footer__legal a:hover {
  color: white;
}

@media (min-width: 640px) {
  .site-footer {
    border-radius: 80px 80px 0 0;
  }

  .site-footer__inner {
    width: min(1826px, calc(100% - 64px));
    padding: 80px 0 60px;
    gap: 64px;
  }

  .site-footer__brand {
    font-size: 72px;
  }

  .site-footer__description {
    margin-top: 40px;
    font-size: 22px;
  }

  .site-footer__nav {
    column-gap: 40px;
    row-gap: 24px;
  }

  .site-footer__nav a {
    font-size: 18px;
  }

  .site-footer__legal {
    padding-top: 24px;
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    border-radius: 120px 120px 0 0;
  }

  .site-footer__inner {
    width: min(1826px, calc(100% - 96px));
  }

  .site-footer__brand {
    font-size: 88px;
  }

  .site-footer__description {
    font-size: 24px;
  }
}

@media (min-width: 1280px) {
  .site-footer__inner {
    min-height: 520px;
    padding-top: 96px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 80px;
  }

  .site-footer__secondary {
    padding-top: 8px;
  }
}

@media (min-width: 1700px) {
  .site-footer {
    border-radius: 200px 200px 0 0;
  }

  .site-footer__inner {
    width: min(1826px, 100%);
    min-height: 578px;
    padding-top: 136px;
    grid-template-columns: 885px minmax(0, 1fr);
    gap: 180px;
  }

  .site-footer__brand {
    font-size: 128px;
  }

  .site-footer__description {
    margin-top: 60px;
    font-size: 32px;
    line-height: normal;
  }

  .site-footer__secondary {
    padding-top: 10px;
    gap: 60px;
  }

  .site-footer__nav a {
    font-size: 24px;
  }
}

:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 3px;
  border-radius: 7px;
}

::selection {
  background: rgb(218 78 27 / 0.35);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--background);
  border-radius: 999px;
  background: rgb(7 7 7 / 0.18);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(7 7 7 / 0.3);
}

@media (max-width: 1100px) {
  .document-layout {
    grid-template-columns: 1fr;
  }

  .document-nav {
    position: static;
  }

  .document-nav ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }

  .document-nav li:nth-child(2) {
    border-top: 0;
  }

}

@media (max-width: 700px) {
  .site-header {
    padding-top: 20px;
  }

  .site-header__inner {
    width: min(100% - 32px, 1826px);
    min-height: 64px;
  }

  .logo-link img {
    width: 173px;
    height: auto;
  }

  .home-link {
    min-height: 48px;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 16px;
  }

  .page-intro {
    width: min(100% - 32px, 1570px);
    padding: 72px 0 80px;
  }

  .page-intro h1 {
    font-size: clamp(40px, 12.4vw, 58px);
    letter-spacing: -0.05em;
  }

  .page-intro__lead {
    margin-top: 34px;
    font-size: 19px;
  }

  .page-intro__revision {
    margin-top: 24px;
    font-size: 14px;
  }

  .document-layout {
    width: min(100% - 32px, 1400px);
    padding-bottom: 120px;
  }

  .document-nav {
    padding: 28px;
    border-radius: 30px;
  }

  .document-nav h2 {
    font-size: 25px;
  }

  .document-nav ol {
    display: block;
  }

  .document-nav li:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .document {
    border-radius: 30px;
  }

  .operator-notice {
    padding: 34px 28px 38px;
  }

  .operator-notice h2 {
    font-size: 32px;
  }

  .operator-notice p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.55;
  }

  .operator-details {
    margin-top: 28px;
  }

  .operator-details div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }

  .operator-details dt {
    font-size: 12px;
  }

  .operator-details dd {
    font-size: 16px;
  }

  .document__body {
    padding: 0 28px 8px;
  }

  .policy-section {
    padding: 40px 0 36px;
  }

  .policy-section h2 {
    margin-bottom: 22px;
    font-size: 27px;
  }

  .policy-section p,
  .policy-section li {
    font-size: 17px;
    line-height: 1.6;
  }

}

@media (max-width: 470px) {
  .site-header__inner {
    align-items: flex-start;
    gap: 12px;
  }

  .logo-link img {
    width: 140px;
  }

  .home-link {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .page-intro h1 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .document-nav,
  .site-footer {
    display: none;
  }

  .page-intro {
    padding: 0 0 40px;
  }

  .document-layout {
    display: block;
    width: 100%;
    padding: 0;
  }

  .document,
  .operator-notice {
    background: white;
    color: black;
  }

  .operator-notice {
    padding: 0 0 32px;
  }

  .operator-notice p {
    color: black;
  }

  .operator-details {
    border-top-color: #d8d8d8;
  }

  .operator-details div {
    border-bottom-color: #d8d8d8;
  }

  .operator-details dt,
  .operator-details dd {
    color: black;
  }
}
