:root {
    --bg-color: #000000;
    --text-color: #f0f0f0;
    --accent-color: #d4af37;
    /* Cinematic Gold */
    --accent-glow: rgba(212, 175, 55, 0.4);
    --card-bg: rgba(25, 25, 25, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-primary: 'Michroma', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.6;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}




/* Back Link */
.back-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}



/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    transform-origin: center;
}



.logo-container {
    perspective: 1200px;
    /* Layer 1: cinematic 3D flip entrance */
    animation: logo3DFlip 2.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes logo3DFlip {
    0% {
        transform: rotateY(-180deg) scale(0.4);
        opacity: 0;
    }

    60% {
        transform: rotateY(12deg) scale(1.05);
        opacity: 1;
    }

    80% {
        transform: rotateY(-6deg) scale(0.98);
    }

    100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}


.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.animated-logo {
    width: 200px;
    transform-style: preserve-3d;
    /* Layer 2: color sweep (runs once, ends in white) + Layer 3: float+wave loop */
    animation:
        logoColorSweep 3.5s ease-in-out 1.8s both,
        logoFloat 4s ease-in-out 3.5s infinite,
        logoWave 6s ease-in-out 3.5s infinite;
}

/* ── Color sweep: transparent → gold → cyan → violet → white ── */
@keyframes logoColorSweep {
    0% {
        filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
    }

    15% {
        filter:
            drop-shadow(0 0 18px rgba(212, 175, 55, 1)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)) brightness(1.3) sepia(0.4);
    }

    35% {
        filter:
            drop-shadow(0 0 22px rgba(80, 220, 255, 1)) drop-shadow(0 0 55px rgba(80, 220, 255, 0.5)) brightness(1.4) hue-rotate(30deg);
    }

    55% {
        filter:
            drop-shadow(0 0 25px rgba(180, 80, 255, 1)) drop-shadow(0 0 60px rgba(180, 80, 255, 0.5)) brightness(1.5) hue-rotate(60deg);
    }

    75% {
        filter:
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.4)) brightness(1.6);
    }

    100% {
        filter:
            drop-shadow(0 0 12px rgba(255, 255, 255, 0.35)) brightness(1);
    }
}

/* ── Floating breath: gentle vertical oscillation ── */
@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg);
    }

    30% {
        transform: translateY(-10px) rotateX(2deg);
    }

    70% {
        transform: translateY(6px) rotateX(-1.5deg);
    }
}

/* ── Liquid wave: subtle organic scale + skew ripple ── */
@keyframes logoWave {

    0%,
    100% {
        transform: scaleX(1) skewX(0deg) scaleY(1);
    }

    20% {
        transform: scaleX(1.02) skewX(0.6deg) scaleY(0.99);
    }

    50% {
        transform: scaleX(0.98) skewX(-0.4deg) scaleY(1.01);
    }

    75% {
        transform: scaleX(1.01) skewX(0.3deg) scaleY(0.995);
    }
}



.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    background-color: var(--accent-color);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 1.1s;
    box-shadow: 0 0 15px var(--accent-glow);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    background-color: #f0c84b;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Careers Section */
.careers-section {
    min-height: 100vh;
    padding: 120px 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.careers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--accent-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.job-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.card-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-glow);
    border-radius: 50%;
    filter: blur(50px);
    top: -50px;
    right: -50px;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.job-card:hover .card-glow {
    opacity: 1;
}

.job-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-badge {
    align-self: flex-start;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.job-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.job-desc {
    color: #bbb;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.job-requirements {
    list-style: none;
    margin-bottom: 2rem;
}

.job-requirements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ddd;
}

.job-requirements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.apply-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.job-card:hover .apply-btn {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
}


/***************************************************
 * Generated by SVG Artista on 5/18/2026, 1:15:37 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1066.4598388671875px;
        stroke-dasharray: 1066.4598388671875px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1066.4598388671875px
    }
}

@keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1066.4598388671875px;
        stroke-dasharray: 1066.4598388671875px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1066.4598388671875px
    }
}

@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.svg-elem-1 {
    -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both
}

@-webkit-keyframes animate-svg-stroke-2 {
    0% {
        stroke-dashoffset: 629.6012573242188px;
        stroke-dasharray: 629.6012573242188px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 629.6012573242188px
    }
}

@keyframes animate-svg-stroke-2 {
    0% {
        stroke-dashoffset: 629.6012573242188px;
        stroke-dasharray: 629.6012573242188px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 629.6012573242188px
    }
}

@-webkit-keyframes animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.svg-elem-2 {
    -webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
                       animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both,
                       triangleFlip 1.4s ease-in-out 3.5s 3 forwards;
    animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
               animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both,
               triangleFlip 1.4s ease-in-out 3.5s 3 forwards;
    transform-box: fill-box;
    transform-origin: center;
}

/* ── Triangle: vertical flip (rotateX 360°) — 3× then stops ── */
@keyframes triangleFlip {
    0%   { transform: perspective(600px) rotateX(0deg);   }
    100% { transform: perspective(600px) rotateX(360deg); }
}

@-webkit-keyframes animate-svg-stroke-3 {
    0% {
        stroke-dashoffset: 474.3359375px;
        stroke-dasharray: 474.3359375px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 474.3359375px
    }
}

@keyframes animate-svg-stroke-3 {
    0% {
        stroke-dashoffset: 474.3359375px;
        stroke-dasharray: 474.3359375px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 474.3359375px
    }
}

@-webkit-keyframes animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.svg-elem-3 {
    -webkit-animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
    animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both
}

@-webkit-keyframes animate-svg-stroke-4 {
    0% {
        stroke-dashoffset: 541.7293090820312px;
        stroke-dasharray: 541.7293090820312px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 541.7293090820312px
    }
}

@keyframes animate-svg-stroke-4 {
    0% {
        stroke-dashoffset: 541.7293090820312px;
        stroke-dasharray: 541.7293090820312px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 541.7293090820312px
    }
}

@-webkit-keyframes animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.svg-elem-4 {
    -webkit-animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
    animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both
}

@-webkit-keyframes animate-svg-stroke-5 {
    0% {
        stroke-dashoffset: 230.87600708007812px;
        stroke-dasharray: 230.87600708007812px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 230.87600708007812px
    }
}

@keyframes animate-svg-stroke-5 {
    0% {
        stroke-dashoffset: 230.87600708007812px;
        stroke-dasharray: 230.87600708007812px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 230.87600708007812px
    }
}

@-webkit-keyframes animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.svg-elem-5 {
    -webkit-animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
    animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both
}

@-webkit-keyframes animate-svg-stroke-6 {
    0% {
        stroke-dashoffset: 134.68739318847656px;
        stroke-dasharray: 134.68739318847656px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 134.68739318847656px
    }
}

@keyframes animate-svg-stroke-6 {
    0% {
        stroke-dashoffset: 134.68739318847656px;
        stroke-dasharray: 134.68739318847656px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 134.68739318847656px
    }
}

@-webkit-keyframes animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.svg-elem-6 {
    -webkit-animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both, animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
    animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both, animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both
}

@-webkit-keyframes animate-svg-stroke-7 {
    0% {
        stroke-dashoffset: 332.1249084472656px;
        stroke-dasharray: 332.1249084472656px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 332.1249084472656px
    }
}

@keyframes animate-svg-stroke-7 {
    0% {
        stroke-dashoffset: 332.1249084472656px;
        stroke-dasharray: 332.1249084472656px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 332.1249084472656px
    }
}

@-webkit-keyframes animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.svg-elem-7 {
    -webkit-animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both, animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
    animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both, animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both
}