/* ================================================================
   VENDORS PAGE STYLES — 51 Partner Program
   Supplements styles.css, pricing.css, modal-shared.css
   ================================================================ */

/* ================================================================
   LIGHT MODE OVERRIDES
   ================================================================ */
[data-theme="light"] .vendors-hero-glow {
    background: radial-gradient(ellipse, rgba(10,6,229,0.06) 0%, transparent 70%);
}
[data-theme="light"] .vendors-problem-card {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
[data-theme="light"] .vendors-problem-card:hover {
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
}
[data-theme="light"] .vendors-score-card {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.06);
}
[data-theme="light"] .vendors-score-blur {
    background: rgba(0,0,0,0.04);
}
[data-theme="light"] .vendors-timeline-line {
    background: rgba(0,0,0,0.08);
}
[data-theme="light"] .vendors-timeline-dot {
    background: #fff;
    box-shadow: 0 0 0 3px var(--brand), 0 0 0 1px rgba(0,0,0,0.06);
}
[data-theme="light"] .vendors-stat-card {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
[data-theme="light"] .vendors-buyers-bar {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
[data-theme="light"] .vendors-problem-icon {
    background: rgba(10,6,229,0.06);
}
[data-theme="light"] .vendors-free-item {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
[data-theme="light"] .vendors-free-item:hover {
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}
[data-theme="light"] .vendors-hero-screenshot img {
    box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.08);
}

/* ================================================================
   HERO
   ================================================================ */
.vendors-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vendors-hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 900px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(10,6,229,0.18) 0%, rgba(88,199,247,0.04) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: top 0.3s ease-out, left 0.3s ease-out;
}
.vendors-hero-content {
    position: relative;
    z-index: 1;
}
.vendors-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(10,6,229,0.12);
    color: var(--brand-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}
[data-theme="light"] .vendors-hero-badge {
    background: rgba(10,6,229,0.08);
    color: #0A06E5;
}
.vendors-hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.vendors-hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.vendors-hero-actions {
    margin-bottom: 48px;
}
.vendors-hero-sub-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ----------------------------------------------------------------
   HERO SCREENSHOT TEASER
   ---------------------------------------------------------------- */
.vendors-hero-screenshot {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.vendors-hero-screenshot img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(10,6,229,0.15), 0 0 0 1px var(--border-subtle), 0 0 80px rgba(10,6,229,0.08);
    display: block;
}

/* ================================================================
   SOCIAL PROOF / BUYERS BAR
   ================================================================ */
.vendors-buyers {
    padding: 48px 0;
    position: relative;
    z-index: 2;
}
.vendors-buyers-bar {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
    text-align: center;
}
.vendors-buyers-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.vendors-buyers-list {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}
.vendors-buyers-separator {
    color: var(--text-faint);
    margin: 0 4px;
}

/* ================================================================
   PROBLEM SECTION
   ================================================================ */
.vendors-problem {
    padding: 80px 0;
}
.vendors-problem-header {
    text-align: center;
    margin-bottom: 48px;
}
.vendors-problem-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 8px;
}
.vendors-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.vendors-problem-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
    transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.vendors-problem-card:hover {
    transform: translateY(-2px);
}
.vendors-problem-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(10,6,229,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-light);
}
.vendors-problem-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.vendors-problem-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================================
   WHAT YOU GET (FREE) SECTION
   ================================================================ */
.vendors-free {
    padding: 80px 0;
}
.vendors-free-header {
    text-align: center;
    margin-bottom: 48px;
}
.vendors-free-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 12px;
}
.vendors-free-desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}
.vendors-free-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.vendors-free-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
    transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.vendors-free-item:hover {
    transform: translateY(-2px);
}
.vendors-free-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--brand-light);
    margin-top: 1px;
}
.vendors-free-item-title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.vendors-free-item-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.vendors-free-cta {
    text-align: center;
    margin-top: 40px;
}

/* ================================================================
   REALNESS SCORE SHOWCASE
   ================================================================ */
