/* =========================================
   CAREER PAGE PREMIUM STYLES
   ========================================= */

/* Hero Section */
.career-hero-premium {
    position: relative;
    padding: 220px 0 120px;
    background-color: var(--bg-body);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(10, 88, 202, 0.1) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
body.dark-mode .career-hero-premium {
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(94, 252, 2, 0.1) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px);
}

.hero-top-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
}
body.dark-mode .hero-top-glow { background: linear-gradient(90deg, transparent, var(--flyer-neon), transparent); }

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(10, 88, 202, 0.05);
    border: 1px solid rgba(10, 88, 202, 0.2);
    border-radius: 50px;
    color: var(--brand-blue);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
body.dark-mode .badge-premium {
    background: rgba(94, 252, 2, 0.05);
    border-color: rgba(94, 252, 2, 0.2);
    color: var(--flyer-neon);
}
.pulse-icon { animation: pulseIcon 2s infinite; }
@keyframes pulseIcon { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-title-premium {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -2px;
}
body.dark-mode .hero-title-premium { color: #fff; }

.text-gradient-premium {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .text-gradient-premium {
    background: linear-gradient(135deg, var(--flyer-neon) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc-premium {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* Why Join Us Bento Box */
.culture-bento-section {
    padding: 6rem 0;
    position: relative;
}

.bento-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}
body.dark-mode .bento-card {
    background: linear-gradient(180deg, rgba(30,41,59,0.5) 0%, rgba(15,23,42,0.6) 100%);
    border-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
body.dark-mode .bento-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}
body.dark-mode .bento-icon { color: var(--flyer-neon); }

.bento-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
body.dark-mode .bento-title { color: #fff; }

.bento-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.bento-glow-blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(10, 88, 202, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
body.dark-mode .bento-glow-blob { background: radial-gradient(circle, rgba(94, 252, 2, 0.1) 0%, transparent 70%); }

/* Open Positions Grid */
.open-roles-section {
    padding: 4rem 0 8rem;
}

.job-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
body.dark-mode .job-card {
    background: rgba(15,23,42,0.4);
    border-color: rgba(255,255,255,0.05);
}

.job-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; height: 100%; width: 4px;
    background: var(--brand-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}
body.dark-mode .job-card::before { background: var(--flyer-neon); }

.job-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: rgba(10, 88, 202, 0.2);
}
body.dark-mode .job-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(94, 252, 2, 0.2);
}
.job-card:hover::before { opacity: 1; }

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}
body.dark-mode .job-title { color: #fff; }
.job-card:hover .job-title { color: var(--brand-blue); }
body.dark-mode .job-card:hover .job-title { color: var(--flyer-neon); }

.job-dept {
    padding: 4px 12px;
    background: rgba(0,0,0,0.05);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}
body.dark-mode .job-dept { background: rgba(255,255,255,0.1); color: #cbd5e1; }

.job-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-apply-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-blue);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(10, 88, 202, 0.3);
    transition: all 0.3s ease;
}
body.dark-mode .btn-apply-glow {
    background: var(--flyer-neon);
    color: #000 !important;
    box-shadow: 0 10px 20px rgba(94, 252, 2, 0.3);
}

.btn-apply-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(10, 88, 202, 0.4);
}
body.dark-mode .btn-apply-glow:hover {
    box-shadow: 0 15px 25px rgba(94, 252, 2, 0.4);
}
