/* Waitlist Page Styles - Matching site aesthetic */

.waitlist-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 48px;
}

.waitlist-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

/* Content */
.waitlist-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* Badge */
.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--acc-light);
  border: 1px solid var(--acc);
  border-radius: 100px;
  color: var(--acc);
  font-size: 14px;
  font-weight: 500;
}

.waitlist-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Title */
.waitlist-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
}

.waitlist-greeting {
  display: block;
  font-size: 0.65em;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 4px;
}

.waitlist-name {
  display: block;
  color: var(--acc);
}

/* Message */
.waitlist-message {
  max-width: 480px;
}

.waitlist-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 12px 0;
}

.waitlist-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Info box */
.waitlist-info {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  background: var(--bg-elev);
  margin: 8px 0;
}

.waitlist-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.waitlist-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--acc);
  flex-shrink: 0;
}

.waitlist-info-icon svg {
  width: 18px;
  height: 18px;
}

.waitlist-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.waitlist-info-label {
  font-size: 13px;
  color: var(--muted);
}

.waitlist-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  word-break: break-all;
}

/* Actions */
.waitlist-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Social */
.waitlist-social {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 400px;
}

.waitlist-social p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px 0;
}

.waitlist-social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.waitlist-social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  transition: all 0.2s ease;
}

.waitlist-social-links a:hover {
  color: var(--acc);
  border-color: var(--acc);
}

/* Responsive */
@media (max-width: 640px) {
  .waitlist-page {
    padding: 100px 24px 32px;
  }
  
  .waitlist-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .waitlist-actions .cta-button {
    width: 100%;
  }
  
  .waitlist-info {
    padding: 16px 20px;
  }
}
