:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #020817;
  color: #f7fbff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #020817;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
}

.brand-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  inset-inline: 0;
  bottom: clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  color: rgba(247, 251, 255, 0.88);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  letter-spacing: 0;
  text-align: center;
}

.overlay p {
  margin: 0;
  text-transform: uppercase;
}

.overlay a {
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 166, 255, 0.72);
}

@media (max-width: 700px) {
  .brand-image {
    object-fit: contain;
    height: auto;
    min-height: auto;
  }

  .hero {
    align-content: center;
    background:
      linear-gradient(rgba(2, 8, 23, 0.1), rgba(2, 8, 23, 0.55)),
      #020817;
  }

  .overlay {
    position: static;
    flex-direction: column;
    margin-top: 20px;
    padding-bottom: 28px;
  }
}
