:root {
  --background-color: #b2b2af;
  --text-color: #ffffff;
  --brand-font: "Helvetica Neue LT Pro Bd Ex", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --support-font: "Helvetica Neue LT Pro Bd Ex", "Helvetica Neue", Arial, sans-serif;
  --glass-border: rgba(255, 255, 255, 0.36);
  --glass-fill: rgba(255, 255, 255, 0.055);
}

@font-face {
  font-family: "Helvetica Neue LT Pro Bd Ex";
  src: url("assets/fonts/HelveticaNeueLTPro-BdEx.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  fill: currentColor;
}

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

body {
  margin: 0;
  background: var(--background-color);
  color: var(--text-color);
  font-family: var(--support-font);
}

.launch {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding-bottom: clamp(5.5rem, 12svh, 7.4rem);
  place-items: center;
  isolation: isolate;
}

.background-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--background-color);
}

.brand-layer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(0.8rem, 2.1vw, 1.7rem);
  place-items: center;
  width: min(88vw, 760px);
  transform: translateY(-2svh);
}

.wordmark {
  margin: 0;
  color: var(--text-color);
  font-family: var(--brand-font);
  font-size: clamp(3rem, 9.6vw, 7.6rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  text-rendering: geometricPrecision;
  white-space: nowrap;
}

.symbol {
  display: block;
  width: clamp(13rem, 32vw, 25rem);
  height: auto;
}

.contact-links {
  position: absolute;
  top: clamp(1rem, 2.4vw, 1.85rem);
  right: clamp(1rem, 2.4vw, 1.85rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1vw, 0.7rem);
}

.contact-link {
  display: grid;
  width: clamp(2.25rem, 4vw, 3rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-color);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 12px 32px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.contact-icon {
  display: block;
  width: 52%;
  height: 52%;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.11);
  opacity: 0.92;
  transform: translateY(-2px);
}

.marquee-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: clamp(4.5rem, 11.6vw, 5.25rem);
  overflow: hidden;
  color: var(--text-color);
  border-top: 1px solid var(--glass-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.028)),
    var(--glass-fill);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 -22px 52px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px) saturate(118%);
  -webkit-backdrop-filter: blur(10px) saturate(118%);
}

.marquee-bar::before,
.marquee-bar::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(2rem, 7vw, 5.6rem);
  pointer-events: none;
  content: "";
}

.marquee-bar::before {
  left: 0;
  background: linear-gradient(90deg, rgba(178, 178, 175, 0.42), rgba(178, 178, 175, 0));
}

.marquee-bar::after {
  right: 0;
  background: linear-gradient(270deg, rgba(178, 178, 175, 0.42), rgba(178, 178, 175, 0));
}

.marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: luvbot-marquee 54s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  height: 100%;
  align-items: center;
  flex: 0 0 auto;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.25rem, 3.4vw, 2.75rem);
  padding-right: clamp(2.2rem, 5.2vw, 4.4rem);
  font-family: var(--support-font);
  font-size: clamp(1.35rem, 2.18vw, 1.76rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-logo {
  display: block;
  width: clamp(2.1rem, 3.7vw, 3.1rem);
  aspect-ratio: 1;
  transform: translateY(1px);
}

.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;
}

@keyframes luvbot-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 680px) {
  .brand-layer {
    width: 88vw;
    transform: translateY(-3svh);
  }

  .wordmark {
    font-size: clamp(2.3rem, 15vw, 5.8rem);
  }

  .symbol {
    width: clamp(13rem, 68vw, 19rem);
  }

  .contact-links {
    top: clamp(0.8rem, 4vw, 1.25rem);
    right: clamp(0.8rem, 4vw, 1.25rem);
  }

  .contact-link {
    width: clamp(2rem, 10vw, 2.4rem);
  }

  .marquee-bar {
    height: clamp(4rem, 19vw, 4.7rem);
  }

  .marquee-item {
    gap: clamp(1rem, 5vw, 1.65rem);
    padding-right: clamp(1.75rem, 8vw, 2.6rem);
    font-size: clamp(0.98rem, 4.6vw, 1.25rem);
  }

  .marquee-logo {
    width: clamp(1.75rem, 8vw, 2.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .contact-link {
    transition: none;
  }
}
