/* ═══════════════════════════════════════════════════════════════
   BACKDOORJOBS — Premium Dark Theme
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Core colors */
    --bg-deep:      #0a0a0f;
    --bg-surface:   #0d0d14;
    --bg-card:      #12121c;
    --bg-elevated:  #181825;
    --bg-hover:     #1e1e2e;
    --border:       rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.1);

    /* Accent colors */
    --cyan:         #00f0ff;
    --cyan-dim:     rgba(0,240,255,0.15);
    --cyan-glow:    rgba(0,240,255,0.3);
    --amber:        #f5a623;
    --amber-dim:    rgba(245,166,35,0.15);
    --amber-glow:   rgba(245,166,35,0.3);
    --green:        #22c55e;
    --green-dim:    rgba(34,197,94,0.15);
    --red:          #ef4444;

    /* Text */
    --text:         #e8e8f0;
    --text-muted:   #8888a0;
    --text-dim:     #555570;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    'JetBrains Mono', monospace;

    /* Spacing */
    --nav-height: 64px;
    --container-max: 1120px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: #66f7ff; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-body); }
strong { font-weight: 600; }

/* ── Container ────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Views (SPA) ──────────────────────────────────────────────── */
.view {
    display: none;
    position: relative;
    min-height: calc(100vh - var(--nav-height));
}
.view.active { display: block; }

/* ── Grid Background ──────────────────────────────────────────── */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.3;
    animation: scanDown 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes scanDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(100vh); }
    100% { transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}
.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-icon { color: var(--text-muted); display: flex; }
.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
}
.logo-accent { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--bg-hover); }
.nav-link.cta-nav {
    color: var(--bg-deep);
    background: var(--cyan);
    font-weight: 600;
}
.nav-link.cta-nav:hover {
    background: #33f5ff;
    color: var(--bg-deep);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}
.hero::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0,240,255,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--cyan-dim);
    background: rgba(0,240,255,0.05);
    font-size: 12px;
    font-weight: 500;
    color: var(--cyan);
    font-family: var(--font-mono);
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease both;
}
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--cyan-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s 0.1s ease both;
}
.text-gradient {
    background: linear-gradient(135deg, var(--cyan), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 36px;
    animation: fadeInDown 0.6s 0.2s ease both;
}
.hero-sub strong { color: var(--text); }

/* Stats Bar */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    margin-bottom: 40px;
    animation: fadeInDown 0.6s 0.3s ease both;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--cyan);
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--cyan);
    color: var(--bg-deep);
    box-shadow: 0 0 20px var(--cyan-dim), 0 4px 12px rgba(0,0,0,0.3);
}
.btn-primary:hover {
    background: #33f5ff;
    box-shadow: 0 0 30px var(--cyan-glow), 0 6px 16px rgba(0,0,0,0.4);
    transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
    background: var(--text-dim);
    box-shadow: none;
    cursor: not-allowed;
    color: var(--bg-deep);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* Trust */
.trust-row {
    margin-top: 48px;
    animation: fadeInDown 0.6s 0.5s ease both;
}
.trust-label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-logo {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dim);
    opacity: 0.5;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS (Landing sub-sections)
   ═══════════════════════════════════════════════════════════════ */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 48px;
}
.dimmed { opacity: 0.5; font-size: 13px; }

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}
.step-card:hover {
    border-color: var(--cyan-dim);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px var(--cyan-dim);
}
.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--cyan-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.step-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Sample Blurred Job Cards */
.sample-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.sample-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.sample-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.match-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2.5px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--cyan);
    flex-shrink: 0;
    box-shadow: 0 0 12px var(--cyan-dim);
}
.match-badge.amber {
    border-color: var(--amber);
    color: var(--amber);
    box-shadow: 0 0 12px var(--amber-dim);
}
.sample-info h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 2px;
}
.blurred-text {
    color: var(--text-muted);
    font-size: 14px;
    filter: blur(4px);
    user-select: none;
}
.applicant-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--green-dim);
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.green-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}
.sample-details {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.blurred-overlay {
    filter: blur(6px);
    user-select: none;
    pointer-events: none;
}
.blur-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border-light);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.stars {
    color: var(--amber);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cyan-dim);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}
