/* /wishlist — TikTok-direct landing.
   v4: standalone funnel — explain on top, signup mid, founders, FAQ.

   Imported AFTER funnel.css; uses var(--fn-*) tokens already defined. */

:root {
  --wl-discord: #5865f2;
  --wl-discord-glow: rgba(88, 101, 242, 0.4);
  --wl-telegram: #2aabee;
  --wl-telegram-glow: rgba(42, 171, 238, 0.4);
}

.wl-body { background: var(--fn-bg); }

.nav-cta-back {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--fn-fg-mid);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--fn-border);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s var(--fn-ease), border-color 0.2s var(--fn-ease);
}
.nav-cta-back:hover {
  color: var(--fn-fg);
  border-color: var(--fn-border-hi);
}

.wl-main { position: relative; z-index: 2; }

/* ====================================================================
   STEP 0 — EXPLAIN
   First-impression block for ad traffic. Big headline, comparison
   stats, 4 feature pills.
==================================================================== */
.wl-explain {
  padding: 96px 24px 48px;
  position: relative;
  overflow: hidden;
}
.wl-explain::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 65%;
  height: 70%;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(255, 122, 20, 0.15) 0%,
    transparent 60%
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.wl-explain-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Founder banner — pinned above hero when ?tier=founder. */
.wl-founder-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto 28px;
  padding: 18px 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 20, 0.18),
    rgba(255, 122, 20, 0.04)
  );
  border: 1.5px solid rgba(255, 122, 20, 0.5);
  border-radius: var(--fn-radius-md);
  text-align: left;
  box-shadow: 0 12px 36px rgba(255, 122, 20, 0.18);
  animation: fn-fade-up 0.5s var(--fn-ease) both;
}
.wl-founder-banner[hidden] { display: none; }
.wl-founder-banner-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.wl-founder-banner-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--fn-fg);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.wl-founder-banner-sub {
  font-size: 13px;
  color: var(--fn-fg-mid);
  letter-spacing: 0.2px;
  line-height: 1.4;
}

/* Top tag pill. */
.wl-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--fn-accent);
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(255, 122, 20, 0.3);
  border-radius: 999px;
  background: rgba(255, 122, 20, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 28px;
}
.wl-tag-pulse {
  box-shadow: 0 0 0 0 rgba(255, 122, 20, 0.5);
  animation: wl-tag-pulse 2.5s ease-out infinite;
}
@keyframes wl-tag-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 20, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(255, 122, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 20, 0); }
}
.wl-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--fn-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--fn-accent);
  animation: fn-pulse 1.6s ease-in-out infinite;
}

/* Big explainer title. */
.wl-explain-title {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 22px;
  color: var(--fn-fg);
}
.wl-explain-title em {
  font-style: normal;
  background: linear-gradient(
    120deg,
    var(--fn-accent-hi) 0%,
    var(--fn-accent) 50%,
    var(--fn-accent-hi) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fn-gradient-shift 4s linear infinite;
}
.wl-explain-sub {
  font-size: clamp(16px, 1.9vw, 21px);
  color: var(--fn-fg-mid);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.wl-explain-sub strong { color: var(--fn-fg); font-weight: 600; }

/* "100% vs 30%" comparison stats. */
.wl-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.wl-stat {
  text-align: center;
  padding: 22px 32px;
  background: rgba(255, 122, 20, 0.07);
  border: 1.5px solid rgba(255, 122, 20, 0.4);
  border-radius: var(--fn-radius-lg);
  min-width: 180px;
  position: relative;
  overflow: hidden;
}
.wl-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 122, 20, 0.12), transparent 70%);
  pointer-events: none;
}
.wl-stat-bad {
  background: rgba(204, 77, 77, 0.06);
  border-color: rgba(204, 77, 77, 0.4);
}
.wl-stat-bad::before {
  background: radial-gradient(circle at center, rgba(204, 77, 77, 0.10), transparent 70%);
}
.wl-stat-num {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fn-accent);
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
}
.wl-stat-bad .wl-stat-num { color: var(--fn-rival); }
.wl-stat-sym {
  font-size: 0.6em;
  margin-left: 2px;
  opacity: 0.85;
}
.wl-stat-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fn-fg-dim);
  margin-top: 8px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.wl-stat-vs {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--fn-fg-dim);
  text-transform: uppercase;
  font-weight: 600;
}

