:root {
  --bg: #050505;
  --bg-elevated: #0c0c0e;
  --text: #f4f4f2;
  --muted: #9a9a96;
  --gold: #c4a574;
  --gold-soft: rgba(196, 165, 116, 0.18);
  --line: rgba(255, 255, 255, 0.08);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
  perspective: 900px;
}

.city {
  position: absolute;
  inset: -48px;
  background: url("../assets/city.png") center / cover no-repeat;
  filter: blur(5px) saturate(0.95) brightness(0.72);
  transform: scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
}

.glow-a {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  background: rgba(196, 165, 116, 0.28);
  animation: drift-a 18s ease-in-out infinite;
}

.glow-b {
  width: 28vw;
  height: 28vw;
  max-width: 320px;
  max-height: 320px;
  right: 8%;
  bottom: 22%;
  background: rgba(255, 255, 255, 0.07);
  animation: drift-b 22s ease-in-out infinite;
}

.spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--spot-x, 50%) var(--spot-y, 42%),
    rgba(255, 224, 176, 0.28) 0%,
    rgba(196, 165, 116, 0.1) 26%,
    transparent 58%
  );
  mix-blend-mode: soft-light;
}

.shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    680px circle at var(--spot-x, 50%) var(--spot-y, 42%),
    transparent 0%,
    rgba(0, 0, 0, 0.18) 46%,
    rgba(0, 0, 0, 0.48) 100%
  );
}

.vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.42) 80%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.08) 45%, rgba(5, 5, 5, 0.5) 100%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero,
.foot {
  position: relative;
  z-index: 1;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 24px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(720px, 90vw);
  height: min(520px, 70vh);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 48%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}

.logo {
  width: min(340px, 58vw);
  height: auto;
  mix-blend-mode: screen;
  margin-bottom: 12px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.85));
  animation: rise 1.1s ease-out both;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  animation: rise 1.1s ease-out 0.12s both;
}

h1 {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 4px 0 18px;
  animation: rise 1.1s ease-out 0.12s both;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 8px 28px rgba(0, 0, 0, 0.75);
}

.lede {
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  color: #f4f4f2;
  animation: rise 1.1s ease-out 0.2s both;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 4px 18px rgba(0, 0, 0, 0.85),
    0 0 42px rgba(0, 0, 0, 0.7);
}

.lede em {
  font-style: normal;
  color: var(--text);
  font-weight: 500;
}

.pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  animation: rise 1.1s ease-out 0.28s both;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.7));
}

.pills li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f4f2;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 20px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.92) 36%);
  z-index: 2;
}

.sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift-a {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-46%) translateY(18px);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-18px, 14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow,
  .logo,
  .eyebrow,
  h1,
  .lede,
  .pills {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 12px 16px 80px;
  }

  .logo {
    width: min(260px, 68vw);
    margin-bottom: 14px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .lede {
    font-size: 0.98rem;
  }

  .foot {
    flex-direction: column;
    gap: 6px;
  }

  .foot .sep {
    display: none;
  }
}
