:root {
  --night: #071011;
  --night-soft: #0d1d1d;
  --gold: #d8ad55;
  --gold-soft: #f0d79c;
  --paper: #f4f0e6;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--paper);
  background:
    radial-gradient(circle at 68% 52%, rgba(197, 143, 45, 0.13), transparent 28%),
    radial-gradient(circle at 9% 11%, rgba(42, 92, 87, 0.32), transparent 36%),
    var(--night);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(330px, 0.85fr) minmax(380px, 1.15fr);
  overflow: hidden;
}

.page::before {
  position: absolute;
  z-index: -1;
  top: -28vw;
  right: -16vw;
  width: 72vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(216, 173, 85, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 9vw rgba(216, 173, 85, 0.025),
    0 0 0 18vw rgba(216, 173, 85, 0.018);
}

.intro {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding: clamp(32px, 5vw, 76px);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.spark {
  color: var(--gold);
  font-size: 1rem;
}

.copy {
  width: min(100%, 580px);
  margin: auto 0;
  padding: 70px 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--gold-soft);
  font-weight: 400;
}

.support {
  max-width: 470px;
  margin: 32px 0 0;
  color: rgba(244, 240, 230, 0.63);
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.domain {
  margin: 0;
  color: rgba(244, 240, 230, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.film {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(22px, 3vw, 48px);
}

.halo {
  position: absolute;
  width: min(58vw, 740px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 173, 85, 0.18), transparent 67%);
  filter: blur(12px);
}

.video-frame {
  position: relative;
  overflow: hidden;
  height: min(91svh, 950px);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(216, 173, 85, 0.3);
  border-radius: clamp(18px, 2.2vw, 30px);
  background: #000;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.55),
    0 0 0 8px rgba(255, 255, 255, 0.025);
}

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

@media (max-width: 840px) {
  .page {
    display: block;
    overflow: visible;
  }

  .intro {
    min-height: auto;
    padding: 30px 22px 38px;
    text-align: center;
  }

  .wordmark {
    justify-content: center;
  }

  .copy {
    margin: 0 auto;
    padding: 66px 0 58px;
  }

  h1 {
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .support {
    margin-right: auto;
    margin-left: auto;
  }

  .film {
    min-height: auto;
    padding: 0 12px 34px;
  }

  .video-frame {
    width: min(100%, 540px);
    height: auto;
  }

  .domain {
    order: 3;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .copy,
  .video-frame {
    animation: arrive 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .video-frame {
    animation-delay: 140ms;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
  }
}