/* Platform pills (Desktop / iOS / Android) — small mono chips
   below the feature strip. The Desktop one gets the orange accent;
   others stay neutral with a "soon" suffix. */
.wl-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.wl-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fn-border);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fn-fg-dim);
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.wl-platform-pill svg { opacity: 0.7; flex-shrink: 0; }
.wl-platform-ready {
  color: var(--fn-accent);
  background: rgba(255, 122, 20, 0.10);
  border-color: rgba(255, 122, 20, 0.4);
}
.wl-platform-ready svg { opacity: 1; }

/* Feature pills strip. */
.wl-feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.wl-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border-hi);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fn-fg);
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--fn-ease), border-color 0.2s var(--fn-ease);
}
.wl-feature-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 20, 0.4);
}
.wl-feature-icon { font-size: 16px; line-height: 1; }

/* ====================================================================
   STEP 1 — DELIVERY OPTIONS
==================================================================== */
.wl-hero {
  padding: 24px 24px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.wl-hero-inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}
.wl-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--fn-fg);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.wl-h2-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  border-radius: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
  font-weight: 700;
}
.wl-h2-sub {
  font-size: 16px;
  color: var(--fn-fg-mid);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* Live counter chip. */
.wl-counter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border-hi);
  border-radius: 999px;
  margin-bottom: 36px;
  position: relative;
  box-shadow: var(--fn-shadow-md);
}
.wl-counter-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--fn-fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 1.5em;
  text-align: right;
}
.wl-counter-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--fn-fg-mid);
  text-transform: uppercase;
}
.wl-counter-pulse {
  width: 8px;
  height: 8px;
  background: var(--fn-good);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(77, 210, 122, 0.5);
  animation: wl-pulse 2s ease-out infinite;
}
@keyframes wl-pulse {
  0% { box-shadow: 0 0 0 0 rgba(77, 210, 122, 0.6); }
  100% { box-shadow: 0 0 0 16px rgba(77, 210, 122, 0); }
}

/* Two-card option grid (Telegram + Email). */
.wl-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: left;
  max-width: 880px;
  margin: 0 auto 32px;
}
.wl-options-2col { grid-template-columns: repeat(2, 1fr); }
.wl-option {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--fn-ease), border-color 0.3s var(--fn-ease), box-shadow 0.3s var(--fn-ease);
  overflow: hidden;
  cursor: pointer;
  min-height: 260px;
}
.wl-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--wl-card-glow, rgba(255, 122, 20, 0.10)), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--fn-ease);
  pointer-events: none;
}
.wl-option:hover { transform: translateY(-6px); box-shadow: var(--fn-shadow-lg); }
.wl-option:hover::before { opacity: 1; }
.wl-option-telegram { --wl-card-glow: rgba(42, 171, 238, 0.18); }
.wl-option-telegram:hover {
  border-color: var(--wl-telegram);
  box-shadow: var(--fn-shadow-lg), 0 0 30px var(--wl-telegram-glow);
}
.wl-option-email { --wl-card-glow: rgba(255, 122, 20, 0.18); }
.wl-option-email:hover { border-color: var(--fn-accent); }

.wl-option-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  gap: 8px;
}
.wl-option-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--fn-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--fn-border);
  flex-shrink: 0;
}
.wl-option-telegram .wl-option-icon { color: var(--wl-telegram); }
.wl-option-email .wl-option-icon { color: var(--fn-accent); }

.wl-option-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--fn-border);
  color: var(--fn-fg-mid);
  font-weight: 600;
  align-self: flex-start;
  white-space: nowrap;
}
.wl-option-pill-fast {
  background: rgba(77, 210, 122, 0.12);
  border-color: rgba(77, 210, 122, 0.4);
  color: var(--fn-good);
}
.wl-option-pill-quiet {
  background: rgba(255, 122, 20, 0.08);
  border-color: rgba(255, 122, 20, 0.3);
  color: var(--fn-accent);
}

