@font-face {
  font-family: "TG - Blender";
  src: url("assets/TG-Blender.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family:
    "TG - Blender",
    "Helvetica Neue",
    Arial,
    sans-serif;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
}

.holding-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  background: #000;
}

.scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.scene::after,
.watermark {
  position: absolute;
  inset: 0;
  content: "";
}

.scene__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
}

.scene::after {
  z-index: 2;
  background:
    radial-gradient(circle at 36% 41%, rgba(255, 255, 255, 0.08), transparent 0 22%, transparent 43%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.watermark {
  inset: 10% auto auto -18%;
  z-index: 3;
  width: min(52vw, 430px);
  aspect-ratio: 62 / 39;
  background: url("assets/dissent__icon.svg") center / contain no-repeat;
  opacity: 0.04;
  transform: scale(3.1);
  transform-origin: left top;
}

.site-header {
  position: absolute;
  top: clamp(1.4rem, 4.8vh, 2.6rem);
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.site-header__logo {
  display: block;
  width: clamp(38px, 4.5vw, 62px);
  height: auto;
}

.brand {
  width: min(94vw, 1348px);
  margin-top: clamp(-3rem, -5vh, -1rem);
  text-align: center;
}

.brand__title {
  position: relative;
  display: block;
  margin: 0;
  line-height: 0;
}

.brand__title img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  animation: logo-breathe 8s ease-in-out infinite;
  opacity: 0.4;
  transform-origin: center;
}

.brand__tagline {
  margin: clamp(1.2rem, 3vh, 2rem) 0 0;
  font-family:
    "TG - Blender",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
}

.contact-button {
  position: absolute;
  bottom: clamp(1.5rem, 5vh, 3rem);
  left: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.78rem 1.35rem;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-family:
    "TG - Blender",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: #fff;
  color: #000;
}

.contact-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand__title img {
    animation: none;
  }
}

@media (max-width: 760px) {
  .brand {
    width: min(88vw, 560px);
    margin-top: 0;
  }

  .brand__tagline {
    font-size: 17px;
    letter-spacing: 0.01em;
  }

  .watermark {
    width: 72vw;
    inset-inline-start: -38%;
    transform: scale(2.35);
  }
}