.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   WHY BACKDOORJOBS SECTION
   ═══════════════════════════════════════════════════════════════ */

.why-backdoor {
    background: linear-gradient(180deg, transparent 0%, rgba(0,240,255,0.02) 50%, transparent 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.why-icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.why-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.why-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-title-row .why-title {
    margin-bottom: 0;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--amber-dim);
    color: var(--amber);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(245,166,35,0.3);
}

.why-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Pricing */
.pricing .container { max-width: 480px; }
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--cyan-dim);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(0,240,255,0.05);
    margin-top: 16px;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--bg-deep);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pricing-amount {
    margin: 20px 0 4px;
}
.dollar {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-muted);
    vertical-align: super;
}
.price {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--cyan), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-type {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
}
.pricing-period {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0;
}
.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { flex-shrink: 0; }
.pricing-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   UPLOAD VIEW
   ═══════════════════════════════════════════════════════════════ */
.upload-container {
    max-width: 640px;
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}
.upload-header {
    text-align: center;
    margin-bottom: 36px;
}
.page-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.page-sub {
    color: var(--text-muted);
    font-size: 16px;
}
.upload-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

/* Drop Zone */
.drop-zone {
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-md);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    position: relative;
}
.drop-zone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
}
.drop-zone:hover, .drop-zone.drag-over {
    border-color: var(--cyan);
    background: rgba(0,240,255,0.03);
}
.drop-icon { margin-bottom: 16px; }
.drop-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.drop-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}
.drop-formats {
    color: var(--text-dim);
    font-size: 12px;
    font-family: var(--font-mono);
}
.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: var(--cyan-dim);
    border: 1px solid rgba(0,240,255,0.2);
    margin-bottom: 24px;
}
.file-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--cyan);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-remove {
    color: var(--text-muted);
    font-size: 22px;
    padding: 0 4px;
    transition: color 0.2s;
}
.file-remove:hover { color: var(--red); }

/* Questionnaire */
.questionnaire {
    margin-bottom: 28px;
}
.form-section-header {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text);
}
.form-helper-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
}
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: var(--text-muted);
}
.radio-option:hover { border-color: var(--border-light); color: var(--text); }
.radio-option input { display: none; }
.radio-box {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--text-dim);
    flex-shrink: 0;
    transition: all 0.2s;
    position: relative;
}
.radio-option input:checked ~ .radio-box {
    border-color: var(--cyan);
    background: var(--cyan);
    box-shadow: inset 0 0 0 3px var(--bg-card);
}
.radio-option input:checked ~ span:last-child { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   LOADING VIEW
   ═══════════════════════════════════════════════════════════════ */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 24px;
    position: relative;
    z-index: 2;
}
.scanner-visual {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 40px;
}
.scanner-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--cyan-dim);
    animation: scanner-pulse 3s ease-in-out infinite;
}
.ring-1 { inset: 0; animation-delay: 0s; }
.ring-2 { inset: 20px; animation-delay: 0.5s; border-color: rgba(0,240,255,0.2); }
.ring-3 { inset: 40px; animation-delay: 1s; border-color: rgba(0,240,255,0.3); }
.scanner-core {
    position: absolute;
    inset: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: core-pulse 1.5s ease-in-out infinite;
}
@keyframes scanner-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.08); opacity: 1; }
}
@keyframes core-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.loading-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 8px;
}
.loading-sub {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 32px;
    max-width: 400px;
}
.progress-bar-container {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background: var(--bg-card);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px;
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--amber));
    border-radius: 2px;
    transition: width 0.3s ease;
}
.loading-stats {
    display: flex;
    gap: 32px;
    font-size: 13px;
    font-family: var(--font-mono);
    color: var(--text-muted);
}
.loading-stat strong { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════════════
   RESULTS VIEW
   ═══════════════════════════════════════════════════════════════ */
.results-container {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 120px;
    position: relative;
    z-index: 2;
}
.results-header {
    margin-bottom: 32px;
}
.results-count-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.results-icon-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cyan-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.unlocked-ring { background: var(--amber-dim); }
.results-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    letter-spacing: -0.5px;
}
.results-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

