/* ─── Variables ─────────────────────────────────────────── */
:root {
    --bg:          #0b0f1a;
    --bg-2:        #111827;
    --bg-3:        #1a2235;
    --surface:     #161d2e;
    --border:      rgba(255,255,255,0.07);
    --border-hover:rgba(255,255,255,0.15);
    --text:        #eef2f8;
    --text-2:      #8b97b0;
    --text-3:      #546280;
    --accent:      #3b82f6;
    --accent-2:    #06b6d4;
    --accent-glow: rgba(59,130,246,0.25);
    --success:     #22c55e;
    --error:       #f87171;
    --gold:        #f59e0b;
    --gold-glow:   rgba(245,158,11,0.3);
    --radius:      12px;
    --radius-lg:   18px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg:   0 12px 40px rgba(0,0,0,0.6);
}

[data-theme="light"] {
    --bg:          #f4f7fb;
    --bg-2:        #eaeff7;
    --bg-3:        #dde5f0;
    --surface:     #ffffff;
    --border:      rgba(0,0,0,0.08);
    --border-hover:rgba(0,0,0,0.18);
    --text:        #0f172a;
    --text-2:      #475569;
    --text-3:      #94a3b8;
    --accent:      #2563eb;
    --accent-2:    #0891b2;
    --accent-glow: rgba(37,99,235,0.15);
    --success:     #16a34a;
    --error:       #dc2626;
    --gold:        #d97706;
    --gold-glow:   rgba(217,119,6,0.2);
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.07);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    transition: background 0.3s, color 0.3s;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Header ─────────────────────────────────────────────── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 1rem 0;
    background: rgba(11,15,26,0.8);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
[data-theme="light"] .header { background: rgba(244,247,251,0.85); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo {
    display: flex; align-items: center; gap: 0.625rem;
    font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800;
    color: var(--text); text-decoration: none; letter-spacing: -0.02em;
}
.logo svg { color: var(--accent); }
.header-actions { display: flex; gap: 0.375rem; align-items: center; }

/* ─── Premium badge ──────────────────────────────────────── */
.premium-badge {
    display: flex; align-items: center; gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(251,191,36,0.15));
    border: 1px solid rgba(245,158,11,0.4);
    border-radius: 999px;
    font-size: 0.75rem; font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.03em;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-icon {
    width: 38px; height: 38px;
    border: 1px solid var(--border); background: transparent; color: var(--text-2);
    border-radius: 10px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.btn-icon:hover { border-color: var(--border-hover); color: var(--text); background: var(--bg-3); }

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    background: var(--accent); color: #fff;
    border: none; border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.95rem;
    cursor: pointer; text-decoration: none; transition: all 0.2s;
    box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-primary:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 6px 20px var(--accent-glow); }

.btn-secondary {
    display: inline-flex; align-items: center;
    padding: 0.65rem 1.2rem;
    background: transparent; color: var(--text-2);
    border: 1px solid var(--border); border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.9rem;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--border-hover); color: var(--text); background: var(--bg-3); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero { position: relative; padding: 10rem 0 5rem; overflow: hidden; }
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.45; }
.shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.3), transparent 70%);
    top: -200px; left: -100px; animation: drift 18s ease-in-out infinite;
}
.shape-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%);
    bottom: -100px; right: -50px; animation: drift 22s ease-in-out infinite reverse;
}
.shape-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(168,85,247,0.15), transparent 70%);
    top: 40%; left: 55%; animation: drift 15s ease-in-out infinite 3s;
}
@keyframes drift {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%       { transform: translate(40px,-30px) scale(1.05); }
    66%       { transform: translate(-20px,20px) scale(0.97); }
}
[data-theme="light"] .shape { opacity: 0.25; }
.hero-inner { position: relative; animation: fadeUp 0.7s ease-out both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-text { max-width: 720px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem; background: var(--bg-3); border: 1px solid var(--border);
    border-radius: 999px; font-size: 0.8rem; color: var(--text-2); font-weight: 500;
    margin-bottom: 2rem; letter-spacing: 0.01em;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--success);
    box-shadow: 0 0 6px var(--success); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.hero-title {
    font-family: 'Syne', sans-serif; font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--text); margin-bottom: 1.5rem;
}
.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.15rem; color: var(--text-2); font-weight: 300; margin-bottom: 2.5rem; max-width: 500px; }
.hero-sub strong { color: var(--text); font-weight: 500; }

