:root {
  --bg: #0b0908;
  --bg-soft: #17110f;
  --panel: rgba(19, 14, 12, 0.8);
  --panel-strong: rgba(15, 10, 9, 0.92);
  --line: rgba(232, 194, 125, 0.34);
  --gold: #e4b35d;
  --gold-soft: #f4d8a0;
  --ember: #a73a22;
  --crimson: #7d1e1d;
  --azure: #2048a5;
  --text: #f4eee4;
  --muted: #cbbca7;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.52);
  --halo-top: 50%;
  --halo-size-x: clamp(320px, 40vw, 520px);
  --halo-size-y: clamp(420px, 52vw, 700px);
  --halo-blur: 48px;
  --halo-gradient: radial-gradient(circle, rgba(199, 67, 38, 0.5) 0%, rgba(120, 18, 10, 0.32) 36%, rgba(0, 0, 0, 0) 76%);
  --logo-glow-a: drop-shadow(0 0 18px rgba(214, 88, 46, 0.36));
  --logo-glow-b: drop-shadow(0 0 36px rgba(123, 27, 16, 0.28));
  --logo-glow-a-peak: drop-shadow(0 0 30px rgba(255, 140, 82, 0.58));
  --logo-glow-b-peak: drop-shadow(0 0 56px rgba(137, 25, 14, 0.36));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(228, 179, 93, 0.08), transparent 24%),
    linear-gradient(180deg, #1c1b1b 0%, #0c0b0b 55%, #060606 100%);
  color: var(--text);
  font-family: "Marcellus", "Palatino Linotype", serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 32px 20px 40px;
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(228, 179, 93, 0.07), transparent 32%),
    linear-gradient(135deg, rgba(34, 34, 36, 0.96), rgba(14, 14, 15, 0.98) 42%, rgba(5, 5, 6, 1) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(228, 179, 93, 0.18);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  max-width: 560px;
  max-height: 560px;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.22;
  z-index: -1;
}

.hero__glow--left {
  left: -14vw;
  top: 8vh;
  background: rgba(167, 58, 34, 0.72);
}

.hero__glow--right {
  right: -12vw;
  bottom: 12vh;
  background: rgba(32, 72, 165, 0.56);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  min-height: calc(100dvh - 72px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
}

.hero__content::before {
  content: "";
  position: absolute;
  top: var(--halo-top);
  left: 50%;
  width: var(--halo-size-x);
  height: var(--halo-size-y);
  border-radius: 999px;
  background: var(--halo-gradient);
  filter: blur(var(--halo-blur));
  opacity: 1;
  z-index: 0;
  transform: translate(-50%, -50%);
  animation: crest-aura 3.4s ease-in-out infinite;
}

.hero__logo {
  width: clamp(150px, 19vw, 230px);
  height: auto;
  position: relative;
  z-index: 1;
  filter:
    var(--logo-glow-a)
    var(--logo-glow-b)
    drop-shadow(0 16px 30px rgba(0, 0, 0, 0.52));
  animation: crest-rise 850ms ease-out both, crest-glow 3.4s ease-in-out infinite;
}

.hero__panel {
  width: min(430px, 100%);
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(180deg, rgba(32, 16, 13, 0.18), rgba(12, 12, 14, 0.54)),
    rgba(12, 12, 14, 0.4);
  border: 1px solid rgba(244, 160, 126, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 219, 198, 0.06),
    0 16px 36px rgba(0, 0, 0, 0.24);
  text-align: center;
  backdrop-filter: blur(8px);
  position: relative;
  animation: panel-rise 950ms ease-out both;
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero__coming {
  margin: 0 0 18px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 228, 207, 0.82);
  text-shadow: 0 0 18px rgba(199, 67, 38, 0.14);
}

.footer p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.hero__actions {
  display: grid;
  gap: 12px;
}

.button {
  min-width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid rgba(244, 216, 160, 0.58);
  outline-offset: 3px;
}

.button--obsidian {
  background:
    linear-gradient(180deg, rgba(23, 23, 26, 0.98), rgba(8, 8, 10, 0.98));
  color: #f3dfbf;
  border-color: rgba(228, 179, 93, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 205, 0.08),
    inset 0 0 0 1px rgba(228, 179, 93, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.4);
  text-shadow: 0 0 10px rgba(228, 179, 93, 0.12);
}

.button--obsidian:hover,
.button--obsidian:focus-visible {
  background:
    linear-gradient(135deg, rgba(27, 23, 54, 0.98), rgba(39, 58, 132, 0.96) 52%, rgba(122, 161, 241, 0.9));
  color: #eef4ff;
  border-color: rgba(170, 198, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(221, 235, 255, 0.18),
    inset 0 0 0 1px rgba(170, 198, 255, 0.1),
    0 18px 36px rgba(19, 49, 117, 0.34);
  text-shadow: 0 0 14px rgba(188, 214, 255, 0.12);
}

.footer {
  padding: 24px 20px 38px;
  text-align: center;
  background: #080605;
  border-top: 1px solid rgba(228, 179, 93, 0.14);
}

.footer p {
  margin: 0;
}

.footer p:first-child {
  font-family: "Cinzel", "Times New Roman", serif;
  color: var(--gold-soft);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p:last-child {
  margin-top: 8px;
  font-size: 0.95rem;
}

@keyframes crest-rise {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panel-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes crest-glow {
  0%,
  100% {
    filter:
      var(--logo-glow-a)
      var(--logo-glow-b)
      drop-shadow(0 16px 30px rgba(0, 0, 0, 0.52));
  }

  50% {
    filter:
      var(--logo-glow-a-peak)
      var(--logo-glow-b-peak)
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.58));
  }
}

@keyframes crest-aura {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.82;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 760px) {
  :root {
    --halo-size-x: clamp(300px, 88vw, 420px);
    --halo-size-y: clamp(420px, 112vw, 620px);
    --halo-blur: 44px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-inline: 14px;
  }

  .hero__panel {
    padding-inline: 20px;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