.wl-option-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--fn-fg);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.wl-option-desc {
  font-size: 14px;
  color: var(--fn-fg-mid);
  margin: 0 0 22px;
  line-height: 1.55;
  flex: 1;
}
.wl-option-desc strong { color: var(--fn-fg); font-weight: 600; }
.wl-option-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--fn-fg);
  letter-spacing: -0.01em;
}
.wl-option-telegram .wl-option-cta { color: var(--wl-telegram); }
.wl-option-arrow { transition: transform 0.25s var(--fn-ease); display: inline-block; }
.wl-option:hover .wl-option-arrow { transform: translateX(5px); }

/* Email card form. */
.wl-form {
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px;
  border: 1.5px solid var(--fn-border-hi);
  border-radius: var(--fn-radius-md);
  transition: border-color 0.25s var(--fn-ease), box-shadow 0.25s var(--fn-ease);
}
.wl-form:focus-within {
  border-color: var(--fn-accent);
  box-shadow: 0 0 0 4px rgba(255, 122, 20, 0.16);
}
.wl-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--fn-fg);
  font-family: "Inter", sans-serif;
  min-width: 0;
}
.wl-form input::placeholder { color: var(--fn-fg-dim); }
.wl-form button {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  border: 0;
  border-radius: var(--fn-radius-sm);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: filter 0.2s var(--fn-ease), transform 0.2s var(--fn-ease);
  white-space: nowrap;
}
.wl-form button:hover { filter: brightness(1.1); transform: scale(1.02); }
.wl-form button:active { transform: scale(0.98); }
.wl-form-status {
  margin-top: 12px;
  font-size: 13px;
  color: var(--fn-fg-mid);
  min-height: 18px;
  font-weight: 500;
}
.wl-form-status.ok { color: var(--fn-good); }
.wl-form-status.err { color: var(--fn-rival); }

/* Trust strip. */
.wl-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  font-size: 13px;
  color: var(--fn-fg-mid);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.wl-trust span::before {
  content: "✓";
  color: var(--fn-good);
  margin-right: 8px;
  font-weight: 700;
}
.wl-trust b { color: var(--fn-fg); font-weight: 600; }
.wl-privacy {
  font-size: 12.5px;
  color: var(--fn-fg-dim);
  letter-spacing: 0.3px;
  max-width: 480px;
  margin: 0 auto;
}
.wl-privacy a {
  color: var(--fn-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 122, 20, 0.3);
}
.wl-privacy a:hover { border-color: var(--fn-accent); }

/* ====================================================================
   FOUNDER CLAIM FORM (visible only when ?tier=founder)
   Single card with two labelled inputs + one big submit. Username
   field has a live-availability check icon (🟠 pending → ✓ ok → ✕ bad).
==================================================================== */
.wl-amber { color: var(--fn-accent); font-weight: 600; }
[data-mode-founder][hidden] { display: none !important; }
[data-mode-regular][hidden] { display: none !important; }

