:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #050505;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  padding: clamp(24px, 5vw, 72px);
  text-align: center;
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: -2;
  object-fit: cover;
}

.hero__overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.72));
}

.hero__content {
  width: min(100%, 820px);
  text-wrap: balance;
}

.hero__eyebrow {
  margin: 0 0 22px;
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.25rem, 14vw, 10.5rem);
  font-weight: 400;
  line-height: 0.88;
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.48);
}

.hero__copy {
  max-width: 680px;
  margin: clamp(28px, 4vw, 42px) auto 0;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.62);
}

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

  .hero {
    align-items: center;
    padding: 32px 22px;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(3.3rem, 20vw, 5.6rem);
    line-height: 0.95;
  }

  .hero__copy {
    line-height: 1.55;
  }
}
