/* join.css - v1.5 Join / signup section */

.join-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.join-glow-ember {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: var(--ember);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
  pointer-events: none;
}

.join-glow-violet {
  position: absolute;
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: var(--violet);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.04;
  pointer-events: none;
}

.join-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.join-h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.join-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  opacity: 0.75;
  line-height: 1.6;
}

/* Signup form (reuses existing form IDs) */
.signup-form {
  display: flex;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--white);
  flex: 1 1 200px;
  min-height: 44px;
  outline: none;
  transition: border-color 0.2s;
}
.signup-input:focus {
  border-color: var(--ember);
  outline: 2px solid rgba(224, 90, 43, 0.3);
  outline-offset: 2px;
}
.signup-input::placeholder { color: var(--muted); }

.signup-success {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ember);
  letter-spacing: 0.04em;
}

/* Schedule badge */
.join-schedule {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.join-schedule-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.join-schedule-val {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ember);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 480px) {
  .join-h2 { font-size: 26px; }
  .signup-form { flex-direction: column; align-items: center; }
  .signup-input { width: 100%; }
}
