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

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Inter", Arial, sans-serif;
  background: #000;
  color: #fff;
}

body {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 40px);
  isolation: isolate;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(0, 0, 0, 0.40) 36%,
      rgba(0, 0, 0, 0.56) 100%
    );
  z-index: -1;
}

.logo {
  position: absolute;
  top: clamp(18px, 2.2vw, 30px);
  left: clamp(18px, 2.2vw, 30px);
  width: clamp(200px, 22vw, 360px);
  height: auto;
  object-fit: contain;
}

.content {
  position: relative;
  width: min(1080px, 100%);
  text-align: center;
  transform: translateY(11vh);
  padding-inline: 18px;
}

.eyebrow {
  font-size: clamp(0.78rem, 1vw, 0.98rem);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  opacity: 0.92;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 1.03;
  font-weight: 600;
  max-width: 14ch;
  margin: 0 auto;
  text-wrap: balance;
}

.fade-up {
  animation: fadeUp 1.1s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(calc(11vh + 28px));
  }
  to {
    opacity: 1;
    transform: translateY(11vh);
  }
}

@media (max-width: 640px) {
  .logo {
    top: 18px;
    left: 16px;
    width: clamp(180px, 42vw, 240px);
  }
}

  .content {
    transform: translateY(13vh);
    padding-inline: 14px;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(calc(13vh + 24px));
    }
    to {
      opacity: 1;
      transform: translateY(13vh);
    }
  }

  h1 {
    font-size: clamp(2.1rem, 8vw, 4.2rem);
    max-width: 13ch;
  }
}

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .hero {
    align-items: flex-start;
    padding: 20px 16px 28px;
    background-position: 58% center;
  }

  .logo {
    top: 18px;
    left: 16px;
    width: clamp(140px, 34vw, 180px);
  }

  .content {
    align-self: center;
    transform: translateY(18vh);
    padding-inline: 8px;
    width: 100%;
  }

  .eyebrow {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }

  h1 {
    font-size: clamp(1.95rem, 10.2vw, 3.15rem);
    line-height: 1.08;
    max-width: 100%;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(calc(18vh + 20px));
    }
    to {
      opacity: 1;
      transform: translateY(18vh);
    }
  }
}

@media (max-width: 420px) {
  .content {
    transform: translateY(20vh);
  }

  h1 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }
}
