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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 2.5rem;
    display: inline-block;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    }
}

.logo-line {
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin: 1rem auto 0;
    position: relative;
    animation: expand 1.5s ease-out 0.5s both;
}

@keyframes expand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 300px;
        opacity: 1;
    }
}

.logo-line::before,
.logo-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translateY(-50%);
}

.logo-line::before {
    left: -3px;
}

.logo-line::after {
    right: -3px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.description {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.location {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 3.5rem;
    opacity: 0.7;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.contact {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact a:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact a:hover::before {
    left: 100%;
}

.contact a svg {
    transition: transform 0.3s ease;
}

.contact a:hover svg {
    transform: translateX(4px);
}

.jobs-page {
    align-items: flex-start;
    padding: 4rem 1.5rem;
}

.jobs-container {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.jobs-header {
    text-align: center;
    color: #fff;
}

.jobs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.15rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.jobs-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 600;
    margin: 1rem 0;
}

.jobs-intro {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
}

.form-wrapper {
    padding: 0.5rem;
}

.form-copy h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.form-copy p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

.form-embed {
    border-radius: 24px;
}

.form-embed iframe {
    border-radius: 16px;
    width: 100%;
}

.job-meta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.job-pill {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    .logo-text {
        font-size: 3.5rem;
        letter-spacing: 0.1em;
    }
    
    .logo-line {
        width: 200px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .location {
        font-size: 0.85rem;
    }
    
    .contact a {
        font-size: 0.9rem;
        padding: 0.85rem 1.5rem;
    }

    .jobs-page {
        padding: 3rem 1rem;
    }

    .jobs-header h1 {
        font-size: 2.1rem;
    }

    .form-wrapper {
        padding: 0.25rem;
    }

}

