:root {
  color-scheme: dark;
  --display-font: "Noto Serif", Georgia, "Times New Roman", serif;
}

html[lang="zh-CN"] {
  --display-font: "Noto Serif SC", "PingFang SC", "Microsoft YaHei", serif;
}

html[lang="hi-IN"] {
  --display-font: "Noto Serif Devanagari", "Nirmala UI", serif;
}

html[lang="th"] {
  --display-font: "Noto Serif Thai", Tahoma, serif;
}

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

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

body {
  color: #fff;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.landing {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  background: #000;
}

.backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #050505;
}

.poster-mosaic {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 150vh;
  background: #060606;
  transform: translate(-50%, -50%) rotate(-8deg) scale(1.035);
  transform-origin: center;
}

.poster-picture,
.poster-collage {
  display: block;
  width: 100%;
  height: 100%;
}

.poster-collage {
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  filter: saturate(.8) contrast(1.05);
  -webkit-user-drag: none;
}

.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 43%, rgba(0, 0, 0, .74) 0%, rgba(0, 0, 0, .82) 45%, rgba(0, 0, 0, .9) 100%),
    rgba(0, 0, 0, .1);
  pointer-events: none;
}

.stage {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(100vw, 177.7777778vh);
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  container-type: inline-size;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.125cqw;
  transform: translate(-50%, -50%);
  text-align: center;
}

.head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25cqw;
}

.eyebrow {
  color: #ffb92b;
  font-family: var(--display-font);
  font-size: 1.875cqw;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.head h1 {
  color: #fff;
  font-family: var(--display-font);
  font-size: 3.125cqw;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 .1cqw .32cqw rgba(0, 0, 0, .6);
}

.paras {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25cqw;
}

.paras p {
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.25cqw;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 .08cqw .22cqw rgba(0, 0, 0, .75);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-button {
  display: inline-flex;
  width: 190px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-button {
  background: #25d366;
  box-shadow: 0 .625cqw .2604cqw rgba(37, 211, 102, .12);
}

.telegram-button {
  background: #229ed9;
  box-shadow: 0 .625cqw .2604cqw rgba(34, 158, 217, .1);
}

.contact-icon {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-button span {
  color: #fff;
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.footer-reserved {
  width: 11.458333cqw;
  height: 5.802083cqw;
  pointer-events: none;
}

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

@media (max-aspect-ratio: 1 / 1) {
  .landing {
    min-height: 100svh;
  }

  .poster-collage {
    filter: saturate(1) contrast(1.02) brightness(1.15);
  }

  .backdrop::after {
    background:
      radial-gradient(ellipse at 50% 43%, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .54) 46%, rgba(0, 0, 0, .7) 100%),
      rgba(0, 0, 0, .03);
  }

  .stage {
    width: 164vw;
  }

  .content {
    gap: 30px;
  }

  .head {
    gap: 14px;
  }

  .eyebrow {
    font-size: clamp(19px, 5.2vw, 23px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .95);
  }

  .head h1 {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.2;
    text-shadow: 0 2px 9px rgba(0, 0, 0, .95), 0 0 3px #000;
  }

  .paras {
    gap: 10px;
  }

  .paras p {
    font-size: clamp(15px, 4.15vw, 18px);
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .98), 0 0 2px #000;
  }

  .contact-actions {
    width: min(92vw, 380px);
    gap: 10px;
  }

  .contact-button {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    gap: 6px;
    min-height: 52px;
    height: 52px;
    padding: 10px 8px;
  }

  .contact-icon {
    width: 22px;
    height: 22px;
  }

  .contact-button span {
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .footer-reserved {
    width: 1px;
    height: 1px;
  }

  html:not([lang="zh-CN"]) .head h1 {
    font-size: clamp(27px, 7.4vw, 35px);
  }

  html[lang="vi"] .head h1 {
    font-size: clamp(25px, 6.8vw, 32px);
  }

  html[lang="fil-PH"] .head h1 {
    font-size: clamp(23px, 6.4vw, 31px);
  }

  html[lang="pt"] .paras p,
  html[lang="es"] .paras p,
  html[lang="fil-PH"] .paras p {
    font-size: clamp(14px, 3.75vw, 17px);
  }

  html[lang="pt"] .contact-button span,
  html[lang="es"] .contact-button span,
  html[lang="vi"] .contact-button span,
  html[lang="fil-PH"] .contact-button span {
    font-size: clamp(10.5px, 3.1vw, 14px);
  }

  html[lang="th"] .contact-button span {
    font-size: clamp(11px, 3.2vw, 14px);
  }

  .poster-mosaic {
    width: 185vw;
    height: 135vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

@media (max-width: 340px) and (max-aspect-ratio: 1 / 1) {
  .contact-actions {
    width: 96vw;
    gap: 8px;
  }

  .contact-button {
    gap: 5px;
    padding-inline: 7px;
  }

  .contact-icon {
    width: 21px;
    height: 21px;
  }

  .contact-button span {
    font-size: 13px;
  }

  html[lang="pt"] .contact-button span,
  html[lang="es"] .contact-button span,
  html[lang="vi"] .contact-button span,
  html[lang="fil-PH"] .contact-button span,
  html[lang="th"] .contact-button span {
    font-size: 10.5px;
  }
}
