﻿/* =========================================================================
   careers.css — Qlynic CAREERS PAGE
   Class prefix: qcr-  (sections: qcr1, qcr2, qcr3, qcr4, qcr5)
   Theme: dark obsidian, cinematic, matching About page family
   ========================================================================= */

/* Design tokens scoped to qcr pages */
.qcr1, .qcr2, .qcr3, .qcr4, .qcr5 {
    --qcr-bg-1: #07080a;
    --qcr-bg-2: #0d0f1a;
    --qcr-bg-3: #14172a;
    --qcr-ink: #ffffff;
    --qcr-ink-2: rgba(255, 255, 255, 0.86);
    --qcr-ink-3: rgba(255, 255, 255, 0.62);
    --qcr-ink-4: rgba(255, 255, 255, 0.42);
    --qcr-ink-5: rgba(255, 255, 255, 0.22);
    --qcr-line: rgba(255, 255, 255, 0.08);
    --qcr-line-2: rgba(255, 255, 255, 0.14);
    /* Brand palette */
    --qcr-az: #2563eb;
    --qcr-az-2: #3b82f6;
    --qcr-az-3: #60a5fa;
    --qcr-vi: #7c3aed;
    --qcr-vi-2: #a855f7;
    --qcr-vi-3: #c084fc;
    --qcr-in: #6366f1;
    --qcr-in-2: #818cf8;
    /* Easing */
    --qcr-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --qcr-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    /* Layout */
    --qcr-page-max: 1280px;
    --qcr-page-pad: clamp(20px, 4vw, 56px);
}


/* Main wrap */
.qcr-main {
    background: var(--qcr-bg-1, #07080a);
    color: var(--qcr-ink, #ffffff);
}


/* =========================================================================
   SHARED REVEAL KEYFRAMES (qcr1)
   ========================================================================= */
@keyframes qcr1-revealUp-sm {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr1-revealUp-md {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr1-revealUp-lg {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr1-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes qcr1-fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes qcr1-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================================
   SECTION 1 — HERO
   ========================================================================= */
.qcr1 {
    position: relative;
    background: radial-gradient(ellipse 100% 70% at 50% 0%, var(--qcr-bg-3) 0%, var(--qcr-bg-2) 40%, var(--qcr-bg-1) 100%);
    color: var(--qcr-ink);
    overflow: hidden;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: clamp(80px, 10vw, 130px) 0 clamp(60px, 8vw, 100px);
}


/* ─── Background layer 1: aurora ─── */
.qcr1-bg-aurora {
    position: absolute;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 40% at 18% 28%, rgba(99, 102, 241, 0.34) 0%, transparent 60%), radial-gradient(ellipse 55% 45% at 82% 72%, rgba(168, 85, 247, 0.30) 0%, transparent 60%), radial-gradient(ellipse 70% 50% at 50% 100%, rgba(59, 130, 246, 0.20) 0%, transparent 60%);
    filter: blur(48px);
    opacity: 0.85;
    animation: qcr1-aurora 22s ease-in-out infinite;
}

.qcr1.qcr1-on .qcr1-bg-aurora {
    animation: qcr1-fadeIn 1.6s var(--qcr-ease-out) both, qcr1-aurora 22s ease-in-out infinite;
}

@keyframes qcr1-aurora {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(14px, -10px) scale(1.04);
    }

    66% {
        transform: translate(-12px, 10px) scale(0.98);
    }
}


/* ─── Background layer 2: dot grid ─── */
.qcr1-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1.4px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 0%, transparent 95%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 0%, transparent 95%);
    opacity: 1;
}

.qcr1.qcr1-on .qcr1-bg-grid {
    animation: qcr1-fadeIn 1.4s var(--qcr-ease-out) 200ms both;
}


/* ─── Background layer 3: drifting particles ─── */
.qcr1-bg-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.qcr1-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.55), 0 0 14px rgba(168, 85, 247, 0.40);
    opacity: 0.85;
}

.qcr1-particle--1 {
    top: 18%;
    left: 6%;
    animation: qcr1-drift-a 14s ease-in-out infinite;
}

.qcr1-particle--2 {
    top: 32%;
    left: 92%;
    animation: qcr1-drift-b 18s ease-in-out -3s infinite;
    width: 2px;
    height: 2px;
}

.qcr1-particle--3 {
    top: 64%;
    left: 12%;
    animation: qcr1-drift-c 16s ease-in-out -6s infinite;
    width: 4px;
    height: 4px;
}

.qcr1-particle--4 {
    top: 14%;
    left: 56%;
    animation: qcr1-drift-a 22s ease-in-out -2s infinite;
    width: 2px;
    height: 2px;
}

.qcr1-particle--5 {
    top: 78%;
    left: 48%;
    animation: qcr1-drift-b 20s ease-in-out -8s infinite;
}

.qcr1-particle--6 {
    top: 50%;
    left: 4%;
    animation: qcr1-drift-c 19s ease-in-out -4s infinite;
    width: 2px;
    height: 2px;
}

@keyframes qcr1-drift-a {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.4);
    }
}

@keyframes qcr1-drift-b {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-26px, 24px) scale(1.6);
    }
}

@keyframes qcr1-drift-c {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(18px, 28px) scale(1.3);
    }
}


/* ─── Background layer 4: vignette ─── */
.qcr1-bg-vignette {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, rgba(7, 8, 10, 0.55) 100%);
}


/* =========================================================================
   CONTENT
   ========================================================================= */
.qcr1-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--qcr-page-max, 1280px);
    margin: 0 auto;
    padding: 0 var(--qcr-page-pad, clamp(20px, 4vw, 56px));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}


/* =========================================================================
   LEFT — Typography column
   ========================================================================= */
.qcr1-text {
    position: relative;
}


/* Eyebrow pill */
.qcr1-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 132, 252, 0.30);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: clamp(28px, 3.6vw, 44px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.qcr1.qcr1-on .qcr1-eyebrow {
    animation: qcr1-revealUp-sm .7s var(--qcr-ease-out) 240ms both;
}

.qcr1-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.20), 0 0 8px rgba(16, 185, 129, 0.65);
    flex-shrink: 0;
    animation: qcr1-eyebrowPulse 2.4s ease-in-out infinite;
}

@keyframes qcr1-eyebrowPulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.20), 0 0 8px rgba(16, 185, 129, 0.65);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.05), 0 0 14px rgba(16, 185, 129, 0.85);
    }
}

.qcr1-eyebrow-text {
    color: var(--qcr-ink, #ffffff);
}

.qcr1-eyebrow-count {
    padding: 2px 8px;
    background: linear-gradient(135deg, var(--qcr-vi-3, #c084fc), var(--qcr-az-3, #60a5fa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    padding-left: 10px;
    margin-left: 2px;
}


/* H1 */
.qcr1-h1 {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(40px, 6.8vw, 84px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.044em;
    color: white;
    margin: 0 0 clamp(24px, 3vw, 36px);
    text-shadow: 0 2px 30px rgba(15, 23, 42, 0.45);
}

.qcr1-h1-line {
    display: block;
}

.qcr1.qcr1-on .qcr1-h1-line:nth-child(1) {
    animation: qcr1-revealUp-lg .85s var(--qcr-ease-out) 420ms both;
}

.qcr1.qcr1-on .qcr1-h1-line:nth-child(2) {
    animation: qcr1-revealUp-lg .85s var(--qcr-ease-out) 600ms both;
}

.qcr1-h1-line--em {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 35%, #a78bfa 65%, #c084fc 100%);
    background-size: 240% 240%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 8px 28px rgba(99, 102, 241, 0.40));
    animation: qcr1-gradShift 8s ease-in-out infinite;
}

@keyframes qcr1-gradShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}


/* Subhead */
.qcr1-sub {
    font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(15.5px, 1.55vw, 18.5px);
    line-height: 1.6;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    max-width: 540px;
    margin: 0 0 clamp(36px, 4.4vw, 52px);
    letter-spacing: -0.005em;
    font-weight: 400;
}

.qcr1.qcr1-on .qcr1-sub {
    animation: qcr1-revealUp-md .75s var(--qcr-ease-out) 820ms both;
}

.qcr1-sub-em {
    color: var(--qcr-ink, #ffffff);
    font-weight: 600;
    display: inline;
}


/* CTAs */
.qcr1-actions {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.qcr1.qcr1-on .qcr1-actions {
    animation: qcr1-revealUp-md .75s var(--qcr-ease-out) 1000ms both;
}

.qcr1-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.005em;
    text-decoration: none;
    cursor: pointer;
    transition: transform .35s var(--qcr-ease-out), box-shadow .35s ease, background .3s ease, border-color .3s ease;
    border: 1px solid transparent;
}

/* Primary — gradient button */
.qcr1-btn--primary {
    background: linear-gradient(135deg, var(--qcr-in, #6366f1) 0%, var(--qcr-vi, #7c3aed) 100%);
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.18), 0 8px 24px -6px rgba(99, 102, 241, 0.55);
}

    .qcr1-btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.18), 0 14px 32px -6px rgba(99, 102, 241, 0.70);
    }

    .qcr1-btn--primary svg {
        transition: transform .35s var(--qcr-ease-out);
    }

    .qcr1-btn--primary:hover svg {
        transform: translateY(2px);
    }


/* Ghost — outlined button */
.qcr1-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .qcr1-btn--ghost:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(192, 132, 252, 0.45);
        color: var(--qcr-ink, #ffffff);
    }

    .qcr1-btn--ghost svg {
        transition: transform .35s var(--qcr-ease-out);
    }

    .qcr1-btn--ghost:hover svg {
        transform: translateY(2px);
    }


/* Quiet markers row */
.qcr1-markers {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 1.4vw, 16px);
}

.qcr1.qcr1-on .qcr1-markers {
    animation: qcr1-revealUp-sm .7s var(--qcr-ease-out) 1200ms both;
}

.qcr1-marker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    white-space: nowrap;
}

