/* Author: Yuri Andryushin */
@font-face {
  font-family: Manrope;
  src: url("/support-assets/fonts/Manrope.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Prata;
  src: url("/support-assets/fonts/Prata.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --paper: #0e1719;
  --ink: #e7eeea;
  --muted: #a8b7b1;
  --green: #bdd9c0;
  --sage: #1a292b;
  --line: #334344;
  --lime: #d0e4ae;
  --serif: Prata, Georgia, serif;
  --sans: Manrope, "Trebuchet MS", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input {
  touch-action: manipulation;
}
a:focus-visible {
  outline: 3px solid #bdd9c0;
  outline-offset: 6px;
  border-radius: 3px;
}
svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-weight: 400;
  font-family: var(--serif);
}
h3 {
  font-weight: 700;
}
::selection {
  background: #365845;
}
.site-wrap {
  max-width: 1240px;
  margin: auto;
  padding: 0 48px;
}
.skip-link {
  position: absolute;
  top: 8px;
  left: 12px;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--paper);
  z-index: 10;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0.04em;
}
.brand-mark {
  position: relative;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid #637d71;
  border-radius: 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -2px;
}
.brand-mark span {
  font-family: var(--sans);
  font-size: 15px;
  position: absolute;
  right: -5px;
  top: -8px;
  letter-spacing: 0;
  background: var(--paper);
  line-height: 1;
  padding: 1px;
}
.site-header nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 12px;
  font-weight: 650;
}
.site-header nav > a {
  padding: 10px 0;
  position: relative;
}
.site-header nav > a[aria-current]:after {
  content: "";
  height: 3px;
  width: 20px;
  background: var(--green);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}
.site-header nav > a:hover {
  color: #d0e4ae;
}
.site-header .language-switch {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  font-size: 10px;
  letter-spacing: 0.02em;
  padding: 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 100px;
  padding: 86px 0 78px;
  align-items: center;
}
.hero-copy {
  padding: 4px 0;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 750;
  display: block;
  line-height: 1.65;
  color: #a9bfb1;
}
.hero-copy > .eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
}
.status-dot {
  height: 6px;
  width: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #b6d7a0;
}
.hero h1 {
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.27;
  letter-spacing: -0.04em;
  margin: 30px 0 24px;
}
.hero h1 span {
  color: #a0b5aa;
}
.hero-lead {
  max-width: 425px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.developer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 34px 0;
}
.developer-monogram {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #223738;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.developer strong {
  display: block;
  font-weight: 700;
  font-size: 12px;
}
.developer div > span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
  padding: 7px 0;
}
.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.18s ease;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.policy-shortcut {
  display: flex;
  margin-top: 6px;
  font-weight: 500;
  color: var(--muted);
}
.contact-card {
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 24px 32px 23px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.contact-card .eyebrow {
  font-size: 8px;
  letter-spacing: 0.13em;
}
.tiny-star {
  font-size: 26px;
  font-weight: 400;
  color: #bdd9c0;
  line-height: 1;
}
.contact-card h2 {
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.contact-card > p {
  font-size: 12px;
  line-height: 1.9;
  max-width: 285px;
  margin: 0 auto 23px;
  color: #b0c0b7;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 49px;
  padding: 13px 20px;
  border-radius: 4px;
  font-weight: 650;
  font-size: 12px;
  line-height: 1.4;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--green);
  color: #182a20;
  width: 100%;
  text-align: left;
}
.button.primary > svg:first-child {
  width: 18px;
  height: 18px;
}
.button.primary > svg:last-child {
  margin-left: auto;
  width: 17px;
  height: 17px;
}
.button.primary > span {
  flex: 1;
}
.button.primary:hover {
  background: #d3e6bd;
}
.button.secondary {
  border: 1px solid #526962;
  background: transparent;
}
.button.secondary:hover {
  background: var(--sage);
}
.contact-note {
  display: block;
  font-size: 9px;
  color: #a8b9af;
  margin-top: 11px;
}
.letter-illustration {
  position: relative;
  width: 212px;
  height: 160px;
  margin: 35px auto 13px;
  transform: rotate(-7deg);
}
.letter-paper {
  width: 134px;
  height: 110px;
  position: absolute;
  top: 0;
  left: 32px;
  transform: rotate(5deg);
  background: #dce5d5;
  box-shadow: 0 5px 18px #00000040;
  padding: 22px 18px;
  border: 1px solid #c5d4bd;
}
.letter-paper span {
  display: block;
  width: 60px;
  height: 2px;
  background: #8d9f86;
  margin-bottom: 8px;
}
.letter-paper span:nth-child(2) {
  width: 81px;
}
.letter-paper span:nth-child(3) {
  width: 45px;
}
.letter-paper b {
  position: absolute;
  right: 15px;
  bottom: 11px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: #3e654b;
}
.letter-envelope {
  width: 194px;
  height: 107px;
  background: #6a8264;
  position: absolute;
  bottom: 8px;
  left: 9px;
  clip-path: polygon(0 0, 50% 53%, 100% 0, 100% 100%, 0 100%);
  border-radius: 2px;
}
.letter-envelope:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #a8bc98;
  clip-path: polygon(0 0, 50% 60%, 100% 0, 100% 100%, 0 100%);
}
.letter-envelope:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #91aa80;
  clip-path: polygon(0 100%, 50% 44%, 100% 100%);
}
.letter-stamp {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  position: absolute;
  right: -3px;
  top: 24px;
  transform: rotate(20deg);
  border: 1px dashed #82976e;
  background: #d3e2ba;
  outline: 4px solid #d3e2ba;
  color: #546a43;
  font-size: 25px;
  line-height: 1;
}
.applications {
  border-top: 1px solid var(--line);
  padding: 44px 0 58px;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 27px;
}
.section-title h2 {
  font-size: 29px;
  letter-spacing: -0.03em;
  line-height: 1.4;
  margin-top: 10px;
}
.section-title > p {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}
.app-tile {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 15px;
  gap: 13px;
  align-items: start;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}
