/* ── Careers — page-specific styles ───────────────────────────────────────── */

.nav-active { color: var(--ink) !important; font-weight: 600; }

/* ── Hero ── */
.cr-hero {
    padding: 140px 48px 72px;
    position: relative;
    overflow: hidden;
}
.cr-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.cr-title {
    font-family: var(--fh);
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -2.5px;
    color: var(--ink);
    margin: 24px 0 20px;
}
.cr-title em { font-style: italic; color: var(--coral); }
.cr-desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink2);
    max-width: 520px;
}

/* ── Perks bar ── */
.cr-perks-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--ink);
    padding: 20px 48px;
    overflow-x: auto;
}
.cr-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}
.cr-perk-ico { font-size: 18px; }
.cr-perk-sep { width: 1px; height: 28px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ── Jobs section ── */
.cr-jobs-sec { padding: 72px 48px 100px; }
.cr-jobs-wrap { display: flex; flex-direction: column; gap: 20px; max-width: 1100px; margin: 0 auto; }

/* ── Job card ── */
.cr-job-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(28,25,23,.07);
    overflow: hidden;
    transition: box-shadow .25s;
}
.cr-job-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.08); }

.cr-job-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(28,25,23,.06);
}
.cr-job-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cr-job-title {
    font-family: var(--fh);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -.4px;
    color: var(--ink);
    margin-bottom: 8px;
}
.cr-job-meta { display: flex; gap: 6px; flex-wrap: wrap; }

/* Tags */
.cr-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}
.cr-tag--purple { background: #EDE9FE; color: #6D28D9; }
.cr-tag--pink   { background: #FCE7F3; color: #BE185D; }
.cr-tag--sky    { background: #E0F2FE; color: #0369A1; }
.cr-tag--amber  { background: #FEF3C7; color: #92400E; }
.cr-tag--gray   { background: #F1F5F9; color: var(--ink2); }

/* Apply button */
.cr-apply-btn {
    margin-left: auto;
    flex-shrink: 0;
    background: var(--ink);
    color: var(--bg);
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.cr-apply-btn:hover { background: #333; transform: scale(1.03); }

/* Job body — 2 columns */
.cr-job-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 32px;
}
.cr-job-col:first-child { padding-right: 40px; border-right: 1px solid rgba(28,25,23,.06); }
.cr-job-col:last-child  { padding-left: 40px; }

.cr-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 14px;
}

/* Lists */
.cr-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.cr-list li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink2);
    padding-left: 18px;
    position: relative;
}
.cr-list li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--coral);
    font-weight: 700;
}
.cr-list--plus li::before { content: '+'; color: #10B981; }
.cr-list--check li::before { content: '✓'; color: #6366F1; font-size: 11px; top: 1px; }

/* ── Modal ── */
.cr-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.cr-modal-overlay.open { display: flex; }
.cr-modal {
    background: #fff;
    border-radius: 24px;
    padding: 48px 44px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: cr-pop .25s ease;
}
@keyframes cr-pop {
    from { transform: scale(.92); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.cr-modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none; border: none;
    font-size: 18px; color: var(--ink3);
    cursor: pointer; line-height: 1;
}
.cr-modal-close:hover { color: var(--ink); }
.cr-modal-icon { font-size: 40px; margin-bottom: 16px; }
.cr-modal-title {
    font-family: var(--fh);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -.5px;
    color: var(--ink);
    margin-bottom: 6px;
}
.cr-modal-sub {
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 16px;
}
.cr-modal-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink2);
    margin-bottom: 24px;
}
.cr-modal-email {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    background: var(--bg2);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 20px;
    transition: background .2s;
}
.cr-modal-email:hover { background: #e0dbd2; }
.cr-modal-btn {
    background: var(--ink);
    color: var(--bg);
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background .2s;
}
.cr-modal-btn:hover { background: #333; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .cr-hero { padding: 120px 20px 56px; }
    .cr-perks-bar { padding: 16px 20px; gap: 16px; }
    .cr-perk-sep { display: none; }
    .cr-perk { justify-content: flex-start; }
    .cr-jobs-sec { padding: 48px 20px 72px; }
    .cr-job-head { flex-wrap: wrap; padding: 20px; }
    .cr-apply-btn { margin-left: 0; width: 100%; }
    .cr-job-body { grid-template-columns: 1fr; padding: 20px; gap: 28px; }
    .cr-job-col:first-child { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(28,25,23,.06); padding-bottom: 28px; }
    .cr-job-col:last-child { padding-left: 0; }
}
