:root {
  color-scheme: dark;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
}

body {
  color: #fff;
}

.landing {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.reel {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.reel iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.18);
}

.brand {
  position: absolute;
  left: clamp(18px, 1.5vw, 28px);
  top: 50%;
  width: clamp(78px, 7vw, 112px);
  transform: translateY(-50%);
  line-height: 0;
  text-decoration: none;
}

.brand picture,
.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.status,
.links a {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.status {
  position: absolute;
  top: clamp(15px, 1.4vw, 24px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.links a {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  transition: color 140ms ease, opacity 140ms ease;
}

.links a:hover,
.links a:focus-visible {
  color: #fff;
}

.links a:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: 5px;
}

.vimeo {
  left: 38%;
}

.instagram {
  left: 71%;
}

@media (max-width: 700px) {
  .shade {
    background: rgba(0, 0, 0, 0.24);
  }

  .brand {
    top: 22px;
    left: 18px;
    width: 92px;
    transform: none;
  }

  .status {
    top: 24px;
    left: auto;
    right: 18px;
    transform: none;
    font-size: 10px;
  }

  .links a {
    top: auto;
    bottom: 24px;
    transform: none;
    font-size: 11px;
  }

  .vimeo {
    left: 18px;
  }

  .instagram {
    left: auto;
    right: 18px;
  }
}