.vendors-score {
    padding: 80px 0;
}
.vendors-score-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}
.vendors-score-visual {
    position: relative;
}
.vendors-score-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: inset 0 0 0 1px var(--border-subtle), 0 8px 32px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}
.vendors-score-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #58C7F7, #0A06E5);
}
.vendors-score-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.vendors-score-company {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}
.vendors-score-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(245,158,11,0.12);
    color: #f59e0b;
}
.vendors-score-value {
    text-align: center;
    margin-bottom: 28px;
}
.vendors-score-number {
    font-family: 'Sora', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
}
.vendors-score-max {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 400;
}
.vendors-score-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}
.vendors-score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.vendors-score-blur {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.vendors-score-blur-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--elevated);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    box-shadow: inset 0 0 0 1px var(--border-default);
}
.vendors-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    padding: 8px 0;
}
.vendors-score-row-bar {
    width: 80px;
    height: 4px;
    border-radius: var(--radius-pill);
    background: var(--border-subtle);
}
.vendors-score-row-fill {
    height: 100%;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #0A06E5, #58C7F7);
}
.vendors-score-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
}
.vendors-score-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* ================================================================
   TIER COMPARISON — Reuses pricing.css classes
   Only additions specific to the vendors context
   ================================================================ */
.vendors-tiers {
    padding: 80px 0;
}
.vendors-tiers-header {
    text-align: center;
    margin-bottom: 48px;
}
.vendors-tiers-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 8px;
}
.vendors-tiers-header p:not(.section-label) {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

/* ================================================================
   HOW IT WORKS — TIMELINE
   ================================================================ */
.vendors-how {
    padding: 80px 0;
}
.vendors-how-header {
    text-align: center;
    margin-bottom: 56px;
}
.vendors-how-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 8px;
}
.vendors-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}
.vendors-timeline--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
}
.vendors-timeline-line {
    position: absolute;
    top: 20px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 2px;
    background: var(--border-default);
    z-index: 0;
}
.vendors-timeline--three .vendors-timeline-line {
    left: calc(16.67% + 10px);
    right: calc(16.67% + 10px);
}
.vendors-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.vendors-timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: 0 0 0 3px var(--brand), inset 0 0 0 1px var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-light);
}
.vendors-timeline-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.vendors-timeline-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 180px;
}

/* ================================================================
   STATS / WHO'S WATCHING
   ================================================================ */
.vendors-stats {
    padding: 80px 0;
}
.vendors-stats-header {
    text-align: center;
    margin-bottom: 48px;
}
.vendors-stats-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 8px;
}
.vendors-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}
.vendors-stat-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
    text-align: center;
}
.vendors-stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.vendors-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ================================================================
   FAQ — Reuses pricing-faq classes from pricing.css
   ================================================================ */
.vendors-faq {
    padding: 80px 0;
}

