/* Page liste d’attente */
body.page-waitlist {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.form-container {
  max-width: 520px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.logo-box {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--v), var(--pk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.logo-name {
  font-size: 28px;
  font-weight: 200;
  letter-spacing: 10px;
  color: #fff;
}

.form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 6px;
}

.form-header h2 em {
  color: var(--v3);
  font-style: italic;
}

.form-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.explainer-box {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 24px;
}

.explainer-box .explainer-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.explainer-box .explainer-body {
  font-size: 14px;
  color: var(--v2);
  line-height: 1.8;
  margin: 0;
}

.form-card {
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 24px;
  padding: 32px 28px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--v3);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.field .hint {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.field label .optional {
  color: var(--muted2);
  font-weight: 300;
}

input[type='text'],
input[type='email'],
input[type='tel'] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(124, 58, 237, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 15px;
  font-family: 'Outfit', system-ui, sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

input:focus {
  border-color: var(--v);
}

input::placeholder {
  color: var(--muted2);
}

.check-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(124, 58, 237, 0.1);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.check-item:hover {
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.04);
}

.check-item.selected {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.08);
}

.check-item input {
  display: none;
}

.check-box {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  font-size: 12px;
  color: transparent;
}

.check-item.selected .check-box {
  background: var(--v);
  border-color: var(--v);
  color: #fff;
}

.check-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.check-label {
  flex: 1;
}

.check-label .name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.check-label .desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(124, 58, 237, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 15px;
  font-family: 'Outfit', system-ui, sans-serif;
  outline: none;
  appearance: none;
  cursor: pointer;
}

select option {
  background: #1a1028;
  color: #fff;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--v), var(--pk));
  color: #fff;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 6px 30px rgba(124, 58, 237, 0.35);
  transition: all 0.3s;
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(124, 58, 237, 0.45);
}

.trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-msg .big-check {
  font-size: 64px;
  margin-bottom: 14px;
}

.success-msg h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.success-msg p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.counter-wrap {
  margin-top: 16px;
}

.counter {
  text-align: center;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.counter .num {
  font-size: 20px;
  font-weight: 600;
  color: #fbbf24;
}

.counter .txt {
  font-size: 13px;
  color: var(--muted);
}

.success-footer-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted2);
}

.nav-top-waitlist {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 16px 20px;
}

.nav-top-waitlist a {
  font-size: 13px;
  color: var(--v2);
  text-decoration: none;
}

.nav-top-waitlist a:hover {
  text-decoration: underline;
}
