/* ============================================
   CAREERS PAGE STYLES
============================================ */

/* ============================================
   HERO
============================================ */
.careers-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.careers-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.careers-hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation: orb-drift 20s ease-in-out infinite;
}

.careers-hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
    animation: orb-drift 25s ease-in-out infinite reverse;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.careers-hero-content {
    text-align: center;
    z-index: 1;
}

.careers-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.eyebrow-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.careers-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: white;
}

.careers-hero-title .title-accent {
    background: linear-gradient(90deg, var(--color-coral), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   INTRO STATEMENT
============================================ */
.careers-intro {
    background: var(--color-bg);
    padding: 0 5rem 6rem;
}

.intro-content {
    max-width: 900px;
    padding-top: 4rem;
}

.intro-statement {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-lead {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.intro-body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.intro-welcome {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-top: 1rem;
}

/* ============================================
   NOT A COMMON WORKPLACE
============================================ */
.careers-uncommon {
    background: #0f0f0f;
    padding: 0 5rem 6rem;
}

.careers-uncommon .platform-header-bar {
    border-color: rgba(255, 255, 255, 0.15);
}

.careers-uncommon .section-tag,
.careers-uncommon .section-divider,
.careers-uncommon .section-name,
.careers-uncommon .header-progress {
    color: rgba(255, 255, 255, 0.5);
}

.uncommon-content {
    padding-top: 4rem;
    max-width: 800px;
}

.uncommon-header {
    margin-bottom: 3rem;
}

.uncommon-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.uncommon-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}

.uncommon-text {
    margin-bottom: 3rem;
}

.uncommon-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.uncommon-criteria p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.uncommon-criteria .criteria-cta {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-top: 1.5rem;
}

/* ============================================
   OPEN ROLES
============================================ */
.careers-roles {
    background: var(--color-bg);
    padding: 0 5rem 6rem;
}

.roles-content {
    padding-top: 4rem;
    max-width: 600px;
}

.roles-header {
    margin-bottom: 3rem;
}

.roles-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.roles-status {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.roles-cta p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.roles-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--color-text);
    color: white;
    border: none;
    border-radius: 3rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.roles-button:hover {
    background: var(--gradient-main);
    transform: translateY(-2px);
}

/* ============================================
   LOCATIONS
============================================ */
.careers-locations {
    background: #0f0f0f;
    padding: 0 5rem 6rem;
}

.careers-locations .platform-header-bar {
    border-color: rgba(255, 255, 255, 0.15);
}

.careers-locations .section-tag,
.careers-locations .section-divider,
.careers-locations .section-name,
.careers-locations .header-progress {
    color: rgba(255, 255, 255, 0.5);
}

.locations-content {
    padding-top: 4rem;
}

.locations-header {
    margin-bottom: 3rem;
}

.locations-label {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
}

.locations-grid {
    display: flex;
    gap: 2rem;
}

.location-card {
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-city {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: white;
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .careers-intro,
    .careers-uncommon,
    .careers-roles,
    .careers-locations {
        padding: 0 3rem 5rem;
    }

    .intro-content,
    .uncommon-content,
    .roles-content {
        padding-top: 3rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .careers-hero {
        min-height: 80vh;
        padding: 0 1.5rem;
    }

    .careers-hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .careers-hero-eyebrow {
        font-size: 0.65rem;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .eyebrow-line {
        width: 40px;
    }

    .careers-hero-orb-1 {
        width: 350px;
        height: 350px;
    }

    .careers-hero-orb-2 {
        width: 300px;
        height: 300px;
    }

    .careers-intro,
    .careers-uncommon,
    .careers-roles,
    .careers-locations {
        padding: 0 1.5rem 4rem;
    }

    .intro-content,
    .uncommon-content,
    .roles-content,
    .locations-content {
        padding-top: 2.5rem;
    }

    .intro-lead {
        font-size: 1.5rem;
    }

    .intro-body {
        font-size: 1rem;
    }

    .intro-welcome {
        font-size: 1.25rem;
    }

    .uncommon-title {
        font-size: 1.75rem;
    }

    .uncommon-text p,
    .uncommon-criteria p {
        font-size: 1rem;
    }

    .uncommon-criteria .criteria-cta {
        font-size: 1.25rem;
    }

    .roles-status {
        font-size: 2.5rem;
    }

    .locations-grid {
        flex-direction: column;
    }

    .location-card {
        padding: 1.5rem 2rem;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
============================================ */
@media (max-width: 480px) {
    .careers-hero-title {
        font-size: 2.5rem;
    }

    .roles-status {
        font-size: 2rem;
    }

    .location-city {
        font-size: 1.1rem;
    }
}