/* ─── Hero Search ─────────────────────────────────────────── */
.hero-search-wrap {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.25rem; box-shadow: var(--shadow-md); margin-bottom: 2.5rem;
    animation: fadeUp 0.7s ease-out 0.15s both; max-width: 1240px;
}
.search-bar { display: flex; align-items: center; gap: 0.75rem; position: relative; margin-bottom: 1rem; }
.search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-3); pointer-events: none; }
.search-bar input {
    flex: 1; padding: 0.85rem 1rem 0.85rem 3rem;
    background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
    color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-bar input::placeholder { color: var(--text-3); }
.search-bar input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.search-bar .btn-secondary { flex-shrink: 0; }

/* ─── Hero Stats ──────────────────────────────────────────── */
.hero-stats { display: flex; align-items: center; gap: 2rem; animation: fadeUp 0.7s ease-out 0.3s both; }
.hero-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stat-value {
    font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text), var(--text-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ─── Main / Jobs ─────────────────────────────────────────── */
.main { padding: 0 0 5rem; }
.jobs-section {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow-sm);
}
.jobs-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.jobs-header h2 { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
.results-count { font-size: 0.85rem; color: var(--text-3); font-weight: 400; }

/* ─── Jobs Grid ───────────────────────────────────────────── */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.25rem; }
.job-card {
    background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.4rem; cursor: pointer; transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden;
}
.job-card::after {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius);
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent-2)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out; mask-composite: exclude; opacity: 0; transition: opacity 0.22s;
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.job-card:hover::after { opacity: 1; }
.job-header { margin-bottom: 0.875rem; }
.job-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text); margin-bottom: 0.3rem; line-height: 1.3; }
.job-company { font-size: 0.875rem; color: var(--text-2); font-weight: 400; }
.job-details { margin-bottom: 0.875rem; }
.job-detail { display: flex; align-items: center; gap: 0.45rem; color: var(--text-3); font-size: 0.83rem; }
.job-detail svg { flex-shrink: 0; opacity: 0.6; }
.job-department {
    display: inline-block; padding: 0.2rem 0.65rem; background: var(--bg-3);
    border: 1px solid var(--border); border-radius: 6px; font-size: 0.73rem; margin-bottom: 0.75rem; color: var(--text-2);
}
.job-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 1rem; padding-top: 0.875rem; border-top: 1px solid var(--border);
}
.job-work-type {
    display: inline-block; padding: 0.22rem 0.7rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(6,182,212,0.15));
    border: 1px solid rgba(59,130,246,0.3); color: var(--accent-2); border-radius: 6px;
    font-size: 0.73rem; font-weight: 500;
}
.job-link {
    color: var(--accent); text-decoration: none; font-size: 0.83rem; font-weight: 500;
    display: flex; align-items: center; gap: 0.25rem; transition: color 0.2s; opacity: 0.8;
}
.job-link:hover { opacity: 1; color: var(--accent-2); }

/* ─── States ──────────────────────────────────────────────── */
.loading-state, .error-state, .empty-state {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 5rem 2rem; text-align: center; color: var(--text-3);
}
.spinner {
    width: 44px; height: 44px; border: 3px solid var(--border); border-top-color: var(--accent);
    border-radius: 50%; animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-state p, .error-state p, .empty-state p { margin-top: 1.25rem; color: var(--text-3); }
.error-state button, .empty-state button { margin-top: 1.25rem; }

/* ─── Paywall Gate (inline, below free cards) ─────────────── */
.paywall-gate {
    margin-top: 1.5rem;
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: fadeUp 0.5s ease-out both;
}

/* Blurred ghost cards behind the gate */
.paywall-gate::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 60%);
    z-index: 0;
    pointer-events: none;
}

.paywall-gate-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    padding: 3rem 2rem;
    text-align: center;
}

.paywall-lock-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 8px var(--gold-glow);
}

.paywall-gate-title {
    font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
    color: var(--text); margin-bottom: 0.5rem;
}

.paywall-gate-sub { color: var(--text-2); font-size: 0.95rem; margin-bottom: 1.75rem; max-width: 380px; }

.paywall-perks {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
    margin-bottom: 2rem;
}

.perk-item {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: var(--bg-2); border: 1px solid var(--border); border-radius: 999px;
    font-size: 0.82rem; color: var(--text-2);
}

.perk-check {
    color: var(--success); font-weight: 700; font-size: 0.85rem;
}

.paywall-cta-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--gold), #fbbf24);
    color: #0f172a; font-weight: 700; font-size: 1rem;
    border: none; border-radius: var(--radius); cursor: pointer; text-decoration: none;
    box-shadow: 0 4px 20px var(--gold-glow);
    transition: all 0.2s;
    margin-bottom: 1rem;
}
.paywall-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--gold-glow); }

.paywall-hint { font-size: 0.82rem; color: var(--text-3); }
.paywall-link {
    background: none; border: none; color: var(--accent); cursor: pointer;
    font-size: 0.82rem; text-decoration: underline; padding: 0;
}
.paywall-link:hover { color: var(--accent-2); }

/* ─── Paywall Modal ───────────────────────────────────────── */
.paywall-modal { z-index: 1100; }

.paywall-modal-content {
    max-width: 860px; width: 100%;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    animation: fadeUp 0.3s ease-out both;
    overflow: hidden; position: relative;
}

.paywall-close {
    position: absolute; top: 1rem; right: 1rem; z-index: 2;
}