/* Job Cards Grid */
.jobs-grid {
    display: grid;
    gap: 16px;
}

/* Individual Job Card */
.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.4s ease both;
    position: relative;
    overflow: hidden;
}
.job-card:hover {
    border-color: var(--border-light);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.job-card.blurred-card {
    border-color: var(--border);
}
.job-card.blurred-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, var(--bg-card));
    pointer-events: none;
    z-index: 2;
}
.job-card.free-card {
    border-color: var(--cyan-dim);
    box-shadow: 0 0 20px rgba(0,240,255,0.03);
}
.job-card.free-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--cyan-dim) 50%, transparent 90%);
}

.job-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
.job-match-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
    position: relative;
}
.job-match-circle svg {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
}
.job-match-circle .match-text {
    position: relative;
    z-index: 1;
}
.match-ring-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 3;
}
.match-ring-fill {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.job-info { flex: 1; min-width: 0; }
.job-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}
.job-company {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.job-company.blurred {
    filter: blur(5px);
    user-select: none;
}
.job-company .lock-icon { opacity: 0.5; }

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}
.job-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-hover);
    color: var(--text-muted);
}
.job-tag.salary { color: var(--amber); background: var(--amber-dim); }
.job-tag.salary.blurred { filter: blur(5px); user-select: none; }
.job-tag.applicants { color: var(--green); background: var(--green-dim); }
.job-tag.location { }
.job-tag.location.blurred { filter: blur(5px); user-select: none; }
.job-tag.hidden-reason { color: var(--cyan); background: var(--cyan-dim); font-family: var(--font-mono); font-size: 11px; }
.job-tag.interview-easy { color: #34d399; background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.25); font-weight: 600; gap: 4px; display: inline-flex; align-items: center; }

.job-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.job-description.blurred {
    filter: blur(6px);
    user-select: none;
    pointer-events: none;
}

.job-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.job-actions.blurred {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}
.job-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-apply {
    background: var(--cyan);
    color: var(--bg-deep);
}
.btn-apply:hover { background: #33f5ff; }
.btn-email {
    background: var(--amber-dim);
    color: var(--amber);
    border: 1px solid rgba(245,166,35,0.2);
}
.btn-email:hover { background: rgba(245,166,35,0.25); }
.btn-linkedin {
    background: var(--bg-hover);
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.btn-linkedin:hover { color: var(--text); border-color: var(--border-light); }

.job-card-lock {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
}
.lock-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(10,10,15,0.9);
    border: 1px solid var(--amber-dim);
    color: var(--amber);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.lock-label:hover {
    background: var(--amber-dim);
}

/* Hiring Manager Info */
.hiring-manager {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-hover);
    border: 1px solid var(--border);
    margin-bottom: 14px;
}
.hiring-manager .hm-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--amber-dim);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.hm-info { flex: 1; }
.hm-name { font-weight: 600; font-size: 14px; }
.hm-title { font-size: 12px; color: var(--text-muted); }

/* Unlock Banner */
.unlock-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--amber-dim);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
    display: none;
}
.unlock-banner.show { display: block; }
.unlock-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.unlock-text {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 200px;
}
.unlock-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
}
.unlock-price {
    display: block;
    color: var(--amber);
    font-size: 13px;
    font-weight: 600;
    margin-top: 2px;
}
.unlock-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-demo {
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: underline;
    transition: color 0.2s;
    padding: 4px;
}
.btn-demo:hover { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.show { display: flex; }
.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.modal-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}
.modal-close {
    font-size: 24px;
    color: var(--text-muted);
    padding: 0 4px;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 24px; }