.wl-founder-claim {
  max-width: 560px;
  margin: 0 auto 32px;
  background: linear-gradient(160deg, rgba(255, 122, 20, 0.10), rgba(255, 122, 20, 0.02)),
              var(--fn-bg-card);
  border: 1.5px solid rgba(255, 122, 20, 0.45);
  border-radius: var(--fn-radius-xl);
  box-shadow: 0 28px 70px rgba(255, 122, 20, 0.18);
  padding: 36px 32px;
}
.wl-claim-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}
.wl-claim-row { display: flex; flex-direction: column; gap: 8px; }
.wl-claim-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fn-fg);
  letter-spacing: -0.01em;
}
.wl-claim-hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--fn-fg-dim);
  font-weight: 400;
  text-align: right;
}
.wl-claim-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1.5px solid var(--fn-border-hi);
  border-radius: var(--fn-radius-md);
  transition: border-color 0.2s var(--fn-ease), box-shadow 0.2s var(--fn-ease);
}
.wl-claim-input-wrap:focus-within {
  border-color: var(--fn-accent);
  box-shadow: 0 0 0 4px rgba(255, 122, 20, 0.16);
}
.wl-claim-prefix {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--fn-accent);
  padding-left: 16px;
}
.wl-claim-input-wrap input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--fn-fg);
  font-family: "Inter", sans-serif;
  min-width: 0;
}
.wl-claim-input-wrap input::placeholder { color: var(--fn-fg-dim); }
.wl-claim-status-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 14px;
  border-radius: 50%;
  position: relative;
  transition: background 0.2s var(--fn-ease);
}
.wl-claim-status-empty { background: transparent; }
.wl-claim-status-pending {
  background: rgba(255, 122, 20, 0.2);
  border: 2px solid var(--fn-accent);
  border-top-color: transparent;
  animation: wl-spin 0.8s linear infinite;
  border-radius: 50%;
  box-sizing: border-box;
}
@keyframes wl-spin { to { transform: rotate(360deg); } }
.wl-claim-status-ok {
  background: var(--fn-good);
}
.wl-claim-status-ok::after {
  content: "✓";
  color: #08291d;
  font-weight: 800;
  font-size: 14px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wl-claim-status-bad {
  background: var(--fn-rival);
}
.wl-claim-status-bad::after {
  content: "✕";
  color: #2a0808;
  font-weight: 800;
  font-size: 14px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wl-claim-feedback {
  font-size: 13px;
  font-weight: 500;
  min-height: 18px;
  color: var(--fn-fg-dim);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.3px;
}
.wl-claim-feedback-ok { color: var(--fn-good); }
.wl-claim-feedback-bad { color: var(--fn-rival); }
.wl-claim-feedback-pending { color: var(--fn-accent); }

.wl-claim-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  border: 0;
  border-radius: var(--fn-radius-md);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--fn-ease), filter 0.25s var(--fn-ease), box-shadow 0.25s var(--fn-ease);
  box-shadow: var(--fn-shadow-accent);
  position: relative;
  overflow: hidden;
}
.wl-claim-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 52px var(--fn-accent-glow);
}
.wl-claim-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  filter: grayscale(0.4);
}
.wl-claim-submit-arrow { transition: transform 0.25s var(--fn-ease); }
.wl-claim-submit:hover:not(:disabled) .wl-claim-submit-arrow {
  transform: translateX(4px);
}

.wl-claim-overall-status {
  font-size: 14px;
  text-align: center;
  min-height: 18px;
  color: var(--fn-fg-mid);
  font-weight: 500;
  margin-top: -4px;
}
.wl-claim-overall-status.ok { color: var(--fn-good); }
.wl-claim-overall-status.err { color: var(--fn-rival); }
.wl-claim-overall-status.pending { color: var(--fn-accent); }

/* Success card replaces the form on submit. */
.wl-claim-success {
  text-align: center;
  padding: 12px 0;
}
.wl-claim-success-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 18px rgba(255, 122, 20, 0.5));
}
.wl-claim-success h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--fn-fg);
}
.wl-claim-success p {
  font-size: 14.5px;
  color: var(--fn-fg-mid);
  line-height: 1.55;
  margin: 0 0 10px;
}
.wl-claim-success p strong { color: var(--fn-fg); font-weight: 600; }
.wl-claim-success-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--fn-accent) !important;
  margin-top: 16px !important;
}

@media (max-width: 640px) {
  .wl-founder-claim { padding: 28px 22px; }
  .wl-claim-label { font-size: 13px; }
  .wl-claim-hint { font-size: 10px; }
  .wl-claim-input-wrap input { font-size: 15px; padding: 12px 14px; }
  .wl-claim-prefix { font-size: 16px; padding-left: 14px; }
  .wl-claim-submit { font-size: 15px; padding: 18px 24px; }
  .wl-claim-success-icon { font-size: 44px; }
  .wl-claim-success h3 { font-size: 22px; }
}

