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

:root {
  --sky-deep:    #0a1628;
  --sky-mid:     #0d2a52;
  --sky-horizon: #1a4a7a;
  --gold:        #e8b84b;
  --gold-light:  #f5d07a;
  --wheat:       #c9933a;
  --text-light:  #d8e8f8;
  --text-muted:  #7aaacf;
}

html, body {
  height: 100%;
  font-family: 'Jost', sans-serif;
  background: var(--sky-deep);
  color: var(--text-light);
  overflow: hidden;
}

/* Sky gradient */
.sky {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    #040c1a 0%,
    #0a1e3d 25%,
    #0f2e5e 50%,
    #1a4a7a 70%,
    #2a6a9a 82%,
    #c47a35 90%,
    #e8963a 95%,
    #f5b84a 100%
  );
  z-index: 0;
}

/* Stars */
.stars {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--dur) ease-in-out infinite alternate;
  opacity: 0;
}

@keyframes twinkle {
  0%   { opacity: 0.1; transform: scale(0.8); }
  100% { opacity: var(--max-op); transform: scale(1.2); }
}

/* Prairie horizon SVG */
.horizon {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  pointer-events: none;
}

/* Glow pulse */
.glow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232,184,75,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 4;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -60%) scale(1);    }
  50%       { opacity: 1;   transform: translate(-50%, -60%) scale(1.15); }
}

/* Main content */
.content {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232,184,75,0.35);
  padding: 0.45em 1.2em;
  border-radius: 2em;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
  backdrop-filter: blur(4px);
  background: rgba(10,22,40,0.4);
}

.logo {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.55s;
  margin-bottom: 1.8rem;
}

.logo-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #f5d07a 0%, #e8b84b 40%, #c9933a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-light);
  letter-spacing: 0.04em;
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.tagline strong {
  font-weight: 500;
  color: white;
}

.coming-soon-block {
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.coming-soon-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.progress-track {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: sweep 2.8s ease-in-out infinite 1.5s;
}

@keyframes sweep {
  0%   { left: -100%; }
  60%  { left: 100%;  }
  100% { left: 100%;  }
}

.domain {
  margin-top: 4rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(122,170,207,0.5);
  text-transform: lowercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.5s;
}

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

@media screen and (max-width: 600px) {
  body { width: 100vw; }
  .glow { width: 320px; height: 240px; }
}
