/* Creator Source — Waitlist Page */

/* ===== TOKENS ===== */
:root {
  --bg:        #08080c;
  --bg-2:      #0e0e14;
  --bg-card:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);
  --fg:        #ffffff;
  --fg-muted:  rgba(255,255,255,0.45);
  --fg-dim:    rgba(255,255,255,0.25);

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  --grad-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --grad-surface:  linear-gradient(160deg, rgba(124,58,237,0.12) 0%, rgba(37,99,235,0.06) 100%);

  --radius:  14px;
  --radius-sm: 8px;
  --shadow-glow: 0 0 80px rgba(124,58,237,0.18);
  --transition: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== FLOATING ORBS ===== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
  top: -200px; right: -100px;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.3) 0%, transparent 70%);
  bottom: -100px; left: -150px;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, transparent 70%);
  top: 50%; left: 40%;
}

/* ===== NAVIGATION ===== */
.wl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 32px;
}

.wl-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wl-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.wl-nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  transition: background var(--transition), border-color var(--transition);
}

.wl-nav-cta:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.4);
}

/* ===== HERO ===== */
.wl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  text-align: center;
  z-index: 1;
}

.wl-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.wl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

.wl-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.wl-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--fg);
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wl-subheadline {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
}

/* ===== FORM ===== */
.wl-form-wrapper {
  width: 100%;
  max-width: 480px;
  margin-top: 8px;
}

.wl-form {
  display: flex;
  gap: 10px;
  width: 100%;
}

.wl-input {
  flex: 1;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.wl-input::placeholder { color: var(--fg-dim); }

.wl-input:focus {
  border-color: rgba(124,58,237,0.6);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.wl-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 28px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
  min-width: 160px;
}

.wl-btn-submit:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

.wl-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wl-btn-loading svg {
  width: 18px; height: 18px;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form success / error */
.wl-form-success,
.wl-form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

.wl-form-success {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  color: #34d399;
}

.wl-form-error {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.2);
  color: #f87171;
}

/* ===== SOCIAL PROOF ===== */
.wl-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--fg-muted);
}

.wl-social-proof strong { color: var(--fg); }

.wl-avatars { display: flex; }

.wl-avatar-stack {
  display: flex;
  flex-direction: row;
}

.wl-av-ring {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.wl-av-ring:first-child { margin-left: 0; }

/* ===== HERO GRID ===== */
.wl-hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
  z-index: 1;
}

.wl-grid-dot {
  width: 1px; height: 1px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  margin: auto;
}

/* ===== SECTION LABELS ===== */
.wl-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(139,92,246,0.8);
  margin-bottom: 20px;
}

/* ===== VALUE PROPS ===== */
.wl-values {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(139,92,246,0.04) 50%, transparent 100%);
}

.wl-values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wl-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wl-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}

.wl-value-card:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-4px);
}

.wl-value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wl-value-icon svg {
  width: 24px; height: 24px;
  color: #fff;
}

.wl-value-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.2px;
}

.wl-value-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ===== COMMUNITY ===== */
.wl-community {
  position: relative;
  z-index: 1;
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wl-community-inner {
  max-width: 760px;
  margin: 0 auto;
}

.wl-community-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.wl-community-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.wl-community-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
}

.wl-community-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}

.wl-pillar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}

.wl-pillar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FINAL CTA ===== */
.wl-cta {
  position: relative;
  z-index: 1;
  padding: 120px 32px;
  text-align: center;
}

.wl-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.wl-cta-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.wl-cta-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.wl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}

.wl-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.wl-cta-note {
  font-size: 12px;
  color: var(--fg-dim);
}

/* ===== FOOTER ===== */
.wl-footer {
  padding: 32px;
  border-top: 1px solid var(--border);
}

.wl-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wl-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wl-footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--fg);
}

.wl-footer-note {
  font-size: 13px;
  color: var(--fg-dim);
}

.wl-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wl-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.wl-social-link:hover {
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.4);
  color: var(--fg);
}

/* ===== PROBLEM STATEMENT ===== */
.wl-problem {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wl-problem-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.wl-problem-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.wl-problem-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
}

/* ===== FOUNDER STORY ===== */
.wl-founder {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
}

.wl-founder-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.wl-founder-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.wl-founder-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 580px;
}

/* ===== STEPS ===== */
.wl-steps {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(139,92,246,0.04) 50%, transparent 100%);
}

.wl-steps-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wl-steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
}

.wl-step {
  flex: 1;
  max-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition);
}

.wl-step:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-3px);
}

.wl-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(139,92,246,0.8);
  font-family: 'DM Sans', sans-serif;
}

.wl-step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

.wl-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.wl-step-arrow {
  font-size: 20px;
  color: var(--fg-dim);
  padding-top: 32px;
  flex-shrink: 0;
}

/* ===== WHO IS THIS FOR ===== */
.wl-who {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wl-who-inner {
  max-width: 900px;
  margin: 0 auto;
}

.wl-who-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 40px;
}

.wl-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.wl-who-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.wl-who-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.wl-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wl-who-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}

.wl-who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(139,92,246,0.6);
}

/* ===== STEPS HEADLINE ===== */
.wl-steps-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--fg);
  text-align: center;
  margin-bottom: 40px;
}

/* ===== INLINE CTA ===== */
.wl-inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  color: rgba(139,92,246,0.95);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.wl-inline-cta:hover {
  background: rgba(139,92,246,0.25);
  border-color: rgba(139,92,246,0.6);
  transform: translateY(-1px);
}

/* ===== WHY JOIN EARLY ===== */
.wl-why-early {
  position: relative;
  z-index: 1;
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wl-why-early-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.wl-why-early-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 16px;
}

.wl-why-early-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

.wl-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wl-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.wl-why-card:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-4px);
}

.wl-why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wl-why-icon svg { width: 24px; height: 24px; }

.wl-why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

.wl-why-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ===== CTA BADGE ===== */
.wl-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .wl-values-grid { grid-template-columns: 1fr; gap: 16px; }
  .wl-steps-grid { flex-direction: column; align-items: center; }
  .wl-step { max-width: 100%; width: 100%; }
  .wl-step-arrow { display: none; }
  .wl-why-grid { grid-template-columns: repeat(2, 1fr); }
  .wl-who-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wl-hero { padding: 100px 20px 60px; }
  .wl-values, .wl-community, .wl-cta, .wl-problem, .wl-faces, .wl-steps, .wl-why-early, .wl-who { padding: 60px 20px; }
  .wl-form { flex-direction: column; }
  .wl-btn-submit { width: 100%; }
  .wl-footer-inner { flex-direction: column; text-align: center; }
  .wl-headline { letter-spacing: -1px; }
  .wl-cta { padding: 80px 20px; }
  .wl-problem-headline { font-size: 26px; }
  .wl-why-grid { grid-template-columns: 1fr; }
  .wl-why-card { flex-direction: row; align-items: flex-start; text-align: left; padding: 20px; }
  .wl-why-icon { flex-shrink: 0; }
}