:root {
  color-scheme: light;
  font-family:
    "Source Sans Pro",
    "Fira Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #edf4f8;
}

.coming-soon,
.hero {
  min-height: 100vh;
  min-height: 100svh;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 72px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.76);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  display: grid;
  justify-items: center;
  width: min(100%, 720px);
  text-align: center;
}

.brand {
  display: block;
  width: clamp(210px, 24vw, 320px);
  height: auto;
  margin-bottom: clamp(32px, 5vh, 52px);
}

h1 {
  margin: 0;
  color: #004789;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1::after {
  content: "";
  display: block;
  width: min(520px, 72vw);
  height: 2px;
  margin: clamp(20px, 3vh, 30px) auto;
  background: rgba(0, 71, 137, 0.54);
}

.subtitle {
  max-width: 540px;
  margin: 0;
  color: #173a59;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 480px) {
  .hero {
    padding-inline: 20px;
  }

  .brand {
    width: min(240px, 76vw);
    margin-bottom: 30px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .subtitle {
    max-width: 330px;
  }
}