.qcr1-marker-icon {
    display: inline-flex;
    align-items: center;
    color: var(--qcr-vi-3, #c084fc);
    flex-shrink: 0;
}

.qcr1-marker-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}


/* =========================================================================
   RIGHT — Hero photo
   ========================================================================= */
.qcr1-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    isolation: isolate;
}

.qcr1.qcr1-on .qcr1-photo {
    animation: qcr1-fadeInRight 1.1s var(--qcr-ease-out) 600ms both;
}


/* Glow halo behind photo */
.qcr1-photo-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(168, 85, 247, 0.30) 0%, rgba(99, 102, 241, 0.20) 40%, transparent 75%);
    filter: blur(40px);
    z-index: -2;
    animation: qcr1-photoGlow 6s ease-in-out infinite;
}

@keyframes qcr1-photoGlow {
    0%, 100% {
        opacity: 0.65;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}


/* Decorative back frames (offset behind main photo) */
.qcr1-photo-frame {
    position: absolute;
    border-radius: 22px;
    pointer-events: none;
    z-index: -1;
}

.qcr1-photo-frame--1 {
    inset: -16px -16px auto auto;
    width: 70%;
    height: 60%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(168, 85, 247, 0.10));
    border: 1px solid rgba(192, 132, 252, 0.30);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.qcr1-photo-frame--2 {
    inset: auto auto -18px -18px;
    width: 60%;
    height: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.20), rgba(124, 58, 237, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* Main photo stage */
.qcr1-photo-stage {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 30px 80px -20px rgba(7, 8, 10, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.qcr1-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Make AI-generated image feel more "real" — slight desaturation, brightness adj, film grain via filter */
    filter: brightness(0.88) contrast(1.06) saturate(0.85) hue-rotate(-3deg);
    transition: transform 1.2s var(--qcr-ease-out), filter .6s ease;
}

.qcr1-photo:hover .qcr1-photo-img {
    transform: scale(1.03);
    filter: brightness(0.95) contrast(1.08) saturate(0.9) hue-rotate(-3deg);
}


/* Color tint overlay (cool violet wash to blend with theme) */
.qcr1-photo-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.18) 0%, transparent 35%, rgba(15, 18, 38, 0.30) 100%);
    pointer-events: none;
    mix-blend-mode: soft-light;
}


/* Vignette */
.qcr1-photo-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 50%, rgba(7, 8, 10, 0.50) 100%);
    pointer-events: none;
}


/* Subtle film grain to disguise AI smoothness */
.qcr1-photo-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
    background-size: 180px 180px;
}


/* Floating caption tag */
.qcr1-photo-tag {
    position: absolute;
    bottom: clamp(14px, 2vw, 22px);
    left: clamp(14px, 2vw, 22px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    background: rgba(7, 8, 10, 0.78);
    border: 1px solid rgba(192, 132, 252, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.qcr1.qcr1-on .qcr1-photo-tag {
    animation: qcr1-fadeInScale 1s var(--qcr-ease-out) 1500ms both;
}

.qcr1-photo-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    box-shadow: 0 0 0 2px rgba(192, 132, 252, 0.20), 0 0 10px rgba(192, 132, 252, 0.65);
    flex-shrink: 0;
    animation: qcr1-tagPulse 3s ease-in-out infinite;
}

@keyframes qcr1-tagPulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(192, 132, 252, 0.20), 0 0 10px rgba(192, 132, 252, 0.65);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(192, 132, 252, 0.06), 0 0 16px rgba(192, 132, 252, 0.85);
    }
}

.qcr1-photo-tag-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.qcr1-photo-tag-line-1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--qcr-vi-3, #c084fc);
}

.qcr1-photo-tag-line-2 {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.005em;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    margin-top: 2px;
}


/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
    .qcr1-wrap {
        grid-template-columns: 1fr;
        gap: clamp(40px, 6vw, 56px);
    }

    .qcr1-photo {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .qcr1-h1 {
        font-size: clamp(38px, 8vw, 64px);
    }
}

@media (max-width: 640px) {
    .qcr1 {
        padding: clamp(70px, 14vw, 100px) 0 clamp(48px, 8vw, 70px);
        min-height: auto;
    }

    .qcr1-h1 {
        font-size: clamp(34px, 10vw, 50px);
        line-height: 1.0;
    }

    .qcr1-eyebrow {
        font-size: 11px;
        letter-spacing: 0.04em;
    }

    .qcr1-eyebrow-count {
        display: none;
    }

    .qcr1-actions {
        gap: 10px;
    }

    .qcr1-btn {
        padding: 12px 18px;
        font-size: 13.5px;
    }

    .qcr1-marker-sep {
        display: none;
    }

    .qcr1-photo-frame--1, .qcr1-photo-frame--2 {
        display: none;
    }

    .qcr1-photo-tag {
        padding: 8px 12px 8px 10px;
    }

    .qcr1-photo-tag-line-1 {
        font-size: 10px;
    }

    .qcr1-photo-tag-line-2 {
        font-size: 9.5px;
    }
}

@media (max-width: 420px) {
    .qcr1-h1 {
        font-size: clamp(30px, 12vw, 42px);
    }

    .qcr1-sub {
        font-size: 14.5px;
    }

    .qcr1-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .qcr1-btn {
        justify-content: center;
    }
}


/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .qcr1-bg-aurora,
    .qcr1-bg-grid,
    .qcr1-particle,
    .qcr1-eyebrow,
    .qcr1-h1-line,
    .qcr1-sub,
    .qcr1-actions,
    .qcr1-markers,
    .qcr1-photo,
    .qcr1-photo-glow,
    .qcr1-photo-tag,
    .qcr1-eyebrow-dot,
    .qcr1-h1-line--em,
    .qcr1-photo-tag-dot {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .qcr1-bg-aurora {
        opacity: 0.85 !important;
    }

    .qcr1-particle {
        opacity: 0.85 !important;
    }

    .qcr1-photo:hover .qcr1-photo-img {
        transform: none;
    }
}








































/* =========================================================================
   sec2 css — CAREERS · SECTION 2 (qcr2) — WHY WORK AT QLYNIC
   — 4 belief cards in a 2x2 grid (4-col on wide screens)
   — Each card: numbered marker, icon, title, body, accent meta
   — Closing pullquote
   ========================================================================= */

.qcr2 {
    position: relative;
    background: var(--qcr-bg-1, #07080a);
    color: var(--qcr-ink, #ffffff);
    padding: clamp(80px, 11vw, 160px) 0;
    overflow: hidden;
    isolation: isolate;
}

    .qcr2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, rgba(13, 15, 26, 0.4) 0%, transparent 100%);
        z-index: 0;
        pointer-events: none;
    }


.qcr2-bg-aurora {
    position: absolute;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 45% at 18% 22%, rgba(99, 102, 241, 0.18) 0%, transparent 60%), radial-gradient(ellipse 60% 45% at 82% 78%, rgba(168, 85, 247, 0.18) 0%, transparent 60%);
    filter: blur(50px);
    opacity: 0.85;
}

.qcr2-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1.4px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%);
}


.qcr2-wrap {
    position: relative;
    z-index: 2;
    max-width: var(--qcr-page-max, 1280px);
    margin: 0 auto;
    padding: 0 var(--qcr-page-pad, clamp(20px, 4vw, 56px));
}


/* Reveal keyframes */
@keyframes qcr2-revealUp-sm {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr2-revealUp-md {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr2-revealUp-lg {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================================
   HEADER
   ========================================================================= */
.qcr2-head {
    max-width: 760px;
    margin: 0 auto clamp(56px, 7vw, 84px);
    text-align: center;
}

.qcr2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(20px, 2.6vw, 32px);
}

.qcr2.qcr2-on .qcr2-eyebrow {
    animation: qcr2-revealUp-sm .65s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 80ms both;
}

.qcr2-eyebrow-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--qcr-vi-3, #c084fc);
    font-variant-numeric: tabular-nums;
}

.qcr2-eyebrow-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--qcr-vi-3, #c084fc), transparent);
    flex-shrink: 0;
}

.qcr2-eyebrow-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
}


