/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.floating-circle.purple {
    width: 300px;
    height: 300px;
    background-color: var(--accent-purple);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.floating-circle.yellow {
    width: 200px;
    height: 200px;
    background-color: var(--accent-yellow);
    top: 50%;
    left: 10%;
    animation-delay: -3s;
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Mission Section */
#mission {
    background-color: white;
    padding: 120px 0 80px;
}

.mission-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.mission-desc {
    font-size: 18px;
    color: var(--text-color-gray);
    line-height: 1.6;
}

/* Jobs Section */
#jobs {
    background-color: white;
    padding: 0 0 100px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 44px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--text-color-dark);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.filters select {
    height: 48px;
    padding: 0 36px 0 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.filters select:focus {
    outline: none;
    border-color: var(--text-color-dark);
}

/* Job Cards */
.job-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 32px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: white;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--text-color-dark);
    background-color: #fafafa;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
}

.job-meta {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color-gray);
}

.meta-divider {
    color: #ddd;
}