:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #f4f1e9;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: #050505;
}

body {
  min-height: 100svh;
  overflow: hidden;
}

button,
video {
  font: inherit;
}

.intro,
.sequence {
  width: 100%;
  height: 100svh;
}

.sequence {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
}

.scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  background: #050505;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 700ms;
}

.scene.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.scene__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgb(0 0 0 / 0.26) 100%);
}

.copy {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 6vw, 6rem);
  bottom: clamp(2rem, 9vh, 7rem);
  left: clamp(1.5rem, 6vw, 6rem);
  color: #f6f1e7;
  text-shadow: 0 2px 30px rgb(0 0 0 / 0.65);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1000ms ease, transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scene.copy-is-visible .copy {
  opacity: 1;
  transform: translateY(0);
}

.copy p,
.copy h1 {
  margin: 0;
  font-weight: 400;
}

.copy--arrival p {
  max-width: 17ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4.2vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.copy--identity {
  text-align: center;
}

.copy--identity h1,
.copy__brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3.25vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.copy--proposition {
  display: grid;
  gap: clamp(0.7rem, 1.5vh, 1.2rem);
}

.copy__statement {
  max-width: 24ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  transition: opacity 900ms ease 350ms, transform 1000ms cubic-bezier(0.22, 1, 0.36, 1) 350ms;
}

.scene:not(.copy-is-visible) .copy__statement {
  opacity: 0;
  transform: translateY(6px);
}

.start {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  min-width: min(19rem, calc(100vw - 3rem));
  padding: 1rem 1.35rem;
  border: 1px solid rgb(246 241 231 / 0.5);
  color: #f6f1e7;
  background: rgb(5 5 5 / 0.78);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.start:focus-visible {
  outline: 2px solid #f6f1e7;
  outline-offset: 4px;
}

.status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-aspect-ratio: 3 / 4) {
  .copy {
    bottom: clamp(2rem, 7vh, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene,
  .copy,
  .copy__statement {
    transition-duration: 250ms;
    transition-delay: 0ms;
    transform: none;
  }
}