.qcr2-h2 {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(28px, 4.4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.030em;
    color: var(--qcr-ink, #ffffff);
    margin: 0 auto clamp(16px, 2vw, 24px);
    max-width: 720px;
}

.qcr2.qcr2-on .qcr2-h2 {
    animation: qcr2-revealUp-md .8s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 220ms both;
}

.qcr2-h2-em {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}


.qcr2-sub {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.6;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    margin: 0 auto;
    letter-spacing: -0.005em;
    font-weight: 400;
    max-width: 580px;
}

.qcr2.qcr2-on .qcr2-sub {
    animation: qcr2-revealUp-md .75s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 380ms both;
}


/* =========================================================================
   THE 4 BELIEFS
   ========================================================================= */
.qcr2-beliefs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 1.8vw, 24px);
    margin-bottom: clamp(70px, 9vw, 110px);
}


.qcr2-belief {
    --accent: #6366f1;
    --accent-2: #818cf8;
    --accent-soft: rgba(99, 102, 241, 0.16);
    --accent-shadow: rgba(99, 102, 241, 0.30);
    position: relative;
    padding: clamp(24px, 2.6vw, 32px);
    background: linear-gradient(180deg, rgba(20, 23, 50, 0.55) 0%, rgba(13, 15, 32, 0.45) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    overflow: hidden;
    isolation: isolate;
    transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1), border-color .35s ease, box-shadow .42s ease, background .35s ease;
    display: flex;
    flex-direction: column;
}

.qcr2.qcr2-on .qcr2-belief {
    animation: qcr2-revealUp-lg .7s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) calc(560ms + var(--bi, 0) * 110ms) both;
}

.qcr2-belief:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
    box-shadow: 0 12px 32px -8px rgba(7, 8, 10, 0.6), 0 24px 60px -12px var(--accent-shadow);
    background: linear-gradient(180deg, rgba(28, 32, 65, 0.72) 0%, rgba(15, 18, 38, 0.55) 100%);
}


/* Per-belief accents */
.qcr2-belief--users {
    --accent: #ef4444;
    --accent-2: #f87171;
    --accent-soft: rgba(239, 68, 68, 0.18);
    --accent-shadow: rgba(239, 68, 68, 0.32);
}

.qcr2-belief--ship {
    --accent: #f59e0b;
    --accent-2: #fbbf24;
    --accent-soft: rgba(245, 158, 11, 0.18);
    --accent-shadow: rgba(245, 158, 11, 0.32);
}

.qcr2-belief--ai {
    --accent: #8b5cf6;
    --accent-2: #a855f7;
    --accent-soft: rgba(139, 92, 246, 0.20);
    --accent-shadow: rgba(168, 85, 247, 0.34);
}

.qcr2-belief--team {
    --accent: #10b981;
    --accent-2: #34d399;
    --accent-shadow: rgba(16, 185, 129, 0.30);
    --accent-soft: rgba(16, 185, 129, 0.18);
}


/* Aurora wash */
.qcr2-belief-aurora {
    position: absolute;
    inset: -10%;
    z-index: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 0%, var(--accent-soft) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0.7;
    transition: opacity .35s ease;
}

.qcr2-belief:hover .qcr2-belief-aurora {
    opacity: 1;
}


/* Top-right corner accent */
.qcr2-belief-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%) right top / 1px 100% no-repeat, linear-gradient(90deg, transparent 0%, var(--accent) 100%) right top / 100% 1px no-repeat;
    opacity: 0.5;
    transition: opacity .35s ease;
}

.qcr2-belief:hover .qcr2-belief-corner {
    opacity: 1;
}

.qcr2-belief > *:not(.qcr2-belief-aurora):not(.qcr2-belief-corner) {
    position: relative;
    z-index: 1;
}


/* Top row: number + icon */
.qcr2-belief-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: clamp(20px, 2.4vw, 28px);
}

.qcr2-belief-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-variant-numeric: tabular-nums;
    filter: drop-shadow(0 0 12px var(--accent-shadow));
}


.qcr2-belief-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.16), 0 6px 16px -4px var(--accent-shadow);
    position: relative;
}

    .qcr2-belief-icon::before {
        content: '';
        position: absolute;
        top: 1px;
        left: 1px;
        right: 1px;
        height: 38%;
        border-radius: 10px 10px 0 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, transparent 100%);
        pointer-events: none;
    }

    .qcr2-belief-icon svg {
        position: relative;
        z-index: 1;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
    }


/* Title */
.qcr2-belief-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(18px, 1.7vw, 21px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.020em;
    color: var(--qcr-ink, #ffffff);
    margin: 0 0 12px;
    transition: color .35s ease;
}

.qcr2-belief:hover .qcr2-belief-title {
    color: var(--accent-2);
}


/* Body */
.qcr2-belief-body {
    font-family: 'Outfit', sans-serif;
    font-size: 13.75px;
    line-height: 1.6;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    margin: 0 0 clamp(20px, 2.4vw, 28px);
    letter-spacing: -0.005em;
    font-weight: 400;
    flex: 1 1 auto;
}

.qcr2-belief-em {
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
    font-weight: 600;
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    padding-bottom: 1px;
}


/* Meta footer */
.qcr2-belief-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: clamp(14px, 1.8vw, 20px);
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--accent-2);
}

.qcr2-belief-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04), 0 0 8px var(--accent-shadow);
    flex-shrink: 0;
    animation: qcr2-metaPulse 3s ease-in-out infinite;
}

.qcr2-belief:nth-of-type(2) .qcr2-belief-meta-dot {
    animation-delay: -0.7s;
}

.qcr2-belief:nth-of-type(3) .qcr2-belief-meta-dot {
    animation-delay: -1.4s;
}

.qcr2-belief:nth-of-type(4) .qcr2-belief-meta-dot {
    animation-delay: -2.1s;
}

@keyframes qcr2-metaPulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04), 0 0 8px var(--accent-shadow);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.02), 0 0 14px var(--accent-shadow);
    }
}


/* =========================================================================
   CLOSING PULLQUOTE
   ========================================================================= */
.qcr2-pullquote {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(36px, 4.5vw, 60px) clamp(28px, 4vw, 60px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.qcr2.qcr2-on .qcr2-pullquote {
    animation: qcr2-revealUp-lg .9s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 1100ms both;
}

.qcr2-pullquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(168, 85, 247, 0.12) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: qcr2-quoteGlow 8s ease-in-out infinite;
}

@keyframes qcr2-quoteGlow {
    0%, 100% {
        opacity: 0.65;
    }

    50% {
        opacity: 1;
    }
}

.qcr2-pullquote > * {
    position: relative;
    z-index: 1;
}

.qcr2-pullquote-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--qcr-vi-3, #c084fc);
    opacity: 0.55;
    filter: drop-shadow(0 0 14px rgba(192, 132, 252, 0.55));
}

.qcr2-pullquote-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(19px, 2.4vw, 28px);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.024em;
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
    margin: 0 auto;
    max-width: 740px;
}

.qcr2-pullquote-em {
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}


/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
    .qcr2-beliefs {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .qcr2-beliefs {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .qcr2-h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .qcr2-pullquote {
        padding: 32px 24px;
    }

    .qcr2-pullquote-text {
        font-size: clamp(17px, 5vw, 22px);
    }

    .qcr2-belief-num {
        font-size: 30px;
    }
}


/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .qcr2.qcr2-on .qcr2-eyebrow,
    .qcr2.qcr2-on .qcr2-h2,
    .qcr2.qcr2-on .qcr2-sub,
    .qcr2.qcr2-on .qcr2-belief,
    .qcr2.qcr2-on .qcr2-pullquote {
        animation: none !important;
    }

    .qcr2-pullquote::before,
    .qcr2-belief-meta-dot {
        animation: none !important;
    }
}


































/* =========================================================================
   sec3 css — CAREERS · SECTION 3 (qcr3) — OPEN ROLES
   — 3 expandable accordion cards (click header to expand body)
   — Each card: title, salary/location/type, summary, two-col detail, stack chips, apply CTA
   — "Don't see your role?" footer card for open applications
   ========================================================================= */

.qcr3 {
    position: relative;
    background: var(--qcr-bg-1, #07080a);
    color: var(--qcr-ink, #ffffff);
    padding: clamp(80px, 11vw, 160px) 0;
    overflow: hidden;
    isolation: isolate;
}

    .qcr3::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, rgba(13, 15, 26, 0.3) 0%, transparent 100%);
        z-index: 0;
        pointer-events: none;
    }


.qcr3-bg-aurora {
    position: absolute;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 45% at 18% 22%, rgba(99, 102, 241, 0.16) 0%, transparent 60%), radial-gradient(ellipse 60% 45% at 82% 78%, rgba(168, 85, 247, 0.16) 0%, transparent 60%);
    filter: blur(50px);
    opacity: 0.85;
}

.qcr3-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1.4px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%);
}


.qcr3-wrap {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--qcr-page-pad, clamp(20px, 4vw, 56px));
}