/* ================================================================
   FINAL CTA — Reuses final-cta from pricing.css
   ================================================================ */

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ---- Tablet / small laptop ---- */
@media (max-width: 900px) {
    .vendors-hero {
        padding: 120px 0 60px;
    }
    .vendors-hero-glow {
        width: 600px;
        height: 400px;
    }
    .vendors-problem-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .vendors-free-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .vendors-score-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vendors-score-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    .vendors-score-content {
        text-align: center;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        gap: 14px;
    }
    .vendors-tiers .pricing-card--featured {
        order: -1;
    }
    .vendors-tiers .pricing-card-badge-row {
        height: auto;
        margin-bottom: 4px;
    }
    .vendors-tiers .pricing-card-badge-row:empty {
        display: none;
    }
    .vendors-tiers .pricing-price-row {
        height: auto;
    }
    .vendors-tiers .pricing-price-sub {
        height: auto;
    }
    .vendors-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .vendors-timeline--three {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    .vendors-timeline-line {
        display: none;
    }
    .vendors-timeline-step {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 16px;
    }
    .vendors-timeline-dot {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .vendors-timeline-desc {
        max-width: none;
    }
    .vendors-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vendors-buyers-bar {
        padding: 24px 20px;
    }
    .vendors-buyers-list {
        font-size: 14px;
        line-height: 1.8;
    }
    .vendors-problem,
    .vendors-free,
    .vendors-score,
    .vendors-tiers,
    .vendors-how,
    .vendors-stats,
    .vendors-faq {
        padding: 64px 0;
    }
}

/* ---- Large phones / phablets ---- */
@media (max-width: 640px) {
    .vendors-hero {
        padding: 110px 0 52px;
    }
    .vendors-hero-actions .btn {
        width: 100%;
    }
    .vendors-hero-sub-text {
        font-size: 12px;
    }
    .vendors-hero-screenshot {
        margin-left: -8px;
        margin-right: -8px;
    }
    .vendors-hero-screenshot img {
        border-radius: var(--radius-md);
    }
    .vendors-buyers-bar {
        padding: 20px 16px;
    }
    .vendors-buyers-list {
        font-size: 13px;
        line-height: 2;
    }
    .vendors-buyers-separator {
        margin: 0 2px;
    }
    /* Founding meta: stack on small screens to prevent overflow */
    .vendors-founding-meta {
        flex-wrap: wrap;
        gap: 4px;
    }
    .vendors-founding-remaining {
        width: 100%;
        text-align: left;
    }
    /* Score showcase */
    .vendors-score-visual {
        max-width: 100%;
    }
    .vendors-score-row {
        font-size: 12px;
    }
    .vendors-score-row-bar {
        width: 60px;
    }
    /* Stats */
    .vendors-stats-grid {
        gap: 12px;
    }
    .vendors-stat-card {
        padding: 22px 14px;
    }
    /* Timeline */
    .vendors-timeline {
        max-width: none;
    }
    /* Final CTA full-width button */
    .final-cta .btn {
        width: 100%;
    }
    /* Free section CTA full-width */
    .vendors-free-cta .btn {
        width: 100%;
    }
}

/* ---- Small phones (iPhone SE, Galaxy S range) ---- */
@media (max-width: 480px) {
    .vendors-hero {
        padding: 100px 0 44px;
    }
    .vendors-hero h1 {
        font-size: clamp(24px, 6vw, 40px);
        letter-spacing: -0.03em;
    }
    .vendors-hero-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
    }
    .vendors-hero-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 20px;
    }
    .vendors-hero-actions {
        margin-bottom: 28px;
    }
    .vendors-hero-glow {
        width: 400px;
        height: 300px;
    }
    /* Problem cards */
    .vendors-problem-card {
        padding: 24px 20px;
    }
    .vendors-problem-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    .vendors-problem-card h3 {
        font-size: 16px;
    }
    .vendors-problem-card p {
        font-size: 13px;
    }
    .vendors-problem-grid {
        gap: 14px;
    }
    /* Free items */
    .vendors-free-item {
        padding: 20px 18px;
        gap: 12px;
    }
    .vendors-free-icon {
        width: 20px;
        height: 20px;
    }
    .vendors-free-item-title {
        font-size: 13px;
    }
    .vendors-free-item-desc {
        font-size: 12px;
    }
    .vendors-free-grid {
        gap: 10px;
    }
    .vendors-free-desc {
        font-size: 14px;
    }
    /* Score showcase */
    .vendors-score-card {
        padding: 24px 20px;
    }
    .vendors-score-number {
        font-size: 44px;
    }
    .vendors-score-max {
        font-size: 17px;
    }
    .vendors-score-label {
        font-size: 10px;
    }
    .vendors-score-company {
        font-size: 14px;
    }
    .vendors-score-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    .vendors-score-blur-text {
        font-size: 11px;
        padding: 6px 12px;
    }
    .vendors-score-card-header {
        margin-bottom: 20px;
    }
    .vendors-score-value {
        margin-bottom: 24px;
    }
    .vendors-score-content h2 {
        font-size: clamp(22px, 5vw, 32px);
    }
    .vendors-score-content p {
        font-size: 14px;
    }
    /* Pricing / Tiers */
    .vendors-price-free {
        font-size: 30px;
    }
    .vendors-founding-subtitle {
        font-size: 13px;
    }
    .vendors-founding-text {
        font-size: 10px;
    }
    .vendors-founding-remaining {
        font-size: 9px;
    }
    .vendors-founding-bar-pulse {
        width: 10px;
        height: 10px;
    }
    /* Stats */
    .vendors-stat-number {
        font-size: 28px;
    }
    .vendors-stat-label {
        font-size: 12px;
    }
    .vendors-stat-card {
        padding: 20px 14px;
    }
    /* Timeline */
    .vendors-timeline {
        gap: 24px;
    }
    .vendors-timeline-dot {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .vendors-timeline-title {
        font-size: 14px;
    }
    .vendors-timeline-desc {
        font-size: 12px;
        max-width: none;
    }
    /* Section padding */
    .vendors-problem,
    .vendors-free,
    .vendors-score,
    .vendors-tiers,
    .vendors-how,
    .vendors-stats,
    .vendors-faq {
        padding: 48px 0;
    }
    /* Section headers */
    .vendors-problem-header h2,
    .vendors-free-header h2,
    .vendors-tiers-header h2,
    .vendors-how-header h2,
    .vendors-stats-header h2 {
        font-size: clamp(22px, 5vw, 32px);
    }
    .vendors-problem-header,
    .vendors-free-header,
    .vendors-tiers-header,
    .vendors-how-header,
    .vendors-stats-header {
        margin-bottom: 36px;
    }
    /* Buyers */
    .vendors-buyers {
        padding: 32px 0;
    }
    .vendors-buyers-label {
        font-size: 10px;
        margin-bottom: 10px;
    }
}

/* ---- iPhone SE / very small phones ---- */
@media (max-width: 375px) {
    .vendors-hero {
        padding: 96px 0 40px;
    }
    .vendors-hero h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    .vendors-hero-desc {
        font-size: 14px;
        line-height: 1.55;
    }
    .vendors-hero-sub-text {
        font-size: 11px;
    }
    .vendors-hero-actions {
        margin-bottom: 24px;
    }
    /* Score */
    .vendors-score-number {
        font-size: 40px;
    }
    .vendors-score-card {
        padding: 20px 16px;
    }
    .vendors-score-row {
        font-size: 11px;
        padding: 6px 0;
    }
    .vendors-score-row-bar {
        width: 50px;
    }
    /* Stats */
    .vendors-stat-number {
        font-size: 24px;
    }
    .vendors-stat-label {
        font-size: 11px;
    }
    .vendors-stat-card {
        padding: 18px 12px;
    }
    /* Buyers */
    .vendors-buyers-list {
        font-size: 12px;
        line-height: 2.2;
    }
    .vendors-buyers-bar {
        padding: 18px 14px;
    }
    /* Problem */
    .vendors-problem-card {
        padding: 20px 16px;
    }
    .vendors-problem-card h3 {
        font-size: 15px;
    }
    .vendors-problem-card p {
        font-size: 12px;
    }
    /* Free items */
    .vendors-free-item {
        padding: 16px 14px;
    }
    /* Pricing */
    .vendors-price-free {
        font-size: 26px;
    }
    .vendors-founding-subtitle {
        font-size: 12px;
    }
    .vendors-pricing-hero-block .pricing-price-strikethrough {
        font-size: 14px;
    }
    .vendors-founding-meta {
        gap: 2px;
    }
    .vendors-founding-text {
        font-size: 9px;
    }
    .vendors-founding-remaining {
        font-size: 8px;
    }
    /* Timeline */
    .vendors-timeline-dot {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .vendors-timeline-title {
        font-size: 13px;
    }
    .vendors-timeline-desc {
        font-size: 11px;
    }
    .vendors-timeline {
        gap: 20px;
    }
}

/* ---- Smallest screens (320px and below) ---- */
@media (max-width: 320px) {
    .vendors-hero {
        padding: 88px 0 36px;
    }
    .vendors-hero h1 {
        font-size: 22px;
    }
    .vendors-hero-desc {
        font-size: 13px;
    }
    .vendors-hero-badge {
        font-size: 9px;
        padding: 4px 10px;
    }
    .vendors-score-number {
        font-size: 36px;
    }
    .vendors-stat-number {
        font-size: 22px;
    }
    .vendors-price-free {
        font-size: 24px;
    }
    .vendors-founding-subtitle {
        font-size: 11px;
    }
    .vendors-problem,
    .vendors-free,
    .vendors-score,
    .vendors-tiers,
    .vendors-how,
    .vendors-stats,
    .vendors-faq {
        padding: 40px 0;
    }
    .vendors-stats-grid {
        grid-template-columns: 1fr;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---- Safe areas for notched phones ---- */
@supports (padding: env(safe-area-inset-bottom)) {
    .vendors-hero {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    .vendors-faq,
    .vendors-tiers,
    .vendors-stats {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* ---- Prevent horizontal overflow on all mobile ---- */
@media (max-width: 900px) {
    .vendors-hero,
    .vendors-problem,
    .vendors-free,
    .vendors-score,
    .vendors-tiers,
    .vendors-how,
    .vendors-stats,
    .vendors-faq {
        overflow-x: hidden;
    }
    .vendors-hero-screenshot img {
        max-width: 100%;
        height: auto;
    }
    .vendors-score-card {
        overflow: hidden;
    }
    /* Ensure all buttons meet 44px touch target */
    .vendors-free-cta .btn,
    .vendors-hero-actions .btn,
    .vendors-tiers .pricing-cta .btn {
        min-height: 44px;
    }
}

/* ================================================================
   TWO-CARD PRICING GRID
   ================================================================ */
.pricing-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 640px) {
    .pricing-grid--two {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   VERIFIED PARTNER — PRICING HERO BLOCK
   ================================================================ */
.vendors-tiers .pricing-tier-name {
    margin-bottom: 10px;
}
.vendors-pricing-hero-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
}
.vendors-pricing-hero-block .pricing-price-strikethrough {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-faint);
    text-decoration: line-through;
    text-decoration-color: var(--brand-red, #ff6b6b);
    letter-spacing: -0.01em;
    margin-bottom: 0;
}
.vendors-price-free {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text-primary);
}
.vendors-founding-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: -2px;
}
[data-theme="light"] .vendors-founding-subtitle {
    color: rgba(0,0,0,0.55);
}

/* ================================================================
   FOUNDING MEMBER COUNTER & PROGRESS BAR
   ================================================================ */
.vendors-founding-counter {
    margin: 16px 0 8px;
    position: relative;
}
.vendors-founding-bar-wrap {
    position: relative;
    margin-bottom: 10px;
    padding: 4px 0;
}
.vendors-founding-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
[data-theme="light"] .vendors-founding-bar {
    background: rgba(0,0,0,0.07);
}
.vendors-founding-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand, #0A06E5), var(--brand-light, #58C7F7));
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    box-shadow: 0 0 8px rgba(88,199,247,0.3);
}
[data-theme="light"] .vendors-founding-bar-fill {
    box-shadow: 0 0 6px rgba(10,6,229,0.2);
}
.vendors-founding-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.25) 50%,
        transparent 100%
    );
    border-radius: 3px;
    animation: vendors-bar-shimmer 2.5s ease-in-out infinite;
}
@keyframes vendors-bar-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}
.vendors-founding-bar-pulse {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--brand-light, #58C7F7);
    box-shadow: 0 0 0 0 rgba(88,199,247,0.4);
    animation: vendors-pulse 2s ease-in-out infinite;
    z-index: 2;
}
[data-theme="light"] .vendors-founding-bar-pulse {
    background: #fff;
    border-color: var(--brand, #0A06E5);
    box-shadow: 0 0 0 0 rgba(10,6,229,0.3);
    animation-name: vendors-pulse-light;
}
@keyframes vendors-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(88,199,247,0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(88,199,247,0);
    }
}
@keyframes vendors-pulse-light {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(10,6,229,0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(10,6,229,0);
    }
}
.vendors-founding-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vendors-founding-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.vendors-founding-text strong {
    color: var(--text-primary);
    font-weight: 600;
}
.vendors-founding-remaining {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--brand-light, #58C7F7);
}
[data-theme="light"] .vendors-founding-remaining {
    color: var(--brand, #0A06E5);
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    .vendors-hero-glow { transition: none; }
    .vendors-problem-card { transition: none; }
    .vendors-free-item { transition: none; }
    .vendors-founding-bar-fill::after { animation: none; }
    .vendors-founding-bar-pulse { animation: none; }
}
