* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.stage {
  --cta-y: 64%;
  position: relative;
  width: min(100vw, calc(100dvh * (1448 / 1086)));
  aspect-ratio: 1448 / 1086;
  background-image: url("landingpage-pharaoh.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  background: #000;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: #000;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.56));
  pointer-events: none;
}


.cta-wrap {
  position: absolute;
  left: 50%;
  top: var(--cta-y);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  color: #3c2b12;
  background: linear-gradient(180deg, #f7e7a9 0%, #e5c670 35%, #c99a3b 65%, #b57f1f 100%);
  padding: 16px 44px;
  border-radius: 999px;
  font-size: clamp(15px, 2.1vw, 20px);
  letter-spacing: 1px;
  font-weight: 700;
  border: 1px solid rgba(255, 215, 150, 0.85);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.55),
    inset 0 -4px 6px rgba(110, 63, 0, 0.45),
    0 10px 26px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(255, 204, 102, 0.35);
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  min-width: min(82vw, 380px);
  max-width: 90vw;
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 3px 8px auto 8px;
  height: 40%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  opacity: 0.55;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  box-shadow: 0 0 22px rgba(255, 204, 102, 0.45);
  opacity: 0.35;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.65),
    inset 0 -4px 6px rgba(110, 63, 0, 0.4),
    0 14px 30px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(255, 204, 102, 0.55);
}

.cta:hover::after {
  opacity: 0.6;
}

.cta:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}
@media (max-width: 1024px) {
  .stage {
    --cta-y: 65%;
  }
}

@media (max-width: 768px) {
  .stage {
    --cta-y: 66%;
  }

  .cta {
    min-width: min(86vw, 330px);
    padding: 12px 22px;
    font-size: clamp(13px, 3.8vw, 16px);
    letter-spacing: 0.9px;
  }
}

@media (max-height: 520px) {
  .stage {
    --cta-y: 60%;
  }

  .cta {
    min-width: min(72vw, 290px);
    padding: 10px 16px;
    font-size: clamp(11px, 2.2vw, 14px);
    letter-spacing: 0.7px;
  }
}


