:root {
  color-scheme: light;
  --blue: #003d7a;
  --orange: #f58220;
  --cream: #fff9f2;
  --white: #fff;
  --ink: #172c3e;
  --line: #d5dce2;
  --muted: #465b6d;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}
a {
  color: var(--blue);
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
p {
  margin: 0;
}
h1,
h2 {
  line-height: 1.12;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}
p {
  max-width: 72ch;
}
.site-header,
main,
footer {
  width: min(1160px, calc(100% - 72px));
  margin-inline: auto;
}
.site-header {
  min-height: 112px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--blue);
}
.brand img {
  border-radius: 11px;
  flex: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  font-size: 15px;
}
nav a:hover,
nav a[aria-current] {
  text-decoration: underline;
}
.language {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 76px 0 86px;
}
.hero h1 {
  font-size: clamp(52px, 5.7vw, 76px);
  color: var(--blue);
  max-width: 10ch;
}
.intro {
  font-size: 21px;
  line-height: 1.55;
  margin-top: 28px;
  max-width: 40ch;
}
.launch-note {
  font-size: 15px;
  line-height: 1.6;
  max-width: 49ch;
  margin-top: 22px;
  color: var(--muted);
}
.actions {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-block;
  background: var(--blue);
  color: white;
  border: 2px solid var(--blue);
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.4;
  text-align: center;
}
.button:hover {
  background: #002c58;
  border-color: #002c58;
}
.text-link {
  font-size: 16px;
  font-weight: 700;
}
.hero-mark {
  background: var(--blue);
  border-radius: 24px 24px 80px 24px;
  border-bottom: 12px solid var(--orange);
  padding: 28px 38px 44px;
  box-shadow: none;
}
.hero-mark img {
  width: 100%;
  max-width: 352px;
  margin: auto;
}
.hero-mark p {
  font-size: 41px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.055em;
  text-align: center;
  line-height: 1;
}
.how {
  border-top: 1px solid var(--line);
  padding: 48px 0 60px;
}
.how > h2 {
  font-size: 36px;
  max-width: 22ch;
  color: var(--blue);
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 36px;
}
.features h2 {
  font-family: inherit;
  letter-spacing: -0.025em;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.features p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.pro {
  border-top: 6px solid var(--orange);
  background: white;
  padding: 34px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
}
.pro h2 {
  font-size: 36px;
  color: var(--blue);
}
.pro p {
  margin-top: 18px;
  font-size: 16px;
  max-width: 63ch;
}
.pro .button {
  flex: none;
}
.button-outline {
  background: transparent;
  color: var(--blue);
}
.button-outline:hover {
  color: white;
}
.marketplace-note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  padding: 22px 0 52px;
  max-width: 90ch;
}
footer {
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  margin-bottom: 24px;
}
.footer-top .brand {
  font-size: 23px;
}
.footer-top nav {
  gap: 22px;
}
.footer-top nav a {
  font-size: 14px;
}
.identity {
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.identity strong,
.identity > span {
  display: block;
}
.identity strong {
  font-weight: 700;
  color: var(--ink);
}
.identity span span {
  padding: 0 7px;
}
.document {
  max-width: 790px;
  padding: 64px 0 80px;
}
.document h1 {
  font-size: clamp(44px, 5vw, 62px);
  color: var(--blue);
  margin-bottom: 26px;
  overflow-wrap: anywhere;
}
.document-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 15px;
}
.document-intro {
  font-size: 20px;
  line-height: 1.6;
}
.document section {
  margin-top: 36px;
}
.document section h2,
.contact-block h2 {
  font-family: inherit;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.document section p {
  line-height: 1.75;
}
.document > .identity,
.document > p:not(.document-meta) {
  margin-bottom: 18px;
}
.document .identity {
  font-size: 16px;
}
.document section .identity + p {
  margin-top: 12px;
}
.contact-block {
  margin-top: 30px;
  padding: 26px 30px;
  border-left: 5px solid var(--orange);
  background: white;
}
.contact-block p {
  margin-bottom: 10px;
}
.contact-block .button {
  margin-top: 8px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  background: white;
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 12px;
}
.preview {
  background: #f7d37e;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
a[href^='mailto:'] {
  overflow-wrap: anywhere;
}
@media (max-width: 900px) {
  .site-header,
  main,
  footer {
    width: min(1160px, calc(100% - 40px));
  }
  .hero {
    gap: 36px;
    padding: 52px 0 58px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-mark {
    padding: 24px 22px 36px;
  }
  .hero-mark p {
    font-size: 32px;
  }
  .pro {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .features {
    gap: 24px;
  }
  .site-header {
    gap: 20px;
  }
  .site-header nav {
    gap: 18px;
  }
  .language {
    padding-left: 18px;
  }
}
@media (max-width: 620px) {
  body {
    font-size: 16px;
  }
  .site-header {
    min-height: 96px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
    gap: 17px;
  }
  .brand {
    font-size: 25px;
  }
  .brand img {
    width: 41px;
  }
  .site-header nav {
    gap: 20px;
    width: 100%;
    justify-content: flex-start;
  }
  .site-header nav a {
    font-size: 14px;
  }
  .language {
    margin-left: auto;
    border: 0;
    padding: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 38px 0 42px;
  }
  .hero h1 {
    font-size: 58px;
    max-width: 12ch;
  }
  .intro {
    font-size: 19px;
    max-width: 34ch;
    margin-top: 24px;
  }
  .hero-mark {
    padding: 20px 30px 28px;
    border-radius: 18px 18px 54px 18px;
    width: 100%;
    max-width: 380px;
    justify-self: center;
  }
  .hero-mark img {
    max-width: 260px;
  }
  .hero-mark p {
    font-size: 32px;
  }
  .actions {
    gap: 21px;
  }
  .how {
    padding: 35px 0 40px;
  }
  .how > h2,
  .pro h2 {
    font-size: 33px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .features h2 {
    margin-bottom: 8px;
  }
  .features p {
    max-width: 46ch;
  }
  .pro {
    padding: 27px 24px;
  }
  .marketplace-note {
    padding-bottom: 32px;
  }
  .document {
    padding: 36px 0 48px;
  }
  .document h1 {
    font-size: 44px;
  }
  .document-intro {
    font-size: 18px;
  }
  .document section {
    margin-top: 29px;
  }
  .document section h2,
  .contact-block h2 {
    font-size: 21px;
  }
  .contact-block {
    padding: 20px;
  }
  .footer-top nav {
    column-gap: 22px;
    row-gap: 12px;
  }
  .identity {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
@media print {
  .site-header nav,
  .footer-top nav,
  .skip,
  .preview {
    display: none;
  }
  .document {
    padding: 24px 0;
    width: 100%;
    max-width: none;
  }
  .site-header,
  main,
  footer {
    width: 100%;
  }
  a {
    color: inherit;
  }
  .contact-block {
    border: 1px solid #999;
  }
}
