*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  background: url("../assets/images/background.jpg") center / cover no-repeat fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 36rem;
  padding: 2rem;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-content.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content {
    opacity: 1;
    transition: none;
  }
}

.brand {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
}

.message {
  margin: 0.5rem 0 1.25rem;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
  opacity: 0.88;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  opacity: 1;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.social-icon {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

@media (max-width: 480px) {
  .social-links {
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero {
    background-attachment: scroll;
  }
}