/* Reveal keyframes */
@keyframes qcr3-revealUp-sm {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr3-revealUp-md {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr3-revealUp-lg {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================================
   HEADER
   ========================================================================= */
.qcr3-head {
    max-width: 760px;
    margin: 0 auto clamp(48px, 6vw, 72px);
    text-align: center;
}

.qcr3-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(20px, 2.6vw, 32px);
}

.qcr3.qcr3-on .qcr3-eyebrow {
    animation: qcr3-revealUp-sm .65s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 80ms both;
}

.qcr3-eyebrow-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--qcr-vi-3, #c084fc);
    font-variant-numeric: tabular-nums;
}

.qcr3-eyebrow-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--qcr-vi-3, #c084fc), transparent);
    flex-shrink: 0;
}

.qcr3-eyebrow-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
}


.qcr3-h2 {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(28px, 4.4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.030em;
    color: var(--qcr-ink, #ffffff);
    margin: 0 auto clamp(16px, 2vw, 24px);
    max-width: 720px;
}

.qcr3.qcr3-on .qcr3-h2 {
    animation: qcr3-revealUp-md .8s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 220ms both;
}

.qcr3-h2-em {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}


.qcr3-sub {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.6;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    margin: 0 auto;
    letter-spacing: -0.005em;
    font-weight: 400;
    max-width: 580px;
}

.qcr3.qcr3-on .qcr3-sub {
    animation: qcr3-revealUp-md .75s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 380ms both;
}


/* =========================================================================
   THE 3 ROLE CARDS
   ========================================================================= */
.qcr3-roles {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.8vw, 22px);
    margin-bottom: clamp(36px, 4.5vw, 56px);
}


.qcr3-role {
    --accent: #6366f1;
    --accent-2: #818cf8;
    --accent-shadow: rgba(99, 102, 241, 0.32);
    position: relative;
    background: linear-gradient(180deg, rgba(20, 23, 50, 0.55) 0%, rgba(13, 15, 32, 0.45) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    overflow: hidden;
    isolation: isolate;
    transition: border-color .35s ease, background .35s ease, box-shadow .42s ease;
}

.qcr3.qcr3-on .qcr3-role {
    animation: qcr3-revealUp-lg .7s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) calc(540ms + var(--ri, 0) * 130ms) both;
}

.qcr3-role:hover {
    border-color: color-mix(in srgb, var(--accent) 32%, transparent);
}

.qcr3-role--open {
    border-color: color-mix(in srgb, var(--accent) 42%, transparent);
    box-shadow: 0 12px 32px -8px rgba(7, 8, 10, 0.5), 0 24px 60px -12px var(--accent-shadow);
    background: linear-gradient(180deg, rgba(28, 32, 65, 0.72) 0%, rgba(15, 18, 38, 0.55) 100%);
}


/* Per-role accents */
.qcr3-role--engineer {
    --accent: #6366f1;
    --accent-2: #818cf8;
    --accent-shadow: rgba(99, 102, 241, 0.34);
}

.qcr3-role--growth {
    --accent: #ec4899;
    --accent-2: #f472b6;
    --accent-shadow: rgba(236, 72, 153, 0.34);
}

.qcr3-role--ops {
    --accent: #f59e0b;
    --accent-2: #fbbf24;
    --accent-shadow: rgba(245, 158, 11, 0.34);
}


/* Aurora wash */
.qcr3-role-aurora {
    position: absolute;
    inset: -10%;
    z-index: 0;
    background: radial-gradient(ellipse 70% 50% at 0% 0%, color-mix(in srgb, var(--accent) 18%, transparent) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.55;
    transition: opacity .35s ease;
}

.qcr3-role:hover .qcr3-role-aurora,
.qcr3-role--open .qcr3-role-aurora {
    opacity: 1;
}


.qcr3-role > *:not(.qcr3-role-aurora) {
    position: relative;
    z-index: 1;
}


/* =========================================================================
   ROLE HEADER (always visible, click to toggle)
   ========================================================================= */
.qcr3-role-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: clamp(24px, 2.8vw, 32px) clamp(24px, 2.8vw, 36px);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: inherit;
    font: inherit;
    transition: background .25s ease;
}

    .qcr3-role-header:hover {
        background: rgba(255, 255, 255, 0.02);
    }

    .qcr3-role-header:focus-visible {
        outline: 2px solid var(--accent-2);
        outline-offset: -2px;
    }


.qcr3-role-header-left {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* Role-type pill (Engineering, Growth, Operations) */
.qcr3-role-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 10px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-2);
    width: fit-content;
}

.qcr3-role-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 18%, transparent), 0 0 8px var(--accent-shadow);
    flex-shrink: 0;
    animation: qcr3-pillPulse 2.6s ease-in-out infinite;
}

.qcr3-role:nth-of-type(2) .qcr3-role-pill-dot {
    animation-delay: -0.8s;
}

.qcr3-role:nth-of-type(3) .qcr3-role-pill-dot {
    animation-delay: -1.6s;
}

@keyframes qcr3-pillPulse {
    0%, 100% {
        box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 18%, transparent), 0 0 8px var(--accent-shadow);
    }

    50% {
        box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 4%, transparent), 0 0 14px var(--accent-shadow);
    }
}


/* Role title */
.qcr3-role-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.022em;
    color: var(--qcr-ink, #ffffff);
    margin: 0;
    transition: color .35s ease;
}

.qcr3-role:hover .qcr3-role-title,
.qcr3-role--open .qcr3-role-title {
    color: var(--accent-2);
}


/* Meta row (salary · location · type) */
.qcr3-role-meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 4px;
}

.qcr3-role-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    letter-spacing: -0.005em;
    white-space: nowrap;
}

.qcr3-role-meta-icon {
    display: inline-flex;
    align-items: center;
    color: var(--qcr-ink-4, rgba(255, 255, 255, 0.42));
    flex-shrink: 0;
}

.qcr3-role-meta-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}


/* Toggle chevron */
.qcr3-role-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    flex-shrink: 0;
    transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1), background .3s ease, border-color .3s ease, color .3s ease;
}

.qcr3-role-header:hover .qcr3-role-toggle {
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    border-color: color-mix(in srgb, var(--accent) 35%, transparent);
    color: var(--accent-2);
}

.qcr3-role--open .qcr3-role-toggle {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
    color: white;
    box-shadow: 0 6px 16px -4px var(--accent-shadow);
}


/* =========================================================================
   ROLE BODY (expandable)
   ========================================================================= */
.qcr3-role-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .55s cubic-bezier(0.22, 1, 0.36, 1);
}

.qcr3-role-body-inner {
    padding: 0 clamp(24px, 2.8vw, 36px) clamp(28px, 3vw, 36px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4px;
    padding-top: clamp(22px, 2.5vw, 30px);
}


/* Role summary */
.qcr3-role-summary {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(14.5px, 1.45vw, 16.5px);
    line-height: 1.65;
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
    margin: 0 0 clamp(24px, 3vw, 36px);
    letter-spacing: -0.005em;
    font-weight: 400;
    max-width: 760px;
}


/* Two-column detail layout */
.qcr3-role-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 40px);
    margin-bottom: clamp(28px, 3.4vw, 40px);
}

.qcr3-role-col {
    min-width: 0;
}

.qcr3-role-col-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin: 0 0 16px;
}

.qcr3-role-col-bullet {
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
}


/* Role list */
.qcr3-role-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .qcr3-role-list li {
        position: relative;
        padding-left: 18px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        line-height: 1.55;
        color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
        letter-spacing: -0.005em;
    }

        .qcr3-role-list li::before {
            content: '';
            position: absolute;
            top: 9px;
            left: 0;
            width: 8px;
            height: 1.5px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: 2px;
        }

        .qcr3-role-list li strong {
            color: var(--qcr-ink, #ffffff);
            font-weight: 700;
        }


/* Stack chips */
.qcr3-role-stack {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: clamp(24px, 3vw, 32px);
    padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2vw, 20px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.qcr3-role-stack-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--qcr-ink-4, rgba(255, 255, 255, 0.42));
    margin-right: 4px;
}

.qcr3-role-stack-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
    transition: all .25s ease;
}

    .qcr3-role-stack-chip:hover {
        background: color-mix(in srgb, var(--accent) 14%, transparent);
        border-color: color-mix(in srgb, var(--accent) 38%, transparent);
        color: var(--accent-2);
    }


/* Apply CTA */
.qcr3-role-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px 13px 22px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.005em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.16), 0 8px 22px -4px var(--accent-shadow);
    transition: transform .35s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow .35s ease;
}

    .qcr3-role-cta:hover {
        transform: translateY(-2px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.16), 0 14px 32px -4px var(--accent-shadow);
    }

.qcr3-role-cta-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform .35s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.qcr3-role-cta:hover .qcr3-role-cta-arrow {
    transform: translateY(2px);
}


/* =========================================================================
   "DON'T SEE YOUR ROLE?" FOOTER
   ========================================================================= */
