:root {
  --sky: #76bed1;
  --paper: #ebebeb;
  --navy: #0b3156;
  --aqua: #69d5f1;
  --aqua-shadow: #d7d7d7;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
}

.hero {
  position: relative;
  display: flex;
  height: min(55.25svh, 580px);
  min-height: 480px;
  flex: 0 0 auto;
  justify-content: center;
  color: #fff;
  background: linear-gradient(
    to bottom,
    var(--sky) 0,
    var(--sky) calc(100% - 45px),
    transparent calc(100% - 45px)
  );
}

.hero__title {
  position: relative;
  z-index: 1;
  width: min(72%, 520px);
  margin: 0;
  padding-top: clamp(66px, 9.4svh, 98px);
  font-size: clamp(3rem, 10.65vw, 4.875rem);
  font-weight: 400;
  line-height: 1.205;
  letter-spacing: -0.012em;
  text-align: center;
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__title strong {
  font-weight: 700;
}

.hero__wave {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 46px;
  fill: var(--sky);
}

.contact {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  padding: clamp(62px, 6.3svh, 68px) 24px 57px;
  text-align: center;
}

.contact__details {
  margin: 0;
  font-size: 20px;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.contact__details p {
  margin: 0;
}

.contact__company,
.contact__website {
  font-weight: 700;
}

.contact__company sup {
  position: relative;
  top: -0.1em;
  margin-left: 1px;
  font-size: 0.48em;
}

.contact__details strong {
  font-weight: 700;
}

.contact__details a {
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}

.contact__details a:hover,
.contact__details a:focus-visible {
  border-color: currentColor;
  outline: none;
}

.brand {
  display: block;
  width: min(100%, 314px);
  margin-top: 49px;
  border-radius: 11px;
}

.brand:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 5px;
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.brand__panel {
  fill: var(--navy);
}

.brand__romfix {
  fill: #fff;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 55px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -2.6px;
}

.brand__geo {
  fill: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.brand__registered {
  fill: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.brand__shadow-wave {
  fill: var(--aqua-shadow);
}

.brand__wave {
  fill: var(--aqua);
}

@media (max-width: 520px) {
  .hero {
    height: 52svh;
    min-height: 410px;
  }

  .hero__title {
    width: 88%;
    padding-top: clamp(62px, 9svh, 82px);
    font-size: clamp(2.5rem, 10.65vw, 3.45rem);
    line-height: 1.18;
  }

  .contact {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .contact__details {
    font-size: 18px;
  }

  .brand {
    width: min(82vw, 290px);
    margin-top: 42px;
  }
}

@media (max-height: 760px) and (min-width: 521px) {
  .hero {
    height: 55svh;
    min-height: 400px;
  }

  .hero__title {
    padding-top: 54px;
    font-size: min(9.5vw, 4.15rem);
  }

  .contact {
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .brand {
    margin-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact__details a {
    transition: none;
  }
}
