:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #0b0b0c;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #fff;
}

.landing {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: start center;
  overflow: hidden;
  padding: 0 clamp(1.5rem, 7.8vw, 6.25rem) clamp(2.5rem, 6vh, 3.25rem);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 44rem);
}

.brand-logo {
  display: block;
  width: clamp(20rem, 36.8vw, 29.5rem);
  height: auto;
}

.tagline {
  display: flex;
  gap: clamp(1.5rem, 2.35vw, 2rem);
  margin: -1rem 0 0;
  font-size: clamp(0.78rem, 1.1vw, 0.93rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.connect {
  position: absolute;
  left: clamp(2rem, 7.8vw, 6.25rem);
  bottom: clamp(2.5rem, 6vh, 3.25rem);
}

.connect p {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.connect a {
  display: inline-block;
  color: #2878bd;
  font-size: clamp(1.5rem, 2.05vw, 1.8rem);
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}

.connect a:hover,
.connect a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.connect a:focus-visible {
  border-radius: 0.1rem;
  outline: 3px solid rgba(40, 120, 189, 0.28);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100svh;
    padding: 4.5rem 1.5rem 2.5rem;
  }

  .brand-logo {
    width: min(78vw, 22rem);
  }

  .tagline {
    gap: clamp(1rem, 5vw, 1.5rem);
    margin-top: 1.75rem;
    font-size: clamp(0.72rem, 3.2vw, 0.86rem);
  }

  .connect {
    position: static;
    align-self: flex-start;
    margin-top: auto;
  }
}

@media (max-height: 580px) and (min-width: 641px) {
  .landing {
    padding-top: 0;
  }

  .brand-logo {
    width: min(40vh, 20rem);
  }

  .tagline {
    margin-top: -0.5rem;
  }
}
