:root {
  color-scheme: dark;
  font-family: Arial Black, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  background: #050503;
  color: #fff8dc;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.12);
  background: #050503;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 50% 45%, rgba(255, 233, 121, 0.12), transparent 42%);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0;
  text-shadow: 0 3px 0 #16110a, 0 0 18px rgba(0, 0, 0, 0.55);
}

.brand,
.nav-actions a,
.button,
.sound-pill {
  border: 3px solid #1d1307;
  background: #ffe45c;
  color: #1d1307;
  box-shadow: 5px 5px 0 #1d1307;
}

.brand,
.nav-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero {
  align-self: center;
  justify-self: center;
  width: min(980px, 100%);
  padding: 80px 0 70px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 6px 0 #1d1307, 0 0 24px rgba(0, 0, 0, 0.75);
}

.ticker {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 54px);
  color: #ffe45c;
}

h1 {
  margin: 0;
  font-size: clamp(66px, 13vw, 184px);
  line-height: 0.82;
  letter-spacing: 0;
}

.tagline {
  margin: 20px 0 0;
  font-size: clamp(24px, 4vw, 54px);
  color: #ff7b2f;
}

.cta-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  text-shadow: none;
}

.button {
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 8px;
  font: inherit;
  font-size: clamp(18px, 2vw, 28px);
  cursor: pointer;
  text-transform: uppercase;
}

.button.primary {
  background: #ff7b2f;
}

.button.secondary {
  background: #fff8dc;
}

.sound-pill {
  justify-self: center;
  margin-bottom: 4px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sound-pill.is-on {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

@media (max-width: 680px) {
  .page-shell {
    padding: 14px;
  }

  .topbar {
    align-items: flex-start;
  }

  .nav-actions {
    gap: 8px;
  }

  .brand,
  .nav-actions a {
    min-height: 38px;
    padding: 7px 10px;
  }

  .hero {
    padding: 54px 0 48px;
  }

  .button {
    width: min(100%, 310px);
  }
}
