/* Reuses the .wk-front design tokens established by the agent commission
   plugin (ink shell, amber = active/in-progress, teal = complete) so both
   systems read as one coherent platform rather than two bolted-together plugins. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

.wve-onboarding {
    --wk-ink: #12141A;
    --wk-surface: #1B1F2A;
    --wk-amber: #E8A33D;
    --wk-teal: #3FA796;
    --wk-line: rgba(232, 236, 239, 0.14);
    --wk-text: #EDEFF2;
    --wk-text-dim: #9AA3AF;

    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    color: var(--wk-text);
    background: var(--wk-ink);
    border-radius: 14px;
    padding: 40px clamp(20px, 5vw, 56px);
    max-width: 720px;
    margin: 0 auto;
}

.wve-onboarding .wk-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wk-amber);
    margin: 0 0 8px;
}

.wve-onboarding .wk-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(26px, 4vw, 34px);
    color: #fff;
    margin: 0 0 20px;
}

.wve-tier-row {
    margin-bottom: 20px;
}

.wve-badge {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 6px;
}
.wve-badge-new     { background: rgba(154, 163, 175, 0.18); color: #C7CDD4; }
.wve-badge-rising  { background: rgba(232, 163, 61, 0.18); color: var(--wk-amber); }
.wve-badge-top     { background: rgba(63, 167, 150, 0.18); color: var(--wk-teal); }
.wve-badge-verified{ background: rgba(255, 255, 255, 0.12); color: #fff; }

.wve-progress-track {
    background: var(--wk-surface);
    border: 1px solid var(--wk-line);
    border-radius: 20px;
    height: 14px;
    overflow: hidden;
    margin-bottom: 8px;
}
.wve-progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--wk-amber), var(--wk-teal));
    border-radius: 20px;
    transition: width 0.3s ease;
}
.wve-progress-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--wk-text-dim);
    margin: 0 0 24px;
}

.wve-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wve-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--wk-line);
    font-size: 15px;
    color: var(--wk-text-dim);
}
.wve-checklist-item:last-child { border-bottom: none; }
.wve-checklist-item.wve-done {
    color: var(--wk-text);
}
.wve-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--wk-line);
    font-size: 13px;
    flex-shrink: 0;
}
.wve-checklist-item.wve-done .wve-check-icon {
    background: var(--wk-teal);
    border-color: var(--wk-teal);
    color: var(--wk-ink);
}

.wve-complete-message {
    margin-top: 24px;
    padding: 14px 16px;
    background: rgba(63, 167, 150, 0.12);
    border: 1px solid rgba(63, 167, 150, 0.3);
    border-radius: 8px;
    color: var(--wk-teal);
    font-size: 14px;
}

/* Badge as it appears on the live WCFM store page (light background, not the dark dashboard shell) */
.wcfmmp_store_mobile_badges .wve-badge {
    font-family: 'IBM Plex Mono', monospace;
}