.qcr3-other {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.4vw, 28px);
    padding: clamp(24px, 3vw, 36px);
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
    border: 1px dashed rgba(192, 132, 252, 0.30);
    border-radius: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.qcr3.qcr3-on .qcr3-other {
    animation: qcr3-revealUp-md .8s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 1100ms both;
}

.qcr3-other-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(192, 132, 252, 0.10);
    border: 1px solid rgba(192, 132, 252, 0.30);
    color: var(--qcr-vi-3, #c084fc);
    flex-shrink: 0;
}

.qcr3-other-text {
    flex: 1 1 auto;
    min-width: 0;
}

.qcr3-other-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.018em;
    color: var(--qcr-ink, #ffffff);
    margin: 0 0 4px;
}

.qcr3-other-body {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    margin: 0;
    letter-spacing: -0.005em;
    font-weight: 400;
}

.qcr3-other-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 132, 252, 0.30);
    border-radius: 100px;
    color: var(--qcr-vi-3, #c084fc);
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.005em;
    flex-shrink: 0;
    transition: all .3s ease;
    white-space: nowrap;
}

    .qcr3-other-cta:hover {
        background: rgba(192, 132, 252, 0.12);
        border-color: rgba(192, 132, 252, 0.55);
        transform: translateX(2px);
        color: #d8b4fe;
    }

    .qcr3-other-cta svg {
        transition: transform .3s ease;
    }

    .qcr3-other-cta:hover svg {
        transform: translateX(2px);
    }


/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 760px) {
    .qcr3-role-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }

    .qcr3-role-toggle {
        align-self: flex-end;
        margin-top: -12px;
    }

    .qcr3-role-cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .qcr3-other {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .qcr3-other-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 540px) {
    .qcr3-role-meta-sep {
        display: none;
    }

    .qcr3-h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .qcr3-role-title {
        font-size: 18px;
    }
}


/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .qcr3.qcr3-on .qcr3-eyebrow,
    .qcr3.qcr3-on .qcr3-h2,
    .qcr3.qcr3-on .qcr3-sub,
    .qcr3.qcr3-on .qcr3-role,
    .qcr3.qcr3-on .qcr3-other {
        animation: none !important;
    }

    .qcr3-role-pill-dot {
        animation: none !important;
    }

    .qcr3-role-toggle {
        transition: none !important;
    }

    .qcr3-role-body {
        transition: none !important;
    }
}




























































/* =========================================================================
   sec4 css — CAREERS · SECTION 4 (qcr4) · v2 — APPLE-GRADE
   Architectural rules:
   1. State is read from PARENT data-state attributes — never from inline style or hidden attrs
   2. All state changes are crossfades (200-280ms) with spring easing
   3. Child elements default to display:none and only render when parent state matches
   4. No display:flex/grid leaks across states — bug from v1 cannot recur
   ========================================================================= */

/* ──────────────────────────────────────────────────────────────────────
   SECTION SHELL
   ────────────────────────────────────────────────────────────────────── */
.qcr4 {
    position: relative;
    background: var(--qcr-bg-1, #07080a);
    color: var(--qcr-ink, #ffffff);
    padding: clamp(80px, 11vw, 160px) 0;
    overflow: hidden;
    isolation: isolate;
    --qcr4-spring: cubic-bezier(0.32, 0.72, 0, 1);
    --qcr4-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

    .qcr4::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, rgba(13, 15, 26, 0.3) 0%, transparent 100%);
        z-index: 0;
        pointer-events: none;
    }

.qcr4-bg-aurora {
    position: absolute;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 45% at 18% 22%, rgba(99, 102, 241, 0.16) 0%, transparent 60%), radial-gradient(ellipse 60% 45% at 82% 78%, rgba(168, 85, 247, 0.16) 0%, transparent 60%);
    filter: blur(50px);
    opacity: 0.85;
}

.qcr4-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1.4px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%);
}

.qcr4-wrap {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 var(--qcr-page-pad, clamp(20px, 4vw, 56px));
}


/* ──────────────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ────────────────────────────────────────────────────────────────────── */
@keyframes qcr4-revealUp-sm {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr4-revealUp-md {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr4-revealUp-lg {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ──────────────────────────────────────────────────────────────────────
   HEADER
   ────────────────────────────────────────────────────────────────────── */
.qcr4-head {
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 72px);
    text-align: center;
}

.qcr4-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(20px, 2.6vw, 32px);
}

.qcr4.qcr4-on .qcr4-eyebrow {
    animation: qcr4-revealUp-sm .65s var(--qcr4-spring) 80ms both;
}

.qcr4-eyebrow-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--qcr-vi-3, #c084fc);
    font-variant-numeric: tabular-nums;
}

.qcr4-eyebrow-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--qcr-vi-3, #c084fc), transparent);
    flex-shrink: 0;
}

.qcr4-eyebrow-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
}

.qcr4-h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4.4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.030em;
    color: var(--qcr-ink, #ffffff);
    margin: 0 auto clamp(16px, 2vw, 24px);
    max-width: 720px;
}

.qcr4.qcr4-on .qcr4-h2 {
    animation: qcr4-revealUp-md .8s var(--qcr4-spring) 220ms both;
}

.qcr4-h2-em {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.qcr4-sub {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.6;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    margin: 0 auto;
    letter-spacing: -0.005em;
    font-weight: 400;
    max-width: 580px;
}

.qcr4.qcr4-on .qcr4-sub {
    animation: qcr4-revealUp-md .75s var(--qcr4-spring) 380ms both;
}


/* ──────────────────────────────────────────────────────────────────────
   FORM CARD — top-level state machine via data-view
   data-view="form" → form visible, status hidden
   data-view="success" → form hidden, success card visible
   data-view="error"   → form hidden, error card visible
   ────────────────────────────────────────────────────────────────────── */
.qcr4-card {
    position: relative;
    padding: clamp(28px, 3.5vw, 48px);
    margin-top: 15px;
    background: linear-gradient(180deg, rgba(20, 23, 50, 0.55) 0%, rgba(13, 15, 32, 0.45) 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 30px 80px -20px rgba(7, 8, 10, 0.7), 0 0 60px rgba(99, 102, 241, 0.08);
}

.qcr4.qcr4-on .qcr4-card {
    animation: qcr4-revealUp-lg .9s var(--qcr4-spring) 540ms both;
}

.qcr4-card-aurora {
    position: absolute;
    inset: -10%;
    z-index: 0;
    background: radial-gradient(ellipse 70% 50% at 0% 0%, rgba(99, 102, 241, 0.18) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.7;
    animation: qcr4-cardAurora 14s ease-in-out infinite;
}

@keyframes qcr4-cardAurora {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -10px) scale(1.06);
    }
}

.qcr4-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(192, 132, 252, 0.45) 0%, transparent 100%) right top / 1px 100% no-repeat, linear-gradient(90deg, transparent 0%, rgba(192, 132, 252, 0.45) 100%) right top / 100% 1px no-repeat;
    opacity: 0.55;
}

.qcr4-card > *:not(.qcr4-card-aurora):not(.qcr4-card-corner) {
    position: relative;
    z-index: 1;
}

/* ── Card view state machine ── */
.qcr4-form,
.qcr4-status {
    transition: opacity .28s var(--qcr4-ease);
}

/* Default: form visible, statuses hidden */
.qcr4-card[data-view="form"] .qcr4-form {
    display: grid;
    opacity: 1;
}

.qcr4-card[data-view="form"] .qcr4-status {
    display: none;
    opacity: 0;
}

.qcr4-card[data-view="success"] .qcr4-form {
    display: none;
    opacity: 0;
}

.qcr4-card[data-view="success"] .qcr4-status--success {
    display: flex;
    opacity: 1;
    animation: qcr4-statusEnter .55s var(--qcr4-spring) both;
}

.qcr4-card[data-view="success"] .qcr4-status--error {
    display: none;
    opacity: 0;
}

.qcr4-card[data-view="error"] .qcr4-form {
    display: none;
    opacity: 0;
}

.qcr4-card[data-view="error"] .qcr4-status--success {
    display: none;
    opacity: 0;
}

.qcr4-card[data-view="error"] .qcr4-status--error {
    display: flex;
    opacity: 1;
    animation: qcr4-statusEnter .55s var(--qcr4-spring) both;
}

@keyframes qcr4-statusEnter {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ──────────────────────────────────────────────────────────────────────
   FORM GRID
   ────────────────────────────────────────────────────────────────────── */
.qcr4-form {
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 2.2vw, 24px);
}

.qcr4-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.qcr4-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.qcr4-field--full {
    grid-column: 1 / -1;
}

/* Stagger reveal on each field when section enters viewport */
.qcr4.qcr4-on .qcr4-field {
    animation: qcr4-revealUp-sm .55s var(--qcr4-spring) calc(720ms + var(--fi, 0) * 60ms) both;
}


/* ── Label ── */
.qcr4-label {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.005em;
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
}

.qcr4-label-text {
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
}

.qcr4-label-req {
    color: #f87171;
    font-weight: 800;
}

.qcr4-label-opt {
    font-size: 11px;
    font-weight: 600;
    color: var(--qcr-ink-4, rgba(255, 255, 255, 0.42));
    text-transform: lowercase;
    letter-spacing: 0.01em;
}

