* {
  box-sizing: border-box;
}

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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #18131f;
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 44px 24px 92px;
  background: url("assets/background.jpg") center center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 12, 30, 0.14) 0%,
      rgba(20, 12, 30, 0.08) 38%,
      rgba(12, 9, 18, 0.28) 72%,
      rgba(8, 7, 12, 0.58) 100%
    );
}

.content {
  position: relative;
  z-index: 1;
  width: min(920px, 92vw);
  text-align: center;
  margin-top: -2vh;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.logo {
  display: block;
  width: clamp(100px, 10vw, 145px);
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto 24px;
  border-radius: 22px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 5.1rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.05;
}

.tagline {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.09em;
}

.rule {
  width: 72px;
  height: 1px;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.75);
}

.statement {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  font-weight: 350;
}

.coming-soon {
  margin: 30px 0 0;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.28em;
}

.footer {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 28px;
  text-align: center;
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .hero {
    padding: 32px 18px 84px;
    background-position: 56% center;
  }

  .content {
    width: min(94vw, 680px);
  }

  .logo {
    width: 92px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  h1 {
    letter-spacing: 0.11em;
  }

  .tagline {
    letter-spacing: 0.045em;
    line-height: 1.45;
  }

  .statement {
    line-height: 1.55;
  }

  .footer {
    left: 16px;
    right: 16px;
    bottom: 20px;
  }
}
