* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #000;
  color: #fff;
}

.page {
  position: relative;
  width: 100vw;
  height: 100dvh;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.3) contrast(0.9);
  z-index: -3;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.25));
  z-index: -2;
}

.content {
  width: min(88vw, 560px);
  text-align: center;
  padding: 1rem;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.92;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.tagline {
  margin: 1rem 0 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 2.6vw, 0.95rem);
  font-weight: 500;
  color: #fec2fe;
}

@media (max-width: 480px) {
  .content {
    width: min(92vw, 420px);
  }

  .tagline {
    margin-top: 0.8rem;
  }
}