.qcr4-label-hint {
    font-size: 11px;
    font-weight: 500;
    color: var(--qcr-ink-4, rgba(255, 255, 255, 0.42));
    margin-left: 4px;
}


/* ── Inputs (text / email / tel / url / select / textarea) ── */
.qcr4-input,
.qcr4-textarea,
.qcr4-select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--qcr-ink, #ffffff);
    letter-spacing: -0.005em;
    transition: border-color .25s var(--qcr4-ease), background .25s var(--qcr4-ease), box-shadow .3s var(--qcr4-ease);
    outline: none;
}

    .qcr4-input::placeholder,
    .qcr4-textarea::placeholder {
        color: var(--qcr-ink-5, rgba(255, 255, 255, 0.22));
    }

    .qcr4-input:hover,
    .qcr4-textarea:hover,
    .qcr4-select:hover {
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.04);
    }

    .qcr4-input:focus,
    .qcr4-textarea:focus,
    .qcr4-select:focus {
        border-color: var(--qcr-vi-3, #c084fc);
        background: rgba(192, 132, 252, 0.04);
        box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.10);
    }

    .qcr4-input--invalid,
    .qcr4-input.qcr4-input--invalid,
    .qcr4-textarea.qcr4-input--invalid,
    .qcr4-select.qcr4-input--invalid {
        border-color: #f87171;
        background: rgba(248, 113, 113, 0.06);
    }

        .qcr4-input--invalid:focus,
        .qcr4-textarea.qcr4-input--invalid:focus,
        .qcr4-select.qcr4-input--invalid:focus {
            box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.12);
        }


.qcr4-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55;
}

.qcr4-textarea-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: -2px;
}

.qcr4-textarea-counter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--qcr-ink-4, rgba(255, 255, 255, 0.42));
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}


/* Select with custom arrow */
.qcr4-select-wrap {
    position: relative;
}

.qcr4-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    cursor: pointer;
    background-image: none;
}

    .qcr4-select option {
        background: #0d0f1a;
        color: var(--qcr-ink, #ffffff);
        padding: 8px;
    }

.qcr4-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    pointer-events: none;
    display: flex;
    transition: transform .25s var(--qcr4-ease);
}

.qcr4-select:focus + .qcr4-select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--qcr-vi-3, #c084fc);
}


/* ── Error message (slides down) ── */
.qcr4-error {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    font-size: 12.5px;
    font-weight: 600;
    color: #f87171;
    letter-spacing: -0.005em;
    transition: max-height .28s var(--qcr4-ease), opacity .2s var(--qcr4-ease);
}

.qcr4-error--visible {
    max-height: 50px;
    opacity: 1;
    margin-top: -2px;
}


/* ──────────────────────────────────────────────────────────────────────
   DROP-ZONE — parent data-state controls everything
   data-state="idle"      → show idle, hide selected, hide uploading
   data-state="selected"  → hide idle, show selected, hide uploading
   data-state="uploading" → hide idle, hide selected, show uploading
   ────────────────────────────────────────────────────────────────────── */
.qcr4-drop {
    position: relative;
    padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2.5vw, 32px);
    background: rgba(255, 255, 255, 0.025);
    border: 2px dashed rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    cursor: pointer;
    transition: border-color .3s var(--qcr4-ease), background .3s var(--qcr4-ease), box-shadow .3s var(--qcr4-ease), transform .3s var(--qcr4-spring);
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .qcr4-drop:hover,
    .qcr4-drop:focus-visible {
        border-color: rgba(192, 132, 252, 0.45);
        background: rgba(192, 132, 252, 0.04);
        outline: none;
    }

.qcr4-drop--dragging {
    border-color: var(--qcr-vi-3, #c084fc);
    background: rgba(192, 132, 252, 0.10);
    box-shadow: 0 0 0 6px rgba(192, 132, 252, 0.10);
    transform: scale(1.005);
}

.qcr4-drop[data-state="selected"] {
    border-style: solid;
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 0.05);
    cursor: default;
}

.qcr4-drop[data-state="uploading"] {
    border-style: solid;
    border-color: rgba(192, 132, 252, 0.45);
    background: rgba(192, 132, 252, 0.06);
    cursor: default;
}

.qcr4-drop--invalid {
    border-color: #f87171 !important;
    background: rgba(248, 113, 113, 0.04);
}


/* Hidden native file input — only clickable when idle */
.qcr4-drop-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.qcr4-drop[data-state="selected"] .qcr4-drop-input,
.qcr4-drop[data-state="uploading"] .qcr4-drop-input {
    pointer-events: none;
}


/* ── State containers — DEFAULT HIDDEN ── */
.qcr4-drop-state {
    display: none;
    position: relative;
    z-index: 1;
    width: 100%;
    pointer-events: none;
}

/* Show only the matching state */
.qcr4-drop[data-state="idle"] .qcr4-drop-state--idle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: qcr4-stateEnter .35s var(--qcr4-spring) both;
}

.qcr4-drop[data-state="selected"] .qcr4-drop-state--selected {
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
    animation: qcr4-stateEnter .4s var(--qcr4-spring) both;
}

.qcr4-drop[data-state="uploading"] .qcr4-drop-state--uploading {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: qcr4-stateEnter .35s var(--qcr4-spring) both;
}

@keyframes qcr4-stateEnter {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ── IDLE state ── */
.qcr4-drop-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--qcr-vi-3, #c084fc);
    opacity: 0.85;
    transition: transform .4s var(--qcr4-spring);
}

.qcr4-drop:hover .qcr4-drop-icon {
    transform: translateY(-3px);
}

.qcr4-drop--dragging .qcr4-drop-icon {
    transform: translateY(-6px) scale(1.08);
}

.qcr4-drop-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--qcr-ink, #ffffff);
    margin: 0 0 4px;
    letter-spacing: -0.012em;
}

.qcr4-drop-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    margin: 0;
    letter-spacing: -0.005em;
}

.qcr4-drop-link {
    color: var(--qcr-vi-3, #c084fc);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(192, 132, 252, 0.35);
    text-underline-offset: 3px;
}


/* ── SELECTED state ── */
.qcr4-drop-file-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--qcr-in, #6366f1), var(--qcr-vi, #7c3aed));
    color: white;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 6px 16px -4px rgba(99, 102, 241, 0.40);
}

.qcr4-drop-file-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qcr4-drop-file-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--qcr-ink, #ffffff);
    letter-spacing: -0.012em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qcr4-drop-file-size {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    font-variant-numeric: tabular-nums;
}

.qcr4-drop-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    cursor: pointer;
    flex-shrink: 0;
    transition: all .25s var(--qcr4-ease);
    pointer-events: auto;
}

    .qcr4-drop-remove:hover {
        background: rgba(248, 113, 113, 0.10);
        border-color: rgba(248, 113, 113, 0.40);
        color: #f87171;
        transform: rotate(90deg);
    }


/* ── UPLOADING state ── */
.qcr4-drop-up-spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid rgba(192, 132, 252, 0.18);
    border-top-color: var(--qcr-vi-3, #c084fc);
    flex-shrink: 0;
    animation: qcr4-spin 0.9s linear infinite;
}

@keyframes qcr4-spin {
    to {
        transform: rotate(360deg);
    }
}

.qcr4-drop-up-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.qcr4-drop-up-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.qcr4-drop-up-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--qcr-ink, #ffffff);
    letter-spacing: -0.005em;
}

.qcr4-drop-up-pct {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--qcr-vi-3, #c084fc);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}


/* Progress bar */
.qcr4-progress {
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.qcr4-progress-bar {
    height: 100%;
    width: 0%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--qcr-in, #6366f1) 0%, var(--qcr-vi-3, #c084fc) 50%, var(--qcr-az-3, #60a5fa) 100%);
    background-size: 200% 100%;
    animation: qcr4-barShift 2s ease-in-out infinite;
    transition: width .25s var(--qcr4-ease);
    box-shadow: 0 0 12px rgba(192, 132, 252, 0.45);
}

@keyframes qcr4-barShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.qcr4-progress-shimmer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    animation: qcr4-shimmer 1.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes qcr4-shimmer {
    0% {
        transform: translateX(-60px);
    }

    100% {
        transform: translateX(540px);
    }
}


/* ──────────────────────────────────────────────────────────────────────
   CONSENT CHECKBOX
   ────────────────────────────────────────────────────────────────────── */
.qcr4-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.qcr4-check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.qcr4-check-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    color: white;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all .25s var(--qcr4-spring);
}

    .qcr4-check-box svg {
        opacity: 0;
        transform: scale(0.6);
        transition: opacity .2s var(--qcr4-ease), transform .3s var(--qcr4-spring);
    }

.qcr4-check-input:checked ~ .qcr4-check-box {
    background: linear-gradient(135deg, var(--qcr-in, #6366f1), var(--qcr-vi, #7c3aed));
    border-color: transparent;
    box-shadow: 0 4px 12px -2px rgba(99, 102, 241, 0.55);
}

    .qcr4-check-input:checked ~ .qcr4-check-box svg {
        opacity: 1;
        transform: scale(1);
    }

.qcr4-check-input:focus-visible ~ .qcr4-check-box {
    box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.20);
}

.qcr4-check-text {
    flex: 1 1 auto;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    letter-spacing: -0.005em;
    font-weight: 400;
}

    .qcr4-check-text a {
        color: var(--qcr-vi-3, #c084fc);
        text-decoration: underline;
        text-decoration-color: rgba(192, 132, 252, 0.35);
        text-underline-offset: 2px;
    }


/* ──────────────────────────────────────────────────────────────────────
   SUBMIT — data-state controls visible content
   data-state="idle"    → show .qcr4-submit-content--idle
   data-state="loading" → show .qcr4-submit-content--loading
   ────────────────────────────────────────────────────────────────────── */
.qcr4-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.qcr4-submit {
    position: relative;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--qcr-in, #6366f1) 0%, var(--qcr-vi, #7c3aed) 100%);
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.005em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.16), 0 8px 24px -4px rgba(99, 102, 241, 0.55);
    transition: transform .35s var(--qcr4-spring), box-shadow .35s var(--qcr4-ease), opacity .25s var(--qcr4-ease);
    min-width: 180px;
}

    .qcr4-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.16), 0 14px 32px -4px rgba(99, 102, 241, 0.70);
    }

    .qcr4-submit:disabled {
        cursor: not-allowed;
        opacity: 0.85;
        transform: none;
    }

