* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af6a;
  --bg: #0a0a0f;
}

html, body {
  height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: #f5f5f5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-align: center;
  overflow: hidden;
}

/* Ambient glow blobs */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, #d4af6a 0%, transparent 70%);
  animation: drift1 16s ease-in-out infinite;
}

.glow-2 {
  width: 700px;
  height: 700px;
  bottom: -250px;
  right: -200px;
  background: radial-gradient(circle, #3b5bfd 0%, transparent 70%);
  animation: drift2 18s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.05); }
}

/* Subtle grain texture */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 640px;
  animation: rise 1s ease-out;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 106, 0.35);
  border-radius: 999px;
  background: rgba(212, 175, 106, 0.06);
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
}

h1 span {
  background: linear-gradient(120deg, var(--gold), #f4dca6 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.divider {
  width: 48px;
  height: 2px;
  margin: 1.75rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.55);
}

footer {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 245, 0.3);
}

@media (max-width: 480px) {
  .tagline { letter-spacing: 0.2em; }
}