.email-meta {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.email-field {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}
.email-label {
    color: var(--text-dim);
    font-weight: 600;
    min-width: 60px;
}
.email-body {
    font-size: 14px;
    line-height: 1.8;
    white-space: pre-wrap;
    color: var(--text);
}
.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: bottom 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show { bottom: 24px; }
.toast.success { border-color: var(--green); }
.toast.error { border-color: var(--red); }
.toast-icon { font-size: 16px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    padding: 32px 0;
    position: relative;
    z-index: 2;
}
.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-muted);
}
.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
    padding: 6px 12px;
    border-radius: 6px;
}
.footer-links a:hover { 
    color: var(--cyan);
    background: rgba(0,240,255,0.08);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in { animation: fadeIn 0.5s ease both; }

/* Stagger animation for job cards */
.job-card:nth-child(1) { animation-delay: 0.05s; }
.job-card:nth-child(2) { animation-delay: 0.1s; }
.job-card:nth-child(3) { animation-delay: 0.15s; }
.job-card:nth-child(4) { animation-delay: 0.2s; }
.job-card:nth-child(5) { animation-delay: 0.25s; }
.job-card:nth-child(6) { animation-delay: 0.3s; }
.job-card:nth-child(7) { animation-delay: 0.35s; }
.job-card:nth-child(8) { animation-delay: 0.4s; }
.job-card:nth-child(9) { animation-delay: 0.45s; }
.job-card:nth-child(10) { animation-delay: 0.5s; }
.job-card:nth-child(n+11) { animation-delay: 0.55s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --nav-height: 56px;
    }
    .nav-links { gap: 4px; }
    .nav-link { padding: 6px 12px; font-size: 13px; }
    .nav-link:not(.cta-nav) { display: none; }
    .nav-auth-btn span { display: none; }
    .nav-auth-btn { padding: 8px 10px; margin-left: 2px; }
    .nav-user-name { display: none; }
    .nav-auth-user { gap: 6px; }

    .hero { padding-top: calc(var(--nav-height) + 48px); padding-bottom: 48px; }
    .hero-title { letter-spacing: -1px; }

    .stats-bar { gap: 16px; padding: 16px 20px; }
    .stat-num { font-size: 20px; }
    .stat-divider { height: 28px; }

    .section { padding: 48px 0; }
    .section-sub { margin-bottom: 32px; }

    .steps-grid { grid-template-columns: 1fr; }
    .sample-cards { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .upload-card { padding: 24px 20px; }
    .radio-group { grid-template-columns: 1fr; }

    .results-count-wrapper { flex-direction: column; gap: 12px; }

    .job-card { padding: 20px; }
    .job-card-top { flex-direction: row; }

    .unlock-inner { flex-direction: column; text-align: center; }
    .unlock-text { flex-direction: column; text-align: center; }
    .unlock-text svg { display: none; }

    .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .stats-bar {
        flex-direction: column;
        gap: 12px;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    .hero-badge { font-size: 11px; }
    .trust-logos { gap: 16px; }
    .trust-logo { font-size: 13px; }
    .job-meta { gap: 6px; }
    .job-tag { font-size: 11px; padding: 3px 8px; }
    
    /* Connection finder mobile */
    .connection-finder {
        padding: 10px 12px;
        margin: 8px 0;
    }
    .cf-header {
        font-size: 12px;
    }
    .connection-link {
        padding: 8px 10px;
        font-size: 11px;
    }
    .cl-icon {
        font-size: 12px;
    }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-hover); }

/* Selection */
::selection {
    background: var(--cyan-dim);
    color: var(--cyan);
}

/* ── Source & Department Tags ──────────────────────────────── */
.source-tag {
    background: rgba(139, 92, 246, 0.15) !important;
    color: #a78bfa !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.dept-tag {
    background: rgba(59, 130, 246, 0.12) !important;
    color: #60a5fa !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
}

/* ─── Matched Skills Tags ─────────────────────────────────── */
.matched-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 6px 0;
    margin: 0 0 4px 0;
}
.matched-skills.blurred .skill-tag { opacity: 0.5; }
.skill-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(0,240,255,0.08);
    color: var(--cyan);
    border: 1px solid rgba(0,240,255,0.15);
    letter-spacing: 0.3px;
}
.skill-tag.locked {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border-color: var(--border);
    font-style: italic;
}

