/*
 * Additional styles for the SinSync.ai sign‑up wizard and catchphrase
 *
 * This stylesheet is loaded only on the sign‑up page.  It extends the
 * base theme defined in style.css with custom rules for the multi‑step
 * form wizard, the catchphrase banner, and the enlarged "Grab Your
 * Spot" headline.  By separating these styles into their own file
 * we avoid cluttering the global stylesheet and ensure they can be
 * maintained independently.
 */

/* Hide all steps by default; the active step is displayed via JS */
.signup-step {
  display: none;
}
.signup-step.active {
  display: block;
}

/* Step indicator bar */
.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.step-indicator .step {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--colour-glass);
  color: var(--colour-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.step-indicator .step.active {
  color: var(--colour-accent);
  border-bottom-color: var(--colour-accent);
}

/* Payment method cards */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
@media (min-width: 600px) {
  .payment-options {
    flex-direction: row;
  }
}
.payment-option {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--colour-glass);
  border-radius: var(--border-radius);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.payment-option input {
  margin-right: 0.5rem;
}
.payment-option:hover {
  border-color: var(--colour-primary);
  box-shadow: 0 0 8px rgba(168,85,247,0.4);
}
.payment-option.selected {
  border-color: var(--colour-accent);
  box-shadow: 0 0 12px rgba(255,51,102,0.5);
}
.payment-option span {
  font-size: 0.95rem;
  color: var(--colour-text);
}

/* Adjust select option highlight for dark theme */
select option {
  background: var(--colour-surface);
  color: var(--colour-text);
}
select option:checked,
select option:hover {
  background: var(--colour-primary);
  color: var(--colour-background);
}

/* Catchphrase banner styling */
.catchphrase-banner {
  text-align: center;
  margin: 2rem auto 1rem auto;
  max-width: 900px;
  padding: 0 1rem;
  line-height: 1.3;
}
.catchphrase-banner .catchphrase {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--colour-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 4px var(--colour-accent), 0 0 10px var(--colour-accent);
}
.catchphrase-banner .catchphrase-sub {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  /* Slightly brighter subtext for readability on dark backgrounds */
  color: rgba(245,245,245,0.8);
}

/* Enlarge the sign‑up headline and apply futuristic styling */
.signup-card h2 {
  font-family: var(--font-logo);
  font-size: 3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--colour-accent);
  text-shadow:
    0 0 8px var(--colour-accent),
    0 0 16px var(--colour-accent),
    0 0 24px var(--colour-logo-glow);
  margin-bottom: 0.75rem;
}

/* Increase the max width of the sign‑up card on large screens to accommodate
 * the enlarged headline.  On mobile, it still fills the available width. */
.signup-card {
  max-width: 500px;
}

/* Adjust countdown timer styling */
.countdown {
  font-family: var(--font-digital);
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--colour-primary);
  text-align: center;
  margin: 1rem 0 1.5rem 0;
  text-shadow:
    0 0 6px var(--colour-primary),
    0 0 12px var(--colour-accent);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .signup-card h2 {
    font-size: 2.4rem;
  }
  .countdown {
    font-size: 1.5rem;
  }
  .catchphrase-banner .catchphrase {
    font-size: 1.5rem;
  }
}

/* Style for the sign‑up tagline under the "Grab Your Spot" headline */
.signup-tagline {
  font-size: 1rem;
  line-height: 1.4;
  /* Use a slightly brighter shade for readability against dark backgrounds */
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 1rem;
}