/* ===== WAITLIST PAGE — high-converting interest capture ===== */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --fg: #e8e8e8;
  --fg-muted: #888888;
  --accent: #00e676;
  --accent-dim: rgba(0, 230, 118, 0.10);
  --accent-glow: rgba(0, 230, 118, 0.25);
  --border: #1e1e1e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.wl-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,230,118,0.07) 0%, transparent 70%),
    var(--bg);
}

.wl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  background: var(--accent-dim);
}

.wl-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

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

.wl-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  max-width: 700px;
}

.wl-hero h1 .accent {
  color: var(--accent);
  position: relative;
}

.wl-hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ===== EMAIL CAPTURE ===== */
.wl-capture {
  width: 100%;
  max-width: 480px;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wl-input-row {
  display: flex;
  gap: 10px;
}

.wl-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wl-input::placeholder { color: #555; }

.wl-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.wl-submit {
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.1s;
  white-space: nowrap;
}

.wl-submit:hover {
  opacity: 0.92;
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}

.wl-submit:active { transform: translateY(0); }

.wl-form-note {
  font-size: 12px;
  color: #555;
  text-align: center;
  line-height: 1.5;
}

.wl-form-note strong { color: var(--fg-muted); }

.wl-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wl-success.show { display: flex; }
.wl-form.hidden { display: none; }

.wl-check-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
}

.wl-success-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.wl-success-sub {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ===== VALUE PROPS ===== */
.wl-values {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.wl-values-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 40px;
  text-align: center;
}

.wl-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.wl-value {
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}

.wl-value:hover {
  border-color: rgba(0,230,118,0.3);
  transform: translateY(-3px);
}

.wl-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.wl-value h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

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

/* ===== SOCIAL PROOF ===== */
.wl-proof {
  padding: 80px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.wl-proof-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 40px;
  text-align: center;
}

.wl-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.wl-testimonial {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wl-quote-icon {
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.6;
  font-family: serif;
}

.wl-testimonial p {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.65;
}

.wl-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.wl-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.wl-author-info { display: flex; flex-direction: column; }

.wl-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.wl-author-title {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Stats row */
.wl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.wl-stat {
  background: var(--bg-card);
  padding: 28px 20px;
  text-align: center;
}

.wl-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.wl-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== BOTTOM CTA ===== */
.wl-bottom-cta {
  padding: 100px 24px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0,230,118,0.06) 0%, transparent 70%);
}

.wl-bottom-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.wl-bottom-cta p {
  color: var(--fg-muted);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.wl-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 100px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.wl-count-badge strong { color: var(--accent); }

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

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

.wl-footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .wl-input-row { flex-direction: column; }
  .wl-submit { width: 100%; padding: 16px; font-size: 16px; }
  .wl-stats { grid-template-columns: 1fr; }
  .wl-footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}