/* ── Submit content states ── */
.qcr4-submit-content {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.qcr4-submit[data-state="idle"] .qcr4-submit-content--idle {
    display: inline-flex;
    animation: qcr4-stateEnter .25s var(--qcr4-ease) both;
}

.qcr4-submit[data-state="loading"] .qcr4-submit-content--loading {
    display: inline-flex;
    animation: qcr4-stateEnter .25s var(--qcr4-ease) both;
}

.qcr4-submit-content--idle svg {
    transition: transform .35s var(--qcr4-spring);
}

.qcr4-submit:hover:not(:disabled) .qcr4-submit-content--idle svg {
    transform: translateX(3px);
}

.qcr4-submit-spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.30);
    border-top-color: white;
    animation: qcr4-spin 0.7s linear infinite;
    display: inline-block;
    flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────────────────────
   STATUS CARDS (success / error)
   ────────────────────────────────────────────────────────────────────── */
.qcr4-status {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: clamp(12px, 2vw, 20px) 0;
}

.qcr4-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 24px -4px rgba(0, 0, 0, 0.4);
    animation: qcr4-iconPop 0.6s var(--qcr4-spring) .15s both;
}

.qcr4-status-icon--success {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 24px -4px rgba(16, 185, 129, 0.55);
}

.qcr4-status-icon--error {
    background: linear-gradient(135deg, #ef4444, #f87171);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 24px -4px rgba(239, 68, 68, 0.55);
}

@keyframes qcr4-iconPop {
    from {
        opacity: 0;
        transform: scale(0.4) rotate(-30deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.qcr4-status-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.022em;
    color: var(--qcr-ink, #ffffff);
    margin: 0;
}

.qcr4-status-body {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.6;
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
    max-width: 540px;
    margin: 0;
    letter-spacing: -0.005em;
}

    .qcr4-status-body a {
        color: var(--qcr-vi-3, #c084fc);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

.qcr4-status-reset {
    margin-top: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.005em;
    transition: all .25s var(--qcr4-ease);
}

    .qcr4-status-reset:hover {
        background: rgba(192, 132, 252, 0.10);
        border-color: rgba(192, 132, 252, 0.40);
        color: var(--qcr-vi-3, #c084fc);
    }


/* ──────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
    .qcr4-card[data-view="form"] .qcr4-form {
        grid-template-columns: 1fr;
    }

    .qcr4-h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .qcr4-submit-row {
        justify-content: stretch;
    }

    .qcr4-submit {
        width: 100%;
    }

    .qcr4-card {
        padding: clamp(24px, 5vw, 32px);
    }
}


/* ──────────────────────────────────────────────────────────────────────
   REDUCED MOTION
   ────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .qcr4.qcr4-on .qcr4-eyebrow,
    .qcr4.qcr4-on .qcr4-h2,
    .qcr4.qcr4-on .qcr4-sub,
    .qcr4.qcr4-on .qcr4-card,
    .qcr4.qcr4-on .qcr4-field,
    .qcr4-card[data-view] .qcr4-status,
    .qcr4-status-icon,
    .qcr4-drop-state {
        animation: none !important;
    }

    .qcr4-card-aurora,
    .qcr4-progress-bar,
    .qcr4-progress-shimmer,
    .qcr4-drop-up-spinner,
    .qcr4-submit-spinner {
        animation: none !important;
    }
}













/* =========================================================================
   careers.css PATCH for v4 — banner pattern + success action

   APPEND this block to the BOTTOM of ~/Content/careers.css.

   IMPORTANT: If you previously added `> .qcr4-card { margin-top: 15px; }`
   anywhere as a workaround — REMOVE IT. The banner now uses display:none
   when hidden, so the card sits naturally below the header without a gap.
   When the banner IS visible, the adjacent-sibling rule below gives the
   card proper breathing room automatically.

   You can also DELETE any old `.qcr4-status--already*` rules if present —
   no longer used (banner pattern replaces full-screen "already applied").
   ========================================================================= */

/* ─── Banner: hidden by default, only renders when JS sets data-state ─── */
.qcr4-banner {
    display: none;
}

    .qcr4-banner[data-state="visible"] {
        position: relative;
        margin: clamp(28px, 4vw, 40px) auto 0;
        max-width: clamp(720px, 80vw, 920px);
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        align-items: center;
        padding: 16px 20px;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.10) 0%, rgba(124, 58, 237, 0.08) 100%);
        border: 1px solid rgba(124, 58, 237, 0.22);
        border-radius: 14px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        animation: qcr4-banner-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

        /* When banner is visible, give the card breathing room below it */
        .qcr4-banner[data-state="visible"] + .qcr4-card {
            margin-top: 24px;
        }

@keyframes qcr4-banner-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qcr4-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 6px 18px -6px rgba(124, 58, 237, 0.55);
    flex-shrink: 0;
}

.qcr4-banner-body {
    min-width: 0;
}

.qcr4-banner-title {
    margin: 0 0 2px;
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: clamp(14px, 1.05vw, 15px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.96);
}

.qcr4-banner-sub {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(13px, 0.95vw, 14px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.66);
}

.qcr4-banner-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
    flex-shrink: 0;
}

    .qcr4-banner-close:hover {
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.92);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .qcr4-banner-close:focus-visible {
        outline: 2px solid #6366f1;
        outline-offset: 2px;
    }

/* Tablet & mobile — banner adapts */
@media (max-width: 760px) {
    .qcr4-banner[data-state="visible"] {
        padding: 14px 16px;
        gap: 12px;
    }

    .qcr4-banner-icon {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 420px) {
    .qcr4-banner[data-state="visible"] {
        grid-template-columns: 1fr auto;
    }

    .qcr4-banner-icon {
        display: none;
    }
}


/* ─── Success view: "Apply for another role" button ──────────────── */
.qcr4-success-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.42);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.10) 0%, rgba(124, 58, 237, 0.08) 100%);
    color: rgba(255, 255, 255, 0.94);
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

    .qcr4-success-action:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.22) 0%, rgba(124, 58, 237, 0.18) 100%);
        border-color: rgba(99, 102, 241, 0.7);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px -10px rgba(99, 102, 241, 0.65);
    }

    .qcr4-success-action:active {
        transform: translateY(0);
    }

    .qcr4-success-action:focus-visible {
        outline: 2px solid #6366f1;
        outline-offset: 3px;
    }

    .qcr4-success-action svg {
        transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .qcr4-success-action:hover svg {
        transform: translateX(3px);
    }


/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
    .qcr4-banner[data-state="visible"] {
        animation: none;
    }

    .qcr4-success-action,
    .qcr4-success-action svg {
        transition: none;
    }

        .qcr4-success-action:hover {
            transform: none;
        }

            .qcr4-success-action:hover svg {
                transform: none;
            }
}



















































/* =========================================================================
   sec5 css — CAREERS · SECTION 5 (qcr5) — WHAT WE OFFER + CLOSING
   — 6 perk cards in 3-col grid (collapses 2 → 1)
   — Closing manifesto with cinematic backdrop
   — Founder sign-off + Arxeon legal mark
   ========================================================================= */

.qcr5 {
    position: relative;
    background: var(--qcr-bg-1, #07080a);
    color: var(--qcr-ink, #ffffff);
    padding: clamp(80px, 11vw, 160px) 0 clamp(60px, 8vw, 100px);
    overflow: hidden;
    isolation: isolate;
}

    .qcr5::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, rgba(13, 15, 26, 0.3) 0%, transparent 100%);
        z-index: 0;
        pointer-events: none;
    }