.app-tile:hover {
  background: #eceee4;
  border-color: #b8c3ae;
  transform: translateY(-2px);
}
.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #00000008;
}
.app-initial {
  display: grid;
  place-items: center;
  background: #dfe6d4;
  color: #496445;
  font-size: 24px;
  font-family: var(--serif);
}
.app-tile h3 {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 5px;
  overflow-wrap: anywhere;
}
.app-tile p {
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.app-arrow svg {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  color: #6b7c60;
}
.help-section {
  border-top: 1px solid var(--line);
  padding: 50px 0 61px;
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: 80px;
}
.help-section h2 {
  font-size: 29px;
  line-height: 1.5;
  letter-spacing: -0.035em;
  margin-top: 14px;
}
.help-steps {
  display: grid;
  gap: 22px;
}
.help-steps > div {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.help-steps > div > span {
  font-size: 10px;
  color: #b6c89d;
  padding-top: 2px;
  font-weight: 600;
}
.help-steps p {
  font-size: 11px;
  line-height: 1.85;
  color: var(--muted);
}
.help-steps strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 3px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 27px 0 30px;
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer > div {
  display: flex;
  gap: 22px;
}
.site-footer a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-footer svg {
  width: 12px;
  height: 12px;
}
.footer-note {
  font-size: 9px;
  letter-spacing: 0.015em;
}
.page-intro {
  padding: 70px 0 48px;
}
.page-intro h1 {
  font-size: clamp(35px, 4.4vw, 54px);
  line-height: 1.3;
  letter-spacing: -0.035em;
  margin: 23px 0 19px;
}
.page-intro > p {
  max-width: 630px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 70px;
  padding: 0 0 65px;
}
.contents {
  align-self: start;
  position: sticky;
  top: 32px;
  border-top: 1px solid var(--line);
  padding: 23px 0;
}
.contents > a {
  font-size: 11px;
  display: block;
  margin-top: 16px;
  color: var(--muted);
}
.privacy-main {
  max-width: 710px;
}
.privacy-main h2 {
  font-size: 27px;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.privacy-main p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.95;
}
.privacy-main > section {
  padding: 27px 0 37px;
  border-top: 1px solid var(--line);
}
.privacy-main .small-note {
  font-size: 11px;
}
.policy-list {
  display: grid;
  margin: 23px 0;
}
.policy-list > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 650;
  transition: background 0.2s;
}
.policy-list > a:hover {
  background: var(--sage);
}
.policy-list > a + a {
  margin-top: 10px;
}
.policy-list small {
  font-size: 10px;
  color: var(--muted);
  display: block;
  font-weight: 400;
  margin-top: 2px;
}
.privacy-main .prose > .eyebrow {
  margin-bottom: 14px;
}
.prose h2,
.prose h3,
.prose h4 {
  margin-top: 30px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.prose h3,
.prose h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
}
.prose p,
.prose li {
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 17px;
  color: #b4c1bc;
  overflow-wrap: anywhere;
}
.prose a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #7f9e8d;
}
.prose ul {
  padding-left: 22px;
}
.prose li {
  margin-bottom: 8px;
}
.document-meta {
  color: var(--muted);
  font-size: 10px !important;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.document-meta a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.document-meta svg {
  width: 14px;
  height: 14px;
}
.privacy-contact > .button {
  margin-top: 20px;
}
.document-intro {
  max-width: 810px;
  margin: auto;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
}
.document-intro > .text-link {
  margin-bottom: 22px;
  font-size: 10px;
  color: var(--muted);
}
.document-intro > .eyebrow {
  margin-top: 12px;
}
.document-intro h1 {
  font-size: clamp(31px, 4vw, 48px);
}
.document-body {
  max-width: 810px;
  margin: 35px auto 50px;
}
.document-body h2 {
  font-size: 26px;
}
.document-help {
  max-width: 810px;
  margin: 0 auto 66px;
  border-top: 1px solid var(--line);
  padding-top: 33px;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
}
.document-help h2 {
  font-size: 21px;
}
.plain-document {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
.not-found {
  max-width: 700px;
  min-height: 55vh;
  padding: 100px 0;
}
.not-found h1 {
  font-size: 44px;
}
.not-found p {
  margin: 20px 0;
  color: var(--muted);
}
.contact-intro,
.contact-guidance,
.contact-methods {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.contact-methods {
  display: grid;
  gap: 14px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 7px;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}
.contact-method:hover {
  background: #223537;
  border-color: #7f9e8d;
}
.mail-monogram {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  background: #2c4340;
  border-radius: 10px;
  font-size: 23px;
  font-weight: 650;
  color: var(--green);
}
.contact-method strong {
  display: block;
  font-size: 16px;
  font-weight: 650;
}
.contact-method small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.contact-method > svg {
  margin-left: auto;
  color: var(--green);
  width: 19px;
}
.contact-guidance {
  padding: 27px 0 65px;
}
.contact-guidance p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .contact-method {
    padding: 20px 16px;
    gap: 13px;
  }
  .contact-method strong {
    font-size: 14px;
  }
  .contact-method small {
    font-size: 11px;
  }
  .mail-monogram {
    width: 37px;
    height: 37px;
    font-size: 20px;
  }
  .contact-guidance {
    padding-bottom: 40px;
  }
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-copy {
  animation: appear 0.55s ease-out both;
}
.contact-card {
  animation: appear 0.6s 0.08s ease-out both;
}
.applications {
  animation: appear 0.6s 0.16s ease-out both;
}
@media (min-width: 1450px) {
  .site-wrap {
    max-width: 1300px;
  }
  .hero {
    gap: 135px;
    padding-top: 94px;
  }
  .hero h1 {
    font-size: 64px;
  }
}
@media (max-width: 1050px) {
  .site-wrap {
    padding: 0 32px;
  }
  .hero {
    gap: 46px;
    padding: 65px 0;
  }
  .hero h1 {
    font-size: 47px;
  }
  .contact-card {
    padding: 23px 25px;
  }
  .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .app-tile p {
    font-size: 11px;
  }
  .help-section {
    gap: 45px;
  }
  .privacy-layout {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 35px;
  }
  .site-header nav {
    gap: 23px;
  }
}
@media (max-width: 740px) {
  .site-wrap {
    padding: 0 22px;
  }
  .site-header {
    padding: 22px 0;
    gap: 18px;
    flex-wrap: wrap;
  }
  .brand {
    font-size: 12px;
    gap: 11px;
  }
  .brand small {
    font-size: 9px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .site-header nav {
    gap: 19px;
    font-size: 11px;
  }
  .site-header .language-switch {
    height: 31px;
    width: 31px;
    font-size: 9px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0;
  }
  .hero h1 {
    font-size: 44px;
    line-height: 1.32;
    margin: 25px 0 21px;
  }
  .hero-lead {
    font-size: 13px;
    max-width: 500px;
  }
  .developer {
    margin: 27px 0 20px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .contact-card {
    padding: 22px 28px 23px;
    max-width: 500px;
    width: 100%;
    justify-self: center;
  }
  .letter-illustration {
    margin-top: 25px;
    margin-bottom: 10px;
    height: 145px;
    transform: rotate(-7deg) scale(0.91);
  }
  .contact-card h2 {
    font-size: 24px;
  }
  .contact-card > p {
    font-size: 12px;
    max-width: 310px;
  }
  .button {
    min-height: 49px;
  }
  .contact-note {
    font-size: 10px;
  }
  .section-title {
    display: block;
    margin-bottom: 25px;
  }
  .section-title h2 {
    font-size: 26px;
  }
  .section-title > p {
    margin-top: 12px;
    font-size: 11px;
  }
  .section-title br {
    display: none;
  }
  .applications {
    padding: 32px 0 39px;
  }
  .app-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .app-tile {
    padding: 18px;
    grid-template-columns: 48px minmax(0, 1fr) 17px;
    gap: 15px;
  }
  .app-tile h3 {
    font-size: 13px;
  }
  .app-tile p {
    font-size: 11px;
  }
  .help-section {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 35px 0 43px;
  }
  .help-section h2 {
    font-size: 27px;
    margin-top: 11px;
  }
  .help-section h2 br {
    display: none;
  }
  .help-steps p {
    font-size: 12px;
  }
  .help-steps strong {
    font-size: 13px;
  }
  .site-footer {
    gap: 18px;
    padding: 24px 0;
    font-size: 10px;
  }
  .site-footer > div {
    margin-left: auto;
  }
  .footer-note {
    width: 100%;
    font-size: 9px;
  }
  .page-intro {
    padding: 45px 0 30px;
  }
  .page-intro h1 {
    font-size: 36px;
    margin-top: 18px;
  }
  .page-intro > p {
    font-size: 13px;
  }
  .privacy-layout {
    display: block;
    padding-bottom: 33px;
  }
  .contents {
    position: static;
    padding: 17px 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .contents > .eyebrow {
    width: 100%;
  }
  .contents > a {
    margin: 0;
    font-size: 10px;
  }
  .privacy-main h2 {
    font-size: 24px;
  }
  .privacy-main p {
    font-size: 13px;
  }
  .privacy-main > section {
    padding: 25px 0 29px;
  }
  .policy-list > a {
    padding: 18px;
  }
  .document-intro h1 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }
  .document-body {
    margin: 25px auto 35px;
  }
  .document-body h2 {
    font-size: 23px;
  }
  .prose p,
  .prose li {
    font-size: 13px;
  }
  .document-help {
    display: block;
    margin-bottom: 40px;
  }
  .document-help h2 {
    font-size: 23px;
    margin-bottom: 22px;
  }
  .not-found {
    padding: 65px 0;
  }
  .not-found h1 {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  .site-header {
    row-gap: 17px;
  }
  .site-header nav {
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
    padding-top: 2px;
  }
  .site-header .language-switch {
    margin-left: auto;
  }
  .hero h1 {
    font-size: 39px;
  }
  .site-wrap {
    padding: 0 20px;
  }
  .hero {
    padding-top: 37px;
  }
  .contact-card {
    padding-left: 23px;
    padding-right: 23px;
  }
  .site-footer > div {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .site-footer {
    gap: 14px;
  }
  .page-intro h1 {
    font-size: 32px;
  }
  .document-intro h1 {
    font-size: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  body {
    background: white;
    color: black;
  }
  .site-header nav,
  .contents,
  .site-footer,
  .document-help,
  .document-meta a {
    display: none;
  }
  .site-wrap {
    max-width: none;
    padding: 0;
  }
  .privacy-layout {
    display: block;
  }
  .page-intro {
    padding-top: 25px;
  }
  a {
    text-decoration: underline;
  }
  .prose p,
  .prose li {
    color: black;
  }
}
