:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fffbed;
  background: #071a27;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body { margin: 0; }
[hidden] { display: none !important; }
button { font: inherit; }

.landing {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1.5rem, 4vw, 4rem);
  overflow: clip;
}

.film-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: #071a27;
}

.film-backdrop::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgb(0 12 22 / 58%) 0%, rgb(0 12 22 / 12%) 30%, rgb(0 12 22 / 58%) 60%, rgb(0 12 22 / 78%) 100%);
  pointer-events: none;
}

video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.masthead, .film-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.wordmark {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 750;
  letter-spacing: -0.075em;
  text-decoration: none;
}

.wordmark-period { color: #f5ec70; }
.home-link { display: inline-block; padding-block: 0.75rem; color: #fff; font-size: 0.9375rem; text-underline-offset: 0.3em; }
a:focus-visible { outline: 3px solid #f5ec70; outline-offset: 5px; }
.names { font-size: 0.9375rem; letter-spacing: 0.035em; }

.title-block {
  margin-top: auto;
  padding-top: 7rem;
  padding-bottom: clamp(2.75rem, 7vh, 5.5rem);
}

.eyebrow {
  margin: 0 0 1.6rem;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
}

h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-weight: 400;
  font-size: clamp(4.25rem, 11vw, 10.5rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgb(0 0 0 / 12%);
}

h1 em { font-weight: 400; }
.eyebrow > span { margin-inline: 0.4rem; }
.film-footer { padding-top: 1.4rem; border-top: 1px solid rgb(255 255 255 / 30%); }
.film-caption { margin: 0; font-size: 1rem; line-height: 1.5; }
.film-controls { display: flex; flex-wrap: wrap; gap: 0.625rem; }

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 2.875rem;
  padding: 0.65rem 1rem;
  color: #fff;
  background: rgb(0 12 22 / 55%);
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 2rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 150ms ease, border-color 150ms ease;
}

button:hover { background: rgb(0 12 22 / 85%); border-color: #fff; }
button:focus-visible { outline: 3px solid #9bdef2; outline-offset: 4px; }
button:disabled { cursor: wait; opacity: 0.65; }
button svg { width: 1.125rem; height: 1.125rem; flex: none; }
.film-message { font-size: 0.9375rem; line-height: 1.5; margin: 1rem 0 0; }

@media (max-width: 540px) {
  .title-block { padding-top: 6rem; }
  h1 { font-size: clamp(3.5rem, 18vw, 6rem); }
  .film-footer { align-items: flex-start; gap: 1.25rem; }
  .film-caption { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  button { transition: none; }
}