.qcr5-bg-aurora {
    position: absolute;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 45% at 18% 22%, rgba(99, 102, 241, 0.18) 0%, transparent 60%), radial-gradient(ellipse 60% 45% at 82% 78%, rgba(168, 85, 247, 0.18) 0%, transparent 60%), radial-gradient(ellipse 70% 50% at 50% 100%, rgba(192, 132, 252, 0.16) 0%, transparent 60%);
    filter: blur(50px);
    opacity: 0.85;
}

.qcr5-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1.4px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%);
}

.qcr5-bg-vignette {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 80% at 50% 60%, transparent 30%, rgba(7, 8, 10, 0.55) 100%);
}


.qcr5-wrap {
    position: relative;
    z-index: 2;
    max-width: var(--qcr-page-max, 1280px);
    margin: 0 auto;
    padding: 0 var(--qcr-page-pad, clamp(20px, 4vw, 56px));
}


/* Reveal keyframes */
@keyframes qcr5-revealUp-sm {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr5-revealUp-md {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qcr5-revealUp-lg {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================================
   HEADER
   ========================================================================= */
.qcr5-head {
    max-width: 760px;
    margin: 0 auto clamp(48px, 6vw, 72px);
    text-align: center;
}

.qcr5-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(20px, 2.6vw, 32px);
}

.qcr5.qcr5-on .qcr5-eyebrow {
    animation: qcr5-revealUp-sm .65s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 80ms both;
}

.qcr5-eyebrow-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--qcr-vi-3, #c084fc);
    font-variant-numeric: tabular-nums;
}

.qcr5-eyebrow-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--qcr-vi-3, #c084fc), transparent);
    flex-shrink: 0;
}

.qcr5-eyebrow-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
}


.qcr5-h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4.4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.030em;
    color: var(--qcr-ink, #ffffff);
    margin: 0 auto clamp(16px, 2vw, 24px);
    max-width: 720px;
}

.qcr5.qcr5-on .qcr5-h2 {
    animation: qcr5-revealUp-md .8s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 220ms both;
}

.qcr5-h2-em {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}


.qcr5-sub {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.6;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    margin: 0 auto;
    letter-spacing: -0.005em;
    font-weight: 400;
    max-width: 580px;
}

.qcr5.qcr5-on .qcr5-sub {
    animation: qcr5-revealUp-md .75s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 380ms both;
}


/* =========================================================================
   THE 6 PERKS
   ========================================================================= */
.qcr5-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 1.8vw, 22px);
    margin-bottom: clamp(72px, 10vw, 120px);
}


.qcr5-perk {
    position: relative;
    padding: clamp(22px, 2.4vw, 28px);
    background: linear-gradient(180deg, rgba(20, 23, 50, 0.55) 0%, rgba(13, 15, 32, 0.45) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    overflow: hidden;
    isolation: isolate;
    transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1), border-color .35s ease, box-shadow .42s ease, background .35s ease;
    display: flex;
    flex-direction: column;
}

.qcr5.qcr5-on .qcr5-perk {
    animation: qcr5-revealUp-lg .65s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) calc(540ms + var(--pi, 0) * 90ms) both;
}

.qcr5-perk::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(ellipse 70% 55% at 30% 0%, rgba(192, 132, 252, 0.10) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity .35s ease;
    z-index: 0;
}

.qcr5-perk:hover {
    transform: translateY(-3px);
    border-color: rgba(192, 132, 252, 0.32);
    background: linear-gradient(180deg, rgba(28, 32, 65, 0.72) 0%, rgba(15, 18, 38, 0.55) 100%);
    box-shadow: 0 12px 32px -8px rgba(7, 8, 10, 0.6), 0 24px 60px -12px rgba(168, 85, 247, 0.28);
}

    .qcr5-perk:hover::before {
        opacity: 1;
    }

.qcr5-perk > * {
    position: relative;
    z-index: 1;
}


.qcr5-perk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--qcr-in, #6366f1) 0%, var(--qcr-vi, #7c3aed) 100%);
    color: white;
    flex-shrink: 0;
    margin-bottom: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.16), 0 6px 16px -4px rgba(99, 102, 241, 0.40);
    position: relative;
}

    .qcr5-perk-icon::before {
        content: '';
        position: absolute;
        top: 1px;
        left: 1px;
        right: 1px;
        height: 38%;
        border-radius: 10px 10px 0 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, transparent 100%);
        pointer-events: none;
    }

    .qcr5-perk-icon svg {
        position: relative;
        z-index: 1;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
    }


.qcr5-perk-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.018em;
    color: var(--qcr-ink, #ffffff);
    margin: 0 0 8px;
    transition: color .35s ease;
}

.qcr5-perk:hover .qcr5-perk-title {
    color: var(--qcr-vi-3, #c084fc);
}


.qcr5-perk-body {
    font-family: 'Outfit', sans-serif;
    font-size: 13.25px;
    line-height: 1.55;
    color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
    margin: 0 0 14px;
    letter-spacing: -0.005em;
    font-weight: 400;
    flex: 1 1 auto;
}


.qcr5-perk-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--qcr-ink-4, rgba(255, 255, 255, 0.42));
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.07);
}


/* =========================================================================
   CLOSING MANIFESTO
   ========================================================================= */
.qcr5-closing {
    position: relative;
    max-width: 880px;
    margin: 0 auto clamp(64px, 8vw, 96px);
    padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 60px);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    border-radius: 28px;
    border: 1px solid rgba(192, 132, 252, 0.16);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.qcr5.qcr5-on .qcr5-closing {
    animation: qcr5-revealUp-lg .9s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 1100ms both;
}


.qcr5-closing-aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(168, 85, 247, 0.14) 0%, transparent 60%);
    animation: qcr5-closingGlow 8s ease-in-out infinite;
}

@keyframes qcr5-closingGlow {
    0%, 100% {
        opacity: 0.65;
    }

    50% {
        opacity: 1;
    }
}

.qcr5-closing > * {
    position: relative;
    z-index: 1;
}


.qcr5-closing-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--qcr-vi-3, #c084fc);
    opacity: 0.55;
    filter: drop-shadow(0 0 14px rgba(192, 132, 252, 0.55));
}


.qcr5-closing-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.022em;
    color: var(--qcr-ink-2, rgba(255, 255, 255, 0.86));
    margin: 0 auto clamp(28px, 3.5vw, 40px);
    max-width: 720px;
}

.qcr5-closing-em {
    display: block;
    margin: 12px 0;
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}


/* Sign-off */
.qcr5-signoff {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto clamp(28px, 3.4vw, 40px);
}

.qcr5-signoff-line {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 132, 252, 0.55), transparent);
    flex-shrink: 0;
}

.qcr5-signoff-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.qcr5-signoff-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.012em;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.qcr5-signoff-title {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--qcr-ink-4, rgba(255, 255, 255, 0.42));
    margin-top: 4px;
}


/* Final CTA */
.qcr5-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, var(--qcr-in, #6366f1) 0%, var(--qcr-vi, #7c3aed) 100%);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.005em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.16), 0 8px 24px -4px rgba(99, 102, 241, 0.55);
    transition: transform .35s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow .35s ease;
}

    .qcr5-final-cta:hover {
        transform: translateY(-2px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.16), 0 14px 32px -4px rgba(99, 102, 241, 0.70);
    }

    .qcr5-final-cta svg {
        transition: transform .35s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1));
    }

    .qcr5-final-cta:hover svg {
        transform: translateY(2px);
    }


/* =========================================================================
   FOOTER MARK (Arxeon legal line)
   ========================================================================= */
.qcr5-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.qcr5.qcr5-on .qcr5-mark {
    animation: qcr5-revealUp-sm .8s var(--qcr-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 1500ms both;
}

.qcr5-mark-rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.qcr5-mark-text {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--qcr-ink-4, rgba(255, 255, 255, 0.42));
    letter-spacing: 0.005em;
    line-height: 1.5;
    max-width: 540px;
}

    .qcr5-mark-text strong {
        color: var(--qcr-ink-3, rgba(255, 255, 255, 0.62));
        font-weight: 700;
    }


/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
    .qcr5-perks {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .qcr5-perks {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .qcr5-h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .qcr5-closing {
        padding: 32px 24px;
    }

    .qcr5-closing-text {
        font-size: clamp(16px, 5vw, 20px);
    }

    .qcr5-signoff {
        flex-direction: column;
        gap: 8px;
    }

    .qcr5-signoff-line {
        width: 60px;
    }

    .qcr5-signoff-block {
        align-items: center;
    }
}


/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .qcr5.qcr5-on .qcr5-eyebrow,
    .qcr5.qcr5-on .qcr5-h2,
    .qcr5.qcr5-on .qcr5-sub,
    .qcr5.qcr5-on .qcr5-perk,
    .qcr5.qcr5-on .qcr5-closing,
    .qcr5.qcr5-on .qcr5-mark {
        animation: none !important;
    }

    .qcr5-closing-aurora {
        animation: none !important;
    }
}