:root {
  --ff-bg: #0b0c0e;
  --ff-bg-elevated: #141820;
  --ff-gold: #eab308;
  --ff-text: #ffffff;
  --ff-text-muted: #c5ccd3;
  --ff-font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--ff-bg);
  color: var(--ff-text);
  font-family: var(--ff-font);
  line-height: 1.5;
}

a {
  color: var(--ff-gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #07080a;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 2rem));
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4.5rem 0.75rem 2rem;
}

.hero-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px #000;
}

.hero-title {
  margin: 0.55rem 0 0;
  font-size: clamp(2.8rem, 8vw, 5.25rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.95;
  color: var(--ff-gold);
  text-shadow: 0 1px 2px #000;
}

.hero-tagline {
  margin: auto 0 0;
  max-width: 40rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 1px 2px #000;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin: 1.5rem 0 0;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13.75rem;
  padding: 0.85rem 1.4rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}

.btn-primary {
  background: var(--ff-gold);
  color: #111;
  border-color: var(--ff-gold);
}

.btn-primary:hover {
  background: #facc15;
  text-decoration: none;
}

.btn-secondary {
  background: #111;
  color: #fff;
  border-color: var(--ff-gold);
}

.btn-secondary:hover {
  background: #1c1c1c;
}

.hero-note {
  margin: 1.35rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px #000;
}

.about {
  padding: 4rem 1.5rem 5rem;
  background: var(--ff-bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ff-gold);
}

.about p {
  margin: 0 0 1.5rem;
  color: var(--ff-text-muted);
}

.about-points {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ff-text-muted);
}

.about-points li + li {
  margin-top: 0.5rem;
}

.site-footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #9aa3ad;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trailer-modal {
  border: none;
  padding: 0;
  max-width: min(960px, 96vw);
  background: transparent;
}

.trailer-modal::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.trailer-shell {
  position: relative;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trailer-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  z-index: 2;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  width: 2.25rem;
  height: 2.25rem;
  cursor: pointer;
}

.trailer-player {
  display: block;
  width: 100%;
  max-height: 80vh;
  background: #000;
}

@media (max-width: 720px) {
  .hero-copy {
    padding: 5.5rem 1rem 1.75rem;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    min-width: 0;
    flex: 1 1 12rem;
  }

  .hero-note {
    letter-spacing: 0.1em;
  }
}