.paywall-modal-body {
    display: grid; grid-template-columns: 1fr 1fr;
}

/* Left pitch panel */
.paywall-pitch {
    padding: 2.5rem;
    background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
}

.paywall-icon-ring {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(251,191,36,0.1));
    border: 1px solid rgba(245,158,11,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); margin-bottom: 1.5rem;
}

.paywall-title {
    font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 800;
    letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.75rem; line-height: 1.1;
}
.paywall-title-accent {
    background: linear-gradient(135deg, var(--gold), #fbbf24);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.paywall-desc { color: var(--text-2); font-size: 0.92rem; margin-bottom: 1.75rem; line-height: 1.6; }

.paywall-features { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; flex: 1; }
.paywall-features li { display: flex; align-items: flex-start; gap: 0.875rem; }
.feature-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.paywall-features li div { display: flex; flex-direction: column; gap: 0.15rem; }
.paywall-features li strong { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.paywall-features li span { font-size: 0.8rem; color: var(--text-3); }

.paywall-pricing {
    display: flex; align-items: baseline; gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.price-tag { display: flex; align-items: baseline; gap: 0.1rem; }
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--text-2); }
.price-amount { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.price-period { font-size: 1rem; color: var(--text-3); }
.price-note { font-size: 0.78rem; color: var(--text-3); }

.paywall-buy-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.875rem 1.5rem; width: 100%;
    background: linear-gradient(135deg, var(--gold), #fbbf24);
    color: #0f172a; font-weight: 700; font-size: 0.95rem;
    border: none; border-radius: var(--radius); cursor: pointer; text-decoration: none;
    box-shadow: 0 4px 16px var(--gold-glow);
    transition: all 0.2s;
}
.paywall-buy-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }

/* Right token panel */
.paywall-token-side {
    padding: 2.5rem; display: flex; flex-direction: column; justify-content: center;
}

.token-divider {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.token-divider::before, .token-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.token-divider span { font-size: 0.8rem; color: var(--text-3); white-space: nowrap; font-weight: 500; }

.token-label { font-size: 0.875rem; color: var(--text-2); font-weight: 500; margin-bottom: 0.6rem; }

.token-input {
    width: 100%; padding: 0.85rem 1rem;
    background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
    color: var(--text); font-family: 'DM Sans', monospace; font-size: 0.9rem;
    letter-spacing: 0.02em; transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 0.5rem;
}
.token-input::placeholder { color: var(--text-3); }
.token-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

.token-error { font-size: 0.8rem; color: var(--error); min-height: 1.2em; margin-bottom: 0.75rem; }

.unlock-btn { width: 100%; justify-content: center; }

.token-help { font-size: 0.78rem; color: var(--text-3); margin-top: 1rem; text-align: center; line-height: 1.5; }

/* ─── Pagination ──────────────────────────────────────────── */
.pagination {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.pagination-btn {
    display: flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1.1rem;
    border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-2);
    color: var(--text-2); font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.875rem;
    cursor: pointer; transition: all 0.2s;
}
.pagination-btn:hover:not(:disabled) { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.page-numbers { display: flex; align-items: center; gap: 0.35rem; }
.page-btn {
    min-width: 34px; height: 34px; padding: 0 0.4rem;
    border: 1px solid var(--border); border-radius: 8px; background: var(--bg-2);
    color: var(--text-2); font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.85rem;
    cursor: pointer; transition: all 0.2s;
}
.page-btn:hover, .page-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.page-ellipsis { color: var(--text-3); padding: 0 0.25rem; }
.page-info { font-size: 0.8rem; color: var(--text-3); white-space: nowrap; }

/* ─── Modal ───────────────────────────────────────────────── */
.modal {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px); z-index: 1000;
    align-items: center; justify-content: center; padding: 1rem;
}
.modal.active { display: flex; }
.modal-content {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto;
    box-shadow: var(--shadow-lg); animation: fadeUp 0.25s ease-out both;
}
.modal-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 1.5rem; border-bottom: 1px solid var(--border); gap: 1rem;
}
.modal-header h2 { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; flex: 1; }
.modal-body { padding: 1.5rem; }
.job-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.meta-label { font-size: 0.7rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 500; }
.meta-value { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.modal-actions { display: flex; gap: 0.75rem; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero { padding: 8rem 0 4rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 1.25rem; }
    .hero-stat-value { font-size: 1.4rem; }
    .search-bar .btn-secondary { display: none; }
    .jobs-grid { grid-template-columns: 1fr; }
    .job-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .pagination { gap: 0.5rem; }
    .pagination-btn { font-size: 0.8rem; padding: 0.45rem 0.75rem; }
    .page-info { width: 100%; text-align: center; order: -1; }

    .paywall-modal-body { grid-template-columns: 1fr; }
    .paywall-pitch { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 480px) {
    .hero-stats { gap: 1rem; }
    .stat-sep { display: none; }
    .paywall-gate-inner { padding: 2rem 1.25rem; }
}