:root {
  --bg: #002d3f;
  --text: #ffffff;
  --wave-opacity: 0.48;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-size: 16px;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("./assets/images/wave.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 668px;
  opacity: var(--wave-opacity);
}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.625rem 3rem 0;
  font-size: 1.125rem;
  line-height: 1;
}

.contact {
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.status-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.content {
  position: relative;
  z-index: 1;
  width: min(61.25rem, calc(100% - 4.5rem));
  margin: 3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}

.brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, transparent 0 22%, #0e8fcb 23% 32%, transparent 33% 44%, #0f74a8 45% 55%, transparent 56% 100%),
    radial-gradient(circle at 50% 50%, #0e8fcb 0 8%, transparent 9% 100%);
  box-shadow: 0 0 0 1px rgba(14, 143, 203, 0.55) inset;
}

.brand-name {
  font-size: clamp(2.5rem, 3.6vw, 3.25rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.description {
  margin-top: 1.25rem;
  max-width: 61.875rem;
  font-size: 1.25rem;
  line-height: 120%;
}

.description p {
  margin: 0;
  font-size: 1.25rem;
}

.description p + p {
  margin-top: 1.875rem;
}
.brand img {
  width: 18.93rem;
  height: 3.43rem;
  object-fit: contain;
}

@media (max-width: 680px) {

html,
body {
  margin: 0;
  min-height: 100%;
  font-size: 4vw;
}
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.875rem;
    font-size: 1rem;
    padding-top: 1.75rem;
  }

  .content {
    width: calc(100% - 2.5rem);
    margin: 5rem auto 0;
  }

  .description {
    font-size: clamp(1.375rem, 3.2vw, 1.875rem);
  }

  .description p + p {
    margin-top: 1.375rem;
  }p {}

  .description p {
      font-size: 1rem;
      text-align: center;
  }
  
  .page {
      justify-content: center;
  }
  
  .brand {
      margin: 0 auto;
      justify-content: center;
      width: 100%;
  }.wave {
    background-size: 200%;
    background-position: left -22rem top;
}
}