/* ====================================================================
   STEP 2 — FOUNDERS
==================================================================== */
.wl-founders {
  padding: 80px 24px;
  position: relative;
}
.wl-founders::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 122, 20, 0.10), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(50px);
  pointer-events: none;
}
.wl-founders-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wl-founder-card {
  position: relative;
  padding: 48px 40px 40px;
  background: linear-gradient(160deg, rgba(255, 122, 20, 0.10), rgba(255, 122, 20, 0.02)), var(--fn-bg-card);
  border: 1.5px solid rgba(255, 122, 20, 0.45);
  border-radius: var(--fn-radius-xl);
  text-align: left;
  box-shadow: 0 28px 70px rgba(255, 122, 20, 0.22);
  margin-top: 32px;
  overflow: hidden;
}
.wl-founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 122, 20, 0.18), transparent 60%);
  pointer-events: none;
}
.wl-founder-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--fn-shadow-accent);
  white-space: nowrap;
}
.wl-founder-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fn-fg);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.wl-founder-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--fn-accent-hi), var(--fn-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wl-founder-desc {
  font-size: 15.5px;
  color: var(--fn-fg-mid);
  line-height: 1.55;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.wl-founder-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.wl-founder-perks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wl-perk-star {
  font-size: 22px;
  color: var(--fn-accent);
  line-height: 1;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px rgba(255, 122, 20, 0.5));
}
.wl-founder-perks b {
  color: var(--fn-fg);
  font-weight: 700;
  font-size: 17px;
  display: block;
  letter-spacing: -0.01em;
}
.wl-perk-note {
  display: block;
  font-size: 13px;
  color: var(--fn-fg-dim);
  margin-top: 2px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.5px;
}

/* Progress bar showing founders signups. */
.wl-founder-progress {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.wl-founder-progress-track {
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--fn-border);
}
.wl-founder-progress-fill {
  display: block;
  height: 100%;
  width: 2%;
  background: linear-gradient(90deg, var(--fn-accent-hi), var(--fn-accent));
  box-shadow: 0 0 14px var(--fn-accent-glow);
  border-radius: 6px;
  transition: width 0.6s var(--fn-ease);
  position: relative;
  overflow: hidden;
}
.wl-founder-progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: wl-shimmer 2s linear infinite;
}
@keyframes wl-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.wl-founder-progress-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--fn-fg-mid);
  letter-spacing: 1.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.wl-founder-progress-text b {
  color: var(--fn-accent);
  font-weight: 800;
  font-size: 15px;
}
.wl-founder-progress-left {
  color: var(--fn-good);
  font-weight: 700;
}

/* Big Founder CTA button. */
.wl-founder-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 22px 32px;
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  border-radius: var(--fn-radius-md);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.25s var(--fn-ease), filter 0.25s var(--fn-ease), box-shadow 0.25s var(--fn-ease);
  box-shadow: var(--fn-shadow-accent);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.wl-founder-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s var(--fn-ease);
}
.wl-founder-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 24px 56px var(--fn-accent-glow);
}
.wl-founder-cta:hover::before { left: 130%; }
.wl-founder-cta-arrow {
  transition: transform 0.25s var(--fn-ease);
  display: inline-block;
}
.wl-founder-cta:hover .wl-founder-cta-arrow { transform: translateX(5px); }

/* ====================================================================
   STEP 3 — MINI FAQ
==================================================================== */
.wl-mini-faq {
  padding: 60px 24px 40px;
}
.wl-mini-faq-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.wl-mini-faq .fn-faq-list { margin-top: 28px; text-align: left; }

/* ====================================================================
   STEP 4 — Final wrap (just text, sticky CTA bar takes over).
==================================================================== */
.wl-final {
  padding: 40px 24px 120px;
  text-align: center;
}
.wl-final-inner {
  max-width: 580px;
  margin: 0 auto;
}
.wl-final-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--fn-fg);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.wl-final-sub {
  font-size: 16px;
  color: var(--fn-fg-mid);
  margin: 0;
  line-height: 1.5;
}

