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

:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --accent: #00cece;
  --lede: rgba(255, 255, 255, 0.88);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  background:
    url("public/assets/images/hero-bg.jpg") center / cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: min(320px, 72vw);
  height: auto;
  margin-bottom: 6rem;
  animation: rise 0.9s ease-out both;
}

h1 {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0.85rem;
  animation: rise 0.9s ease-out 0.15s both;
}

.accent {
  color: var(--accent);
  font-weight: 600;
}

.lede {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  color: var(--lede);
  max-width: 28rem;
  animation: rise 0.9s ease-out 0.3s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  h1,
  .lede {
    animation: none;
  }
}
