:root {
  --page-width: 1024px;
  --page-height: 768px;
  --accent: #e4002b;
  --text: #ffffff;
}

@font-face {
  font-family: "Monument Extended";
  src:
    url("./font/monumentextended-regular.woff2") format("woff2"),
    url("./font/monumentextended-regular.woff") format("woff"),
    url("./font/MonumentExtended-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monument Extended";
  src:
    url("./font/monumentextended-ultrabold.woff2") format("woff2"),
    url("./font/monumentextended-ultrabold.woff") format("woff"),
    url("./font/MonumentExtended-Ultrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Monument Extended", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #000;
  overflow: hidden;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0;
}

.stage {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.stage__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 60% 30%, rgba(90, 0, 40, 0.7), rgba(0, 0, 0, 0.95)),
    linear-gradient(130deg, rgba(0, 0, 0, 0.95), rgba(40, 0, 20, 0.7) 55%, rgba(0, 0, 0, 0.95));
}

.stage__bgImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.stage__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 6vh, 60px) clamp(18px, 4vw, 48px);
  gap: clamp(16px, 3vh, 26px);
}

.brand {
  display: grid;
  place-items: center;
  gap: 10px;
}

.brand__logo {
  width: 270px;
  height: auto;
  display: block;
}

.message {
  max-width: min(1020px, 92vw);
  font-size: clamp(20px, 3.2vw, 32px);
  line-height: 1.25;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  margin: 30px 0 0 0;
  font-weight: 400;
}

.cta {
  margin-top: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.6px;
  font-size: clamp(12px, 2.8vw, 13px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  font-weight: 400;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-140%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(228, 0, 43, 0.35);
  filter: brightness(1.12) saturate(1.08);
}

.button:hover::after {
  transform: translateX(140%);
}

.button:active {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }

  .button::after {
    transition: none;
  }

  .button:hover,
  .button:active {
    transform: none;
    filter: none;
  }
}

.button:focus-visible {
  outline: 3px solid rgba(228, 0, 43, 0.55);
  outline-offset: 4px;
}
@media (max-width: 1024px) {
  .content {
    padding: 34px 18px;
  }

  .brand__logo {
    width: 250px;
  }

  .message {
    font-size:28px;
    line-height: 1.3;
    margin: 20px 0 0 0;
  }
}
@media (max-width: 720px) {
  .content {
    padding: 34px 18px;
  }

  .brand__logo {
    width: 150px;
  }

  .message {
    font-size:18px;
    line-height: 1.3;
    margin: 15px 0 0 0;
  }

  .button {
    padding: 12px 24px;
  }

}
