/* ==========================================================================
   Waitlist Page Styles
   ========================================================================== */

/* ── Position Hero ── */
.hh-waitlist-position-hero {
    text-align: center;
    padding: 1.5rem 0 2rem;
}

.hh-waitlist-position-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hh-text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.hh-waitlist-position-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--hh-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* ── Progress Bar ── */
.hh-waitlist-progress-section {
    margin: 1.25rem 0;
}

.hh-waitlist-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    color: var(--hh-text-secondary);
}

.hh-waitlist-progress-count {
    font-weight: 600;
    color: var(--hh-text-primary);
    font-size: 0.82rem;
}

.hh-waitlist-progress-bar {
    height: 8px;
    background: var(--hh-surface-soft);
    border-radius: 4px;
    overflow: hidden;
}

.hh-waitlist-progress-bar.small {
    height: 5px;
}

.hh-waitlist-progress-fill {
    height: 100%;
    background: var(--hh-primary);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-width: 2%;
}

/* ── Referral Box ── */
.hh-waitlist-referral-box {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(var(--hh-primary-rgb), 0.2);
    background: rgba(var(--hh-primary-rgb), 0.05);
    text-align: center;
}

.hh-waitlist-referral-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--hh-text-primary);
    margin: 0 0 0.25rem;
}

.hh-waitlist-referral-desc {
    font-size: 0.82rem;
    color: var(--hh-text-secondary);
    margin: 0 0 1rem;
}

.hh-waitlist-referral-code {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--hh-primary);
    font-family: var(--hh-font-mono, monospace);
}

/* ── Success Icon ── */
.hh-waitlist-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(var(--hh-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--hh-success-rgb), 0.2);
}

/* ── Position Check Result ── */
.hh-waitlist-position-result {
    text-align: center;
    padding: 1.25rem;
    margin-top: 1rem;
    border-radius: 12px;
}

/* ── City List ── */
.hh-waitlist-cities {
    margin-top: 2rem;
    animation: slideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}

.hh-waitlist-cities-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hh-text-muted);
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.hh-waitlist-city-row {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--hh-glass-border);
}

.hh-waitlist-city-row:last-child {
    border-bottom: none;
}

.hh-waitlist-city-row.launched {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hh-waitlist-city-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.hh-waitlist-city-row.launched .hh-waitlist-city-info {
    margin-bottom: 0;
}

.hh-waitlist-city-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--hh-text-primary);
}

.hh-waitlist-city-count {
    font-size: 0.78rem;
    color: var(--hh-text-muted);
    font-weight: 500;
}

/* ── Desktop ── */
@media (min-width: 641px) {
    .hh-waitlist-position-number {
        font-size: 4.5rem;
    }

    .hh-waitlist-referral-code {
        font-size: 2.25rem;
    }
}
