:root {
  color-scheme: dark;
  --bg: #050816;
  --muted: rgba(248, 250, 252, 0.92);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  font-family: 'Inter', system-ui, sans-serif;
}

body {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(15, 23, 42, 0.12), rgba(2, 6, 23, 0.68)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.62));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transform: translateY(-20px);
}

.hero__logo {
  width: min(420px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.45));
}

.subtitle {
  margin: 0;
  font-size: clamp(14px, 2vw, 27px);
  line-height: 1.1;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 640px) {
  .hero__logo {
    width: min(378px, 63vw);
  }
}
