.coming-soon-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--brand-gradient);
  color: var(--bg-dark);
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

body .navbar {
  margin-top: 30px !important;
}

.nav-link.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.waitlist-form {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.waitlist-form .waitlist-input {
  flex: 3;
  min-width: 200px;
}

.waitlist-form .waitlist-btn {
  flex: 1;
  min-width: 120px;
}

.waitlist-input {
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  background: var(--bg-light);
  color: var(--text);
  transition: all 0.3s ease;
  height: auto;
}

.waitlist-input::placeholder {
  color: var(--text-muted);
}

.waitlist-input:focus {
  outline: none;
  border-color: var(--brand-c1);
  background: var(--bg-light);
}

.waitlist-btn {
  padding: 14px 28px;
  background: var(--brand-gradient);
  color: var(--bg-dark);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist-btn:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 12px oklch(60% 0.24 276 / 0.5));
}

.waitlist-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.waitlist-success {
  color: var(--success);
  margin-top: 16px;
  font-size: 14px;
}

.waitlist-error {
  color: var(--error);
  margin-top: 16px;
  font-size: 14px;
}

.form-footer-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

#website {
  position: absolute;
  left: -9999px;
}

.footer {
  padding: 20px 16px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer a {
  color: var(--brand-c1);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.disclaimer-link {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--text-muted);
  transition: color 0.2s ease;
}

.disclaimer-link:hover {
  color: var(--brand-c1);
  border-bottom-color: var(--brand-c1);
}

