*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #000;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 30;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  top: 16px;
}

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

.page {
  width: 100vw;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.mockup {
  position: relative;
  flex: 0 0 auto;
}

.mockup--desktop {
  width: min(100vw, calc(100svh * 1536 / 1024), 1536px);
  aspect-ratio: 1536 / 1024;
}

.mockup--mobile {
  display: none;
  width: min(100vw, calc(100svh * 853 / 1844), 853px);
  aspect-ratio: 853 / 1844;
}

.mockup__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
}

.hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.16);
  transition: opacity 160ms ease;
}

.hotspot:hover::after,
.hotspot:focus-visible::after {
  opacity: 1;
}

.hotspot:focus-visible {
  outline: 2px solid rgba(255, 239, 190, 0.95);
  outline-offset: 3px;
}

.desktop-register {
  left: 3.2%;
  top: 59.7%;
  width: 36.9%;
  height: 10%;
}

.desktop-whatsapp {
  left: 3.3%;
  top: 72.7%;
  width: 27.8%;
  height: 10.7%;
}

.desktop-telegram {
  left: 32.6%;
  top: 72.7%;
  width: 26.5%;
  height: 10.7%;
}

.desktop-website {
  left: 60.5%;
  top: 72.7%;
  width: 28.8%;
  height: 10.7%;
}

.mobile-register {
  left: 14.4%;
  top: 54%;
  width: 71.5%;
  height: 6.4%;
}

.mobile-whatsapp {
  left: 14.4%;
  top: 61.7%;
  width: 71.5%;
  height: 6%;
}

.mobile-telegram {
  left: 14.4%;
  top: 68.4%;
  width: 71.5%;
  height: 6%;
}

.mobile-website {
  left: 14.4%;
  top: 75.1%;
  width: 71.5%;
  height: 6%;
}

.ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.34);
  animation: ripple 600ms ease-out forwards;
  pointer-events: none;
}

.in-app-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 22;
  width: min(calc(100% - 32px), 420px);
  transform: translateX(-50%);
  padding: 12px 16px;
  border: 1px solid rgba(255, 214, 122, 0.22);
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.94);
  color: rgba(248, 239, 217, 0.72);
  font-size: 0.84rem;
  text-align: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

@keyframes ripple {
  from {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(0);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (max-width: 800px) {
  body {
    overflow-y: auto;
  }

  .page {
    width: 100%;
    min-height: 100svh;
    height: auto;
    display: block;
    overflow: visible;
  }

  .mockup--desktop {
    display: none;
  }

  .mockup--mobile {
    display: block;
    width: 100vw;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 340px) {
  .mockup--mobile {
    width: 100vw;
  }
}