/* ====================================================================
   STICKY MOBILE CTA BAR
   Pinned to the bottom of the viewport once the user scrolls past
   the explainer. Always-visible reminder of the primary CTA.
==================================================================== */
.wl-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(15, 18, 25, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--fn-border-hi);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s var(--fn-ease);
}
.wl-cta-bar.wl-cta-bar-on { transform: translateY(0); }
.wl-cta-bar-text {
  display: flex;
  flex-direction: column;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 1px;
}
.wl-cta-bar-text strong {
  color: var(--fn-fg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.wl-cta-bar-text span {
  font-size: 11px;
  color: var(--fn-fg-dim);
  margin-top: 2px;
}
.wl-cta-bar-btn {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  border-radius: var(--fn-radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--fn-shadow-accent);
  transition: transform 0.2s var(--fn-ease), filter 0.2s var(--fn-ease);
}
.wl-cta-bar-btn:hover { filter: brightness(1.1); transform: scale(1.03); }
.wl-cta-bar-btn:active { transform: scale(0.97); }
/* Desktop: hide the sticky bar entirely — there's enough screen
   real estate that the inline CTA is always reachable. */
@media (min-width: 880px) { .wl-cta-bar { display: none; } }

/* ====================================================================
   MOBILE / responsive tightening
==================================================================== */
@media (max-width: 880px) {
  .wl-explain { padding: 80px 18px 36px; }
  .wl-explain-title { letter-spacing: -0.03em; }
  .wl-stats { gap: 16px; }
  .wl-stat { padding: 18px 22px; min-width: 0; flex: 1; }
  .wl-stat-vs { display: block; flex-basis: 100%; text-align: center; order: 0; font-size: 14px; }
  .wl-options, .wl-options-2col { grid-template-columns: 1fr; gap: 14px; }
  .wl-option { min-height: 0; padding: 24px 22px; }
  .wl-option-title { font-size: 22px; }

  .wl-h2 { font-size: 26px; gap: 10px; }
  .wl-h2-num { width: 34px; height: 34px; font-size: 18px; }
  .wl-h2-sub { font-size: 14.5px; margin-bottom: 28px; }
  .wl-counter { padding: 10px 16px; gap: 10px; margin-bottom: 28px; }
  .wl-counter-num { font-size: 20px; }
  .wl-counter-lbl { font-size: 10px; letter-spacing: 3px; }

  .wl-founders { padding: 56px 18px; }
  .wl-founder-card { padding: 36px 24px 28px; }
  .wl-founder-cta { padding: 18px 24px; font-size: 16px; }

  .wl-final { padding: 28px 18px 120px; }

  /* Platform pills — wrap nicely on phone-sized screens. */
  .wl-platforms { gap: 6px; }
  .wl-platform-pill { font-size: 10px; padding: 6px 12px; gap: 6px; letter-spacing: 1px; }
  .wl-platform-pill svg { width: 12px; height: 12px; }

  /* Add bottom padding to prevent content being hidden behind the
     sticky CTA bar (~70px tall). */
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .wl-stat { padding: 14px 16px; }
  .wl-stat-num { font-size: 36px; }
  .wl-feature-pill { font-size: 12.5px; padding: 8px 14px; }
  .wl-form { flex-direction: column; padding: 6px; }
  .wl-form input { text-align: center; padding: 14px; }
  .wl-form button { width: 100%; padding: 14px; justify-content: center; }
  .wl-trust { gap: 8px 16px; font-size: 11.5px; }
  .wl-perk-note { font-size: 12px; }
  .wl-cta-bar { padding: 10px 14px; }
  .wl-cta-bar-btn { padding: 12px 16px; font-size: 13px; }

  /* Founder claim form — bigger tap targets on small phones. */
  .wl-claim-input-wrap input { padding: 16px 14px; font-size: 16px; }
  .wl-claim-submit { padding: 18px 24px; font-size: 16px; min-height: 56px; }
  .wl-option { min-height: 0; padding: 22px 18px; }
  .wl-option-title { font-size: 21px; }
  .wl-option-cta { font-size: 15px; }

  /* Stats row — clamp the giant numbers so they don't overflow. */
  .wl-stat-num { font-size: clamp(36px, 12vw, 56px); }
  .wl-explain-title { font-size: clamp(34px, 9vw, 52px); }
}
