@font-face {
  font-family: "Gotham";
  src: url("Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-deep: #0a2748;
  --red: #e30613;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.85);
  --font: "Gotham", "Helvetica Neue", Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font);
  color: var(--white);
  background: #000;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Option 1: video —— */
.video-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
}

.video-stage__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page.is-fallback .video-stage {
  display: none;
}

/* —— Option 2: static fallback —— */
.fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--blue-deep);
}

.page.is-fallback .fallback {
  display: flex;
}

.fallback[hidden] {
  display: none !important;
}

.page.is-fallback .fallback[hidden] {
  display: flex !important;
}

.fallback__bg {
  position: absolute;
  inset: 0;
  background: url("coming-soon-fallback.jpg") center / cover no-repeat;
  filter: blur(8px) saturate(0.8);
  transform: scale(1.08);
}

.fallback__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 32, 64, 0.78) 0%,
    rgba(12, 48, 96, 0.68) 45%,
    rgba(8, 28, 56, 0.82) 100%
  );
  pointer-events: none;
}

.deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.deco__diamond {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(45deg);
  animation: diamond-drift 16s ease-in-out infinite;
}

.deco__diamond--outer {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  top: 8%;
  right: -8%;
  opacity: 0.55;
}

.deco__diamond--inner {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  top: 18%;
  right: 6%;
  opacity: 0.35;
  animation-delay: -4s;
  animation-duration: 12s;
}

.deco__mark {
  position: absolute;
  top: 14%;
  right: 7%;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.75);
  animation: mark-fade 2.4s ease-out 0.8s both;
}

.deco__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes diamond-drift {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(-12px, 10px);
  }
}

@keyframes mark-fade {
  from {
    opacity: 0;
    transform: translate(-8px, 8px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 960px;
  width: 100%;
}

.brand {
  margin-bottom: clamp(2.5rem, 8vh, 4.5rem);
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand__logo {
  position: relative;
  display: inline-block;
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
}

.brand__mark {
  position: absolute;
  top: 0.12em;
  right: -0.55em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.28em 0 0.28em 0.42em;
  border-color: transparent transparent transparent var(--red);
}

.brand__tagline {
  margin-top: 0.85rem;
  font-size: clamp(0.65rem, 1.4vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--white-muted);
  text-indent: 0.42em;
}

.headline {
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: clamp(1.75rem, 4vh, 2.75rem);
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.progress {
  width: min(420px, 72vw);
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(8, 28, 56, 0.45);
  overflow: hidden;
  animation: rise-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.progress__fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--red);
  animation: fill-bar 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

@keyframes fill-bar {
  to {
    width: var(--progress, 70%);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Portrait screens: the 16:9 video would crop the design badly under
   object-fit: cover, so the responsive recreation takes over instead. */
@media (orientation: portrait) {
  .video-stage {
    display: none;
  }

  .fallback,
  .fallback[hidden] {
    display: flex !important;
  }
}

@media (max-width: 640px) {
  .deco__diamond--outer {
    width: 70vw;
    height: 70vw;
    right: -22%;
    top: 4%;
  }

  .deco__diamond--inner {
    width: 36vw;
    height: 36vw;
    right: 2%;
    top: 14%;
  }

  .deco__mark {
    width: 32px;
    height: 32px;
    top: 10%;
    right: 5%;
  }

  .brand__tagline {
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deco__diamond,
  .deco__mark,
  .brand,
  .headline,
  .progress,
  .progress__fill {
    animation: none;
  }

  .progress__fill {
    width: var(--progress, 70%);
  }
}
