:root {
  --night: #1a0b2e;
  --dusk: #4a1942;
  --pink: #ff2d78;
  --orange: #ff9a3d;
  --teal: #01d9c0;
  --cream: #fef2e8;
  --ink: #2a1240;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.sky {
  position: relative;
  height: 78vh;
  min-height: 520px;
  background: linear-gradient(180deg, var(--night) 0%, var(--dusk) 35%, var(--pink) 75%, var(--orange) 100%);
  overflow: hidden;
}

.sun {
  position: absolute;
  left: 50%;
  bottom: 14%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 50%, var(--orange) 0%, var(--pink) 60%, transparent 72%);
  filter: blur(1px);
  opacity: 0.9;
}

.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22%;
  color: var(--ink);
  opacity: 0.85;
}

main {
  position: relative;
  z-index: 1;
  margin-top: -78vh;
}

.hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
}

.kicker {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.75;
}

.hero h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  line-height: 0.95;
  margin: 0 0 2rem;
  color: var(--cream);
  text-shadow: 0 0 30px rgba(255, 45, 120, 0.5);
}

.countdown {
  display: flex;
  gap: clamp(0.6rem, 2.5vw, 1.5rem);
  margin-bottom: 1.5rem;
}

.unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
}

.num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1;
  color: var(--cream);
}

.label {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.75;
}

.release-line {
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
}

.release-line strong {
  color: var(--teal);
}

.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(254, 242, 232, 0.5);
}

.facts, .faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.facts h2, .faq h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.fact {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
}

.fact h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--teal);
}

.fact p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 45ch;
  opacity: 0.9;
}

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
}

.faq p {
  margin: 0.75rem 0 0;
  max-width: 68ch;
  opacity: 0.9;
}

footer {
  text-align: center;
  padding: 2rem 1.25rem 3rem;
  font-size: 0.82rem;
  opacity: 0.55;
}

@media (max-width: 480px) {
  .fact-grid { grid-template-columns: 1fr; }
  .unit { min-width: 56px; }
}
