:root {
  --bg: #050110;
  --bg-2: #09031f;
  --bg-3: #110a2d;
  --panel: rgba(18, 10, 37, 0.72);
  --border: rgba(191, 140, 255, 0.24);
  --text: #f3ecff;
  --muted: #b8b1c9;
  --accent: #8a4dff;
  --accent-2: #4b87ff;
  --shadow: 0 20px 60px rgba(7, 1, 20, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(138, 77, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(75, 135, 255, 0.2), transparent 24%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
  overflow-x: hidden;
}

.background-noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 0.6px, transparent 0.6px);
  background-size: 10px 10px;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: drift 14s linear infinite;
}

.page-shell {
  min-height: 100vh;
  padding: 2rem;
  display: grid;
  place-items: center;
}

.hero-card {
  position: relative;
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: 32px;
  backdrop-filter: blur(26px);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.04), transparent 45%, rgba(255,255,255,0.03));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d2b5ff;
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 640px;
  margin: 1rem 0 1.8rem;
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.countdown-item {
  padding: 0.85rem 0.6rem;
  border-radius: 18px;
  text-align: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
}

.countdown-item span {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
}

.countdown-item small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c7b9dc;
}

.notify-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 0.8rem;
}

.notify-form input {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;
}

.notify-form input::placeholder {
  color: #a39cae;
}

.notify-form button {
  padding: 0.95rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 18px 35px rgba(96, 77, 255, 0.26);
}

.notify-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(96, 77, 255, 0.34);
}

.form-status {
  margin: 0 0 1.05rem;
  color: #d1c5eb;
  min-height: 1.4rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #e6dfff;
  text-decoration: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

.social-links a:hover {
  border-color: #b580ff;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.glow-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 83, 255, 0.42), transparent 70%);
  filter: blur(24px);
  animation: pulse 4.2s ease-in-out infinite;
}

.hero-visual img {
  width: min(100%, 380px);
  filter: drop-shadow(0 0 22px rgba(155, 92, 255, 0.4));
  position: relative;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes drift {
  from { transform: translateY(0px); }
  to { transform: translateY(18px); }
}

@media (max-width: 860px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 1rem;
  }

  .hero-card {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form button {
    width: 100%;
  }
}
