html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    background:
        radial-gradient(circle at top, rgba(75, 224, 79, 0.18), transparent 30%),
        linear-gradient(180deg, #090909 0%, #030303 100%);
}

.safe-screen {
    min-height: 100vh;
    min-height: 100svh;
}

.question-screen {
    display: none;
}

.question-screen.is-active {
    display: flex;
}

.glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(18px);
}

.option-input:checked + .option-card {
    border-color: #4BE04F;
    background: rgba(75, 224, 79, 0.14);
    color: #ffffff;
}

.admin-shell {
    background:
        radial-gradient(circle at 20% 10%, rgba(75, 224, 79, 0.12), transparent 25%),
        #050505;
}

.landing-hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.8) 48%, rgba(11, 72, 25, 0.9) 100%),
        radial-gradient(circle at top center, rgba(75, 224, 79, 0.2), transparent 28%);
}

.landing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.benefits-carousel {
    display: grid;
    gap: 1.25rem;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.benefits-carousel::-webkit-scrollbar {
    display: none;
}

.benefit-card {
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(0, 0, 0, 0.28);
}

.benefit-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.benefit-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
    pointer-events: none;
}

@media (min-width: 1024px) {
    .benefits-carousel {
        grid-auto-columns: minmax(320px, 32%);
    }
}

.job-stage-card {
    position: relative;
    overflow: hidden;
}

.job-stage-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(75, 224, 79, 0.12), transparent 32%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.96) 100%);
    pointer-events: none;
}

.job-stage-card::after {
    content: "";
    position: absolute;
    top: -10%;
    right: -12%;
    width: 180px;
    height: 180px;
    border-radius: 9999px;
    background: rgba(75, 224, 79, 0.14);
    filter: blur(20px);
    pointer-events: none;
}

.job-stage-media {
    min-height: 260px;
    background:
        linear-gradient(135deg, rgba(75, 224, 79, 0.2), rgba(75, 224, 79, 0.02)),
        linear-gradient(160deg, #1b1b1b 0%, #0d0d0d 55%, #143a18 100%);
}

.job-stage-media--yard {
    background:
        linear-gradient(160deg, rgba(75, 224, 79, 0.08), transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 35%),
        linear-gradient(135deg, #485d1d 0%, #0f1d13 45%, #09140a 100%);
}

.job-stage-media--cargo {
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.16), transparent 20%),
        linear-gradient(145deg, #3a3a3a 0%, #121212 40%, #0a2c12 100%);
}

.job-stage-media--driver {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #1d4e59 0%, #111111 48%, #11351a 100%);
}

.job-stage-rails {
    position: absolute;
    inset: auto 0 0 0;
    height: 90px;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 10%, transparent 20%) 0 0 / 120px 2px no-repeat,
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 10%, transparent 20%) 0 24px / 120px 2px no-repeat,
        linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, 0.15) 43%, rgba(255, 255, 255, 0.15) 45%, transparent 46%) center / 100% 100% no-repeat;
    opacity: 0.45;
}

.flow-shell {
    background:
        radial-gradient(circle at top, rgba(75, 224, 79, 0.18), transparent 22%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
}

.admin-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(20px);
}

.admin-stat {
    background:
        radial-gradient(circle at top right, rgba(75, 224, 79, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.status-pill--match {
    background: rgba(75, 224, 79, 0.9);
    color: #050505;
}

.status-pill--no-match {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
}

.review-pill--neu,
.review-pill--gesichtet {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.review-pill--gespraech_vereinbart {
    background: rgba(75, 224, 79, 0.18);
    color: #82f387;
}

.review-pill--angenommen {
    background: rgba(75, 224, 79, 0.88);
    color: #050505;
}

.review-pill--abgelehnt {
    background: rgba(255, 95, 95, 0.16);
    color: #ff8b8b;
}

.review-pill--warteliste {
    background: rgba(255, 211, 102, 0.16);
    color: #ffd366;
}
