:root {
  --bg-1: #07080b;
  --bg-2: #11131a;
  --bg-3: #1a1d28;
  --text: #f5efe6;
  --muted: #cbbfae;
  --soft: rgba(245, 239, 230, 0.72);
  --gold: #c8a96b;
  --gold-soft: rgba(200, 169, 107, 0.3);
  --crimson: #7a1f27;
  --crimson-bright: #9d2d37;
  --border: rgba(255, 232, 196, 0.16);
  --panel: rgba(10, 11, 16, 0.44);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg-1);
}

body {
  min-height: 100vh;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 220, 150, 0.06), transparent 28%),
    linear-gradient(180deg, #090a0e 0%, #11131a 48%, #0a0b10 100%);
}

.bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-image {
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.bg-base {
  background:
    linear-gradient(180deg, rgba(9, 10, 14, 0.2), rgba(8, 8, 12, 0.7)),
    radial-gradient(circle at 20% 25%, rgba(108, 34, 42, 0.28), transparent 24%),
    radial-gradient(circle at 78% 24%, rgba(81, 96, 142, 0.22), transparent 26%),
    radial-gradient(circle at 50% 58%, rgba(198, 154, 74, 0.08), transparent 20%);
}

.bg-glow {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 212, 130, 0.12), transparent 14%),
    radial-gradient(circle at 50% 24%, rgba(255, 236, 190, 0.05), transparent 28%),
    radial-gradient(circle at 16% 75%, rgba(137, 26, 40, 0.10), transparent 18%),
    radial-gradient(circle at 84% 72%, rgba(70, 84, 132, 0.10), transparent 18%);
  filter: blur(8px);
}

.bg-fog {
  opacity: 0.55;
  mix-blend-mode: screen;
}

.fog-one {
  background:
    radial-gradient(ellipse at 20% 78%, rgba(181, 196, 222, 0.08), transparent 22%),
    radial-gradient(ellipse at 52% 80%, rgba(210, 220, 235, 0.08), transparent 26%),
    radial-gradient(ellipse at 85% 76%, rgba(184, 191, 213, 0.07), transparent 22%);
  filter: blur(30px);
}

.fog-two {
  background:
    radial-gradient(ellipse at 30% 86%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(ellipse at 65% 88%, rgba(255, 255, 255, 0.04), transparent 20%);
  filter: blur(60px);
  opacity: 0.45;
}

.bg-fractures {
  background-image:
    linear-gradient(115deg, transparent 0 48.7%, rgba(255,255,255,0.08) 49%, transparent 49.3%),
    linear-gradient(81deg, transparent 0 63.7%, rgba(255,255,255,0.05) 64%, transparent 64.4%),
    linear-gradient(102deg, transparent 0 28.8%, rgba(255,255,255,0.05) 29%, transparent 29.3%),
    linear-gradient(72deg, transparent 0 78.8%, rgba(255,255,255,0.04) 79%, transparent 79.3%);
  opacity: 0.33;
}

.bg-vignette {
  background:
    radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.58) 100%);
}

.content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 28px 70px;
  text-align: center;
}

.content::before {
  content: "";
  position: absolute;
  inset: 42px 0 0;
  z-index: -1;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    var(--panel);
  box-shadow:
    0 20px 50px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(5px);
  border-radius: 22px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(200, 169, 107, 0.35);
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  text-transform: uppercase;
  background: rgba(200, 169, 107, 0.08);
}

h1 {
  margin: 0;
  font-size: clamp(2.9rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  color: #f8f2ea;
  text-shadow:
    0 0 12px rgba(255, 236, 190, 0.10),
    0 0 28px rgba(117, 34, 41, 0.18);
}

.tagline {
  margin: 20px auto 0;
  max-width: 680px;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
}

.description {
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--soft);
}

.description.lead {
  margin-top: 28px;
  color: #ece3d5;
}

.actions {
  margin-top: 36px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button.primary {
  color: #fff8ef;
  border: 1px solid rgba(255, 224, 181, 0.18);
  background:
    linear-gradient(180deg, var(--crimson-bright), var(--crimson));
  box-shadow:
    0 10px 24px rgba(122, 31, 39, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(122, 31, 39, 0.42),
    0 0 24px rgba(200, 169, 107, 0.12);
}

.coming {
  margin-top: 24px;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.56);
}

footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 18px 20px 30px;
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.45);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 20px 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-copy {
  color: rgba(245, 239, 230, 0.55);
}

.socials a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.socials a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .content {
    padding: 82px 18px 50px;
  }

  .content::before {
    inset: 26px 0 0;
    border-radius: 18px;
  }

  .description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .tagline {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
    max-width: 300px;
  }
}
