/* ============ TOKENS ============ */
:root {
  --orange: #F16B27;
  --orange-dark: #C74F16;
  --yellow: #FCED21;
  --black: #0A0A0A;
  --black-soft: #141414;
  --white: #FFFFFF;
  --gray: #9A9A9A;
  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ============ COMING SOON ============ */
.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
  isolation: isolate;
}

.glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(241,107,39,0.35), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(252,237,33,0.22), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(241,107,39,0.28), transparent 55%),
    var(--black);
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(6deg) brightness(1.08); }
}

.coming-soon-inner {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.logo span { color: var(--orange); }

.eyebrow {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--yellow);
  margin-bottom: 20px;
}

.headline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.05;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin-bottom: 22px;
}

.text-outline {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}

.lead {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: #D8D8D8;
  max-width: 560px;
  margin: 0 auto 32px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}
.pills span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============ FORM ============ */
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  margin-bottom: 14px;
}
.signup-form input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 15px 22px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.signup-form input::placeholder { color: var(--gray); }
.signup-form input:focus { outline: none; border-color: var(--orange); }
.signup-form input:invalid.touched { border-color: var(--orange-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.99); }

.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 8px 24px rgba(241,107,39,0.35); }
.btn-orange:hover { background: var(--orange-dark); box-shadow: 0 12px 32px rgba(241,107,39,0.5); }

.form-note {
  font-size: 0.85rem;
  color: var(--gray);
  max-width: 440px;
  margin: 0 auto 44px;
}
.form-note.success { color: var(--yellow); font-weight: 600; }
.form-note.error { color: var(--orange); font-weight: 600; }

/* ============ SOCIAL ============ */
.social { display: flex; gap: 14px; }
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--orange); border-color: var(--orange); }

.footer-note {
  position: relative;
  margin-top: 56px;
  color: var(--gray);
  font-size: 0.82rem;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.logo.reveal { transition-delay: 0s; }
.eyebrow.reveal { transition-delay: 0.05s; }
.headline.reveal { transition-delay: 0.1s; }
.lead.reveal { transition-delay: 0.15s; }
.pills.reveal { transition-delay: 0.2s; }
.signup-form.reveal { transition-delay: 0.25s; }
.social.reveal { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .glow { animation: none; }
}

@media (max-width: 480px) {
  .signup-form { flex-direction: column; }
  .signup-form input, .signup-form .btn { width: 100%; }
}
