/* ========================================
   PUBEAR PROMISE — Core Value Proposition
   ======================================== */

.pubear-promise {
    padding: var(--space-3xl) 0;
    position: relative;
}

/* ── Container ───────────────────────────────────────────── */

.pp-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

/* ── Eyebrow ─────────────────────────────────────────────── */

.pp-eyebrow {
    font-size: var(--font-xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

/* ── Headline ────────────────────────────────────────────── */

.pp-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.pp-accent {
    color: var(--color-secondary);
}

/* ── Tagline ─────────────────────────────────────────────── */

.pp-tagline {
    font-size: var(--font-md);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto var(--space-2xl);
}

/* ── Stat Strip ──────────────────────────────────────────── */

.pp-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

/* Single stat block */
.pp-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-2xl) var(--space-lg);
    transition: background var(--transition-normal);
}

.pp-stat:hover {
    background: rgba(20, 241, 149, 0.04);
}

.pp-stat__value {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    text-shadow: 0 0 32px rgba(20, 241, 149, 0.3);
}

.pp-stat__label {
    font-size: var(--font-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Vertical divider between stats */
.pp-stat-divider {
    width: 1px;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 600px) {
    .pp-stats {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .pp-stat {
        width: 100%;
        padding: var(--space-lg);
    }

    .pp-stat-divider {
        width: 80%;
        height: 1px;
    }
}

/* ── Reduced motion ──────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .pp-stat {
        transition: none;
    }
}
