/* ─── COMING SOON PAGE ── */

body.coming-soon-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 15% 10%, rgba(253,200,48,.10), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(243,115,53,.08), transparent 45%),
    var(--dark);
}

.cs-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 40px;
}

.cs-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .03em;
  color: var(--text);
}

.cs-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
}

.cs-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
  padding: 48px 0;
}

.cs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}

.cs-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(253,200,48,.6);
  animation: cs-pulse 2s infinite;
}

@keyframes cs-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(253,200,48,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(253,200,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(253,200,48,0); }
}

.cs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 8vw, 60px);
  line-height: 1.05;
  letter-spacing: .01em;
  color: var(--text);
  max-width: 560px;
}

.cs-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cs-subtitle {
  max-width: 460px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.cs-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.cs-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  outline: none;
  transition: border-color .15s ease;
}

.cs-input::placeholder { color: var(--muted); }
.cs-input:focus { border-color: var(--gold); }
.cs-input.is-invalid { border-color: #e2564f; }

/* Holds "Notify Me" + "Become A Creator" together -- both sized down from
   a single full-width CTA so the pair fits one row instead of stacking. */
.cs-actions {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  flex-wrap: wrap;
  justify-content: center;
}

.cs-submit,
.cs-become {
  flex: 1 1 0;
  min-width: 150px;
  padding: 13px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
  background: var(--grad);
  color: #14100a;
  border: 1px solid transparent;
  transition: filter .15s ease, transform .15s ease;
}

.cs-submit:hover,
.cs-become:hover { filter: brightness(1.06); }
.cs-submit:active,
.cs-become:active { transform: translateY(1px); }

/* Shown alone after a successful Notify Me signup, with no Notify Me
   button to share the row with -- natural width instead of stretching to
   fill it. */
.cs-actions--single .cs-become { flex: 0 0 auto; min-width: 0; }

.cs-error {
  font-size: 12.5px;
  color: #e2564f;
  margin-top: -10px;
}

.cs-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  background: rgba(253,200,48,.08);
  border: 1px solid rgba(253,200,48,.25);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  max-width: 420px;
}

.cs-success svg { width: 18px; height: 18px; flex-shrink: 0; }

.cs-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.cs-pill {
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}

.cs-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12.5px;
  color: var(--muted);
}

.cs-footer a { color: var(--muted); transition: color .15s ease; }
.cs-footer a:hover { color: var(--gold); }

@media (max-width: 480px) {
  .cs-actions { flex-direction: column; }
  .cs-submit,
  .cs-become { width: 100%; }
}
