@font-face {
  font-family: Inter;
  src: url("./assets/inter.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: Inter, Arial, sans-serif;
  color: #f7f8f8;
  background: #0b0d0e;
  font-synthesis: none;
  letter-spacing: 0;
}

* { box-sizing: border-box; }
body { margin: 0; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(660px, calc(100svh - 64px));
  display: flex;
  flex-direction: column;
  padding: 40px 64px 76px;
  overflow: hidden;
}

.cinema {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(7 10 12 / 80%), rgb(7 10 12 / 42%) 43%, transparent 78%);
}

.masthead { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 650; }
.brand-mark { color: #ff842b; font-weight: 900; font-size: 36px; line-height: 1; }
.release-label { font-size: 13px; font-weight: 500; color: #fafafa; }
.intro { margin-top: auto; padding-top: 100px; max-width: 630px; }
.eyebrow { margin: 0 0 20px; font-size: 14px; font-weight: 550; color: #ffa45f; }
h1 { font-size: 88px; line-height: 1.05; font-weight: 650; margin: 0 0 24px; }
.promise { font-size: 30px; line-height: 1.35; font-weight: 500; margin: 0 0 22px; }
.description { font-size: 16px; line-height: 1.7; color: #c5c9cc; margin: 0; }
.launch-note { display: flex; align-items: center; gap: 12px; margin-top: 40px; font-size: 13px; color: #d9dddf; }
.launch-note span { width: 28px; height: 2px; background: #ff842b; flex-shrink: 0; }
footer { min-height: 64px; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 64px; font-size: 12px; line-height: 1.5; color: #aeb5b9; }

@media (max-width: 700px) {
  .hero { min-height: max(620px, calc(100svh - 72px)); padding: 28px 24px 40px; }
  .masthead { gap: 16px; }
  .wordmark { font-size: 18px; gap: 9px; }
  .brand-mark { font-size: 30px; }
  .release-label { font-size: 12px; }
  .cinema { object-position: 67% center; }
  .hero::after { background: linear-gradient(180deg, rgb(7 10 12 / 30%), rgb(7 10 12 / 10%) 25%, rgb(7 10 12 / 85%) 65%, #0b0d0e); }
  .intro { padding-top: 220px; }
  .eyebrow { font-size: 12px; margin-bottom: 14px; }
  h1 { font-size: 56px; margin-bottom: 18px; }
  .promise { font-size: 24px; margin-bottom: 16px; }
  .description { font-size: 14px; }
  .launch-note { margin-top: 28px; font-size: 12px; }
  footer { min-height: 72px; padding: 18px 24px; flex-wrap: wrap; gap: 8px 16px; font-size: 11px; }
}

@media (prefers-reduced-motion: no-preference) {
  .intro { animation: arrive 700ms ease-out both; }
  @keyframes arrive {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 700px) and (max-height: 700px) {
  .hero { min-height: calc(100svh - 72px); padding-top: 22px; padding-bottom: 28px; }
  .intro { padding-top: 60px; }
  h1 { font-size: 48px; margin-bottom: 14px; }
  .promise { font-size: 22px; }
  .launch-note { margin-top: 20px; }
}
