:root {
  --bg0: #12161c;
  --ink: #eadfce;
  --mute: #a89982;
  --ember: #d4a574;
  --path: #7f9e8a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  height: 100%;
  background: var(--bg0);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  overflow: hidden;
}

#sky {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.haze {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% 115%, rgba(212, 165, 116, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 40% at 20% 10%, rgba(70, 100, 120, 0.18), transparent 50%),
    linear-gradient(180deg, transparent 40%, rgba(18, 22, 28, 0.55) 100%);
}

.horizon {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18%;
  height: 1px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(232, 223, 208, 0.25), transparent);
  opacity: 0;
  animation: rise-line 1.6s ease 0.4s forwards;
}

.stage {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  opacity: 0;
  transform: translateY(12px);
  animation: enter 1s ease 0.2s forwards;
}

.brand {
  margin: 0;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px);
  animation: enter 1.1s ease 0.45s forwards;
}

.line {
  margin: 1.25rem 0 0;
  max-width: 22rem;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--mute);
  opacity: 0;
  transform: translateY(14px);
  animation: enter 1s ease 0.85s forwards;
}

.foot {
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.coord {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: color-mix(in srgb, var(--mute) 70%, transparent);
  opacity: 0;
  animation: enter 1s ease 1.2s forwards;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise-line {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow,
  .brand,
  .line,
  .coord,
  .horizon {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
