/* WAITLIST FORM */
.waitlist-page {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--bg);
}
.waitlist-container {
  width: 100%;
  max-width: 560px;
}
.waitlist-header {
  margin-bottom: 40px;
}
.waitlist-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.waitlist-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.waitlist-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.form-error {
  background: #FFF3F0;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
}
.waitlist-form { }
.form-section {
  display: none;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.form-section.active { display: block; }
.form-field { margin-bottom: 24px; }
.form-field:last-child { margin-bottom: 0; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--fg);
}
.required { color: var(--accent); }
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.15s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
textarea { resize: vertical; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s;
  background: var(--bg);
}
.radio-option:hover { border-color: var(--accent); background: var(--hot-bg); }
.radio-option input[type="radio"] { accent-color: var(--accent); }
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}
.btn-next,
.btn-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-next:hover,
.btn-submit:hover { background: var(--accent-dark); }
.btn-back {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-back:hover { border-color: var(--fg); color: var(--fg); }
.progress-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s;
}
.dot.active { background: var(--accent); }

/* SUCCESS PAGE */
.success-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--hot-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin: 0 auto 24px;
}
.success-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.success-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.success-note {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
}
.btn-home {
  display: inline-block;
  padding: 12px 24px;
  background: var(--fg);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.15s;
}
.btn-home:hover { opacity: 0.85; }