:root {
    --orange: #FF6B35;
    --orange-dark: #E85A24;
    --orange-light: #F7C59F;
    --teal: #2EC4B6;
    --dark: #0a0a0a;
    --dark-light: #1a1a2e;
    --white: #ffffff;
    --gray-100: rgba(255, 255, 255, 0.9);
    --gray-300: rgba(255, 255, 255, 0.6);
    --gray-500: rgba(255, 255, 255, 0.4);
    --gray-700: rgba(255, 255, 255, 0.15);
    --gray-800: rgba(255, 255, 255, 0.08);
    --gray-900: rgba(255, 255, 255, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* === AMBIENT BACKGROUND === */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
    z-index: -3;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    pointer-events: none;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: orbFloat 25s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    top: -200px;
    left: -150px;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
    bottom: 10%;
    right: -100px;
    animation-delay: -8s;
}

.orb3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    top: 50%;
    left: -100px;
    animation-delay: -16s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.05); }
    50% { transform: translate(-30px, 40px) scale(0.95); }
    75% { transform: translate(35px, 20px) scale(1.02); }
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-800);
    padding: 16px 40px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.nav-cta):not(.nav-login)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-links a:not(.nav-cta):not(.nav-login):hover {
    color: var(--white);
}

.nav-links a:not(.nav-cta):not(.nav-login):hover::after {
    width: 100%;
}

.nav-login {
    color: var(--white) !important;
    padding: 10px 20px;
    border: 1px solid var(--gray-700);
    border-radius: 50px;
    transition: all 0.3s;
}

.nav-login:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 53, 0.1);
}

.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* === PAGE HEADER === */
.page-header {
    padding: 160px 40px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.page-header h1 span {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 18px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* === CONTENT SECTION === */
.content-section {
    padding: 80px 40px;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.content-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 48px 0 20px;
    color: var(--white);
}

.content-container h2:first-child {
    margin-top: 0;
}

.content-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--gray-100);
}

.content-container p {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-container ul, 
.content-container ol {
    margin: 20px 0;
    padding-left: 24px;
    color: var(--gray-300);
}

.content-container li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-container a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s;
}

.content-container a:hover {
    color: var(--orange-light);
}

.content-container strong {
    color: var(--white);
    font-weight: 600;
}

/* === CARDS GRID === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.card p {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-meta {
    font-size: 13px;
    color: var(--gray-500);
}

.card-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
}

/* === TEAM GRID === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-member .role {
    font-size: 14px;
    color: var(--orange);
    margin-bottom: 12px;
}

.team-member p {
    font-size: 14px;
    color: var(--gray-300);
}

/* === JOB LISTINGS === */
.job-listing {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.job-listing:hover {
    border-color: var(--orange);
    transform: translateX(8px);
}

.job-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.job-details {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-300);
}

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

.btn-apply {
    background: var(--orange);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-apply:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* === BUTTONS === */
.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.35);
}

.btn-secondary {
    background: var(--gray-800);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-700);
    border-color: var(--gray-500);
}

/* === FOOTER === */
.footer {
    padding: 80px 40px 40px;
    border-top: 1px solid var(--gray-800);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    height: 36px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--gray-500);
}

.footer-col a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

/* === MOBILE MENU === */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .job-listing {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav { padding: 16px 24px; }
    .nav.scrolled { padding: 12px 24px; }
    
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .page-header { padding: 120px 24px 60px; }
    .content-section { padding: 60px 24px; }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}