/* ─── Score Breakdown Bar ─────────────────────────────────── */
.score-breakdown {
    display: flex;
    gap: 8px;
    padding: 4px 0 6px 0;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}
.sb-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 1px 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    cursor: help;
}
.sb-item:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
}

/* ─── Infinite Scroll Loading Spinner ─────────────────────── */
.loading-more-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spinner-rotate 0.8s linear infinite;
    flex-shrink: 0;
}
@keyframes spinner-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   GOOGLE AUTH STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ─── Navbar Auth ───────────────────────────────────────── */
.nav-auth-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: var(--text, #e0e0e0);
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    margin-left: 4px;
}
.nav-auth-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}
.nav-auth-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-auth-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}
.nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid var(--cyan, #00d4ff);
}
.nav-user-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text, #e0e0e0);
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-signout-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-muted, #888);
    padding: 5px 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}
.nav-signout-btn:hover {
    border-color: #ff5555;
    color: #ff5555;
}
.nav-signout-btn svg {
    width: 14px;
    height: 14px;
}
.nav-manage-sub-btn {
    background: none;
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--cyan, #00e5ff);
    padding: 5px 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}
.nav-manage-sub-btn:hover {
    border-color: var(--cyan, #00e5ff);
    background: rgba(0, 229, 255, 0.1);
}
.nav-manage-sub-btn svg {
    width: 14px;
    height: 14px;
}

/* ═══════════════════════════════════════════════════
   BLUE OCEAN PROOF BADGES
   ═══════════════════════════════════════════════════ */

.blue-ocean-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 4px;
}

.bo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.bo-badge svg {
    flex-shrink: 0;
}

.bo-scan {
    background: rgba(0, 221, 235, 0.08);
    color: var(--cyan);
    border: 1px solid rgba(0, 221, 235, 0.2);
}

.bo-hidden {
    background: rgba(255, 179, 71, 0.08);
    color: var(--amber);
    border: 1px solid rgba(255, 179, 71, 0.2);
}

.bo-low-comp {
    background: rgba(0, 200, 120, 0.08);
    color: #00c878;
    border: 1px solid rgba(0, 200, 120, 0.2);
}

.bo-source {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.65rem;
}

/* Match explanation line */
.match-explanation {
    font-size: 0.75rem;
    color: var(--cyan);
    opacity: 0.8;
    margin: 4px 0 2px;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════
   CONNECTION FINDER
   ═══════════════════════════════════════════════════ */

.connection-finder {
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin: 12px 0;
}

.connection-finder.locked {
    background: rgba(245,166,35,0.05);
    border: 1px solid rgba(245,166,35,0.15);
}

.cf-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.connection-finder.locked .cf-header {
    color: var(--amber);
}

.cf-preview {
    font-size: 12px;
    color: var(--text-muted);
    filter: blur(2px);
    user-select: none;
    pointer-events: none;
}

.cf-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.connection-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.connection-link:hover {
    background: var(--bg-elevated);
    border-color: var(--border-light);
    color: var(--text);
}

.cl-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.cl-label {
    flex: 1;
    font-weight: 500;
}

.connection-link svg {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.connection-link:hover svg {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════
   VALUE PROOF BANNER (above results)
   ═══════════════════════════════════════════════════ */

.value-proof-banner {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 221, 235, 0.06) 0%, rgba(255, 179, 71, 0.04) 100%);
    border: 1px solid rgba(0, 221, 235, 0.15);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 8px;
}

.vp-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.vp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.vp-stat {
    text-align: center;
}

.vp-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1.2;
}

.vp-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vp-subtitle {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 640px) {
    .vp-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .blue-ocean-proof {
        gap: 4px;
    }
    .bo-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
}
