
.site-footer {
  --white:  #F0F0F0;
  --yellow: #F8FF13;
  --grey:   #9E9E9E;
  --dark:   #020307;

  position: relative;
  display: flex;
  justify-content: center;
  margin: 0;

  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  font-family: 'Euclid Circular A', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-footer__stage {
  position: relative;
  flex: none;
  width: 1440px;
  height: 800px;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  width: 1440px;
  height: 800px;
  pointer-events: none;
}
.site-footer__bg--main { z-index: 0; }
.site-footer__bg--dots { z-index: 2; }

.site-footer__bg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.site-footer__bg-mobile--main { z-index: 0; }
.site-footer__bg-mobile--dots { z-index: 2; }

.site-footer__content {
  position: absolute;
  left: 50%;
  top: 192px;
  transform: translateX(-50%);
  width: 444px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  z-index: 3;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.site-footer__logo { width: 294px; height: auto; }

.site-footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  width: max-content;
  max-width: none;
}
.site-footer__menu a {
  font: var(--fw-medium) 14px/20px var(--font-sans);
  letter-spacing: -0.14px;
  color: var(--grey);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.site-footer__menu a:hover,
.site-footer__menu a:focus-visible { color: var(--white); }
.site-footer__menu-dot {
  flex: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey);
}

.site-footer__badge.hero__badge { width: 444px; }

.site-footer__legal {
  position: absolute;
  left: 50%;
  top: 714.5px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.site-footer__legal a {
  color: var(--grey);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  font-feature-settings: 'lnum' 1, 'pnum' 1;
}
.site-footer__legal a:hover { color: var(--white); }
.site-footer__legal-dot {
  flex: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey);
}

.site-footer__copyright {
  margin: 0;
  color: var(--grey);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  font-feature-settings: 'lnum' 1, 'pnum' 1;
}

  @media (max-width: 767px) {

    .site-footer__stage {
      width: 100%;
      max-width: 375px;
      min-height: 812px;
      margin: 0 auto;
      background: none;
    }

    .site-footer__bg { display: none; }

    .site-footer__bg-mobile {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .site-footer__bg-mobile--main { z-index: 0; }
    .site-footer__bg-mobile--dots { z-index: 2; }

    .totop { display: none; }

    .site-footer__content {
      left: 16px;
      top: 64.004px;
      transform: none;
      width: 343px;
      max-width: calc(100% - 32px);
      gap: 32px;
    }

    .site-footer__logo { width: 219.84px; height: auto; }

    .site-footer__menu {
      flex-direction: column;
      gap: 12px;
      width: auto;
      max-width: none;
    }

    .site-footer__badge.hero__badge { width: 100%; }
    .site-footer__badge .hero__laurel-wrap--left  { left: -28.411px; top: 47.248px; }
    .site-footer__badge .hero__laurel-wrap--right { right: -71.211px; top: -27.082px; }

    .site-footer__copyright {
      width: 100%;
      text-align: center;
    }

    .site-footer__legal {
      left: 16px;
      top: 624.004px;
      transform: none;
      flex-direction: column;
      gap: 8px;
      width: 343px;
      max-width: calc(100% - 32px);
    }
  }
