﻿:root {
    color-scheme: dark;
    --background: #07101d;
    --surface: #0d1929;
    --surface-soft: #101f32;
    --border: rgba(148, 163, 184, 0.16);
    --border-strong: rgba(96, 165, 250, 0.35);
    --text: #f8fafc;
    --muted: #94a3b8;
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --green: #34d399;
    --green-soft: rgba(52, 211, 153, 0.12);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--background);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background: radial-gradient( circle at 80% 10%, rgba(37, 99, 235, 0.14), transparent 34% ), radial-gradient( circle at 10% 70%, rgba(14, 165, 233, 0.08), transparent 30% ), var(--background);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.page-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: linear-gradient( 135deg, var(--blue-light), #2563eb );
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
    font-size: 21px;
    font-weight: 800;
}

.brand-copy {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

    .brand-copy strong {
        font-size: 18px;
        letter-spacing: -0.02em;
    }

    .brand-copy small {
        color: var(--muted);
        font-size: 14px;
        font-weight: 600;
    }

.status-badge,
.active-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(52, 211, 153, 0.22);
    border-radius: 999px;
    color: #a7f3d0;
    background: var(--green-soft);
    font-size: 13px;
    font-weight: 700;
}

.status-badge {
    padding: 8px 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.1);
}

.hero {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    gap: 72px;
    align-items: center;
    padding: 72px 0 64px;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    display: inline-block;
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 18px 0 22px;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-copy > p {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.primary-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 12px;
    color: white;
    background: linear-gradient( 135deg, #2563eb, #1d4ed8 );
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.24);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

    .primary-button:hover {
        transform: translateY(-2px);
        border-color: rgba(147, 197, 253, 0.8);
        box-shadow: 0 18px 42px rgba(37, 99, 235, 0.34);
    }

    .primary-button:focus-visible,
    .brand:focus-visible {
        outline: 3px solid rgba(96, 165, 250, 0.55);
        outline-offset: 4px;
    }

.service-panel {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background: linear-gradient( 145deg, rgba(18, 37, 60, 0.96), rgba(9, 22, 38, 0.96) );
    box-shadow: var(--shadow);
}

    .service-panel::before {
        position: absolute;
        inset: 0;
        content: "";
        pointer-events: none;
        background: linear-gradient( 115deg, rgba(96, 165, 250, 0.1), transparent 34% );
    }

.service-panel-header,
.service-time {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .service-panel-header span,
    .service-time span {
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .service-panel-header strong {
        color: #a7f3d0;
        font-size: 17px;
    }

.service-time {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

    .service-time strong {
        font-size: 15px;
    }

.pulse-area {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 12px auto;
    display: grid;
    place-items: center;
}

.pulse-core {
    position: relative;
    z-index: 3;
    width: 54px;
    height: 54px;
    border: 10px solid rgba(52, 211, 153, 0.12);
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 34px rgba(52, 211, 153, 0.55), 0 0 80px rgba(52, 211, 153, 0.18);
}

.pulse-ring {
    position: absolute;
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 50%;
}

.pulse-ring-one {
    width: 112px;
    height: 112px;
    animation: pulse 2.4s ease-out infinite;
}

.pulse-ring-two {
    width: 172px;
    height: 172px;
    animation: pulse 2.4s 0.6s ease-out infinite;
}

.jobs-section {
    padding: 60px 0 74px;
    border-top: 1px solid var(--border);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

    .section-heading h2 {
        margin: 7px 0 0;
        font-size: clamp(26px, 4vw, 38px);
        letter-spacing: -0.035em;
    }

.job-count {
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(15, 23, 42, 0.7);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.job-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient( 145deg, rgba(16, 31, 50, 0.84), rgba(11, 24, 40, 0.84) );
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
    transition: transform 160ms ease, border-color 160ms ease;
}

    .job-card:hover {
        transform: translateY(-3px);
        border-color: rgba(96, 165, 250, 0.32);
    }

.job-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.job-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.14);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.production-icon {
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.14);
}

.active-label {
    padding: 6px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.job-card h3 {
    margin: 23px 0 10px;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.job-card > p {
    min-height: 52px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.job-schedule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

    .job-schedule span {
        color: var(--muted);
        font-size: 13px;
    }

    .job-schedule strong {
        font-size: 13px;
        text-align: right;
    }

.site-footer {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}

@keyframes pulse {
    0% {
        opacity: 0.75;
        transform: scale(0.72);
    }

    70%, 100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 58px;
    }

    .service-panel {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        min-height: 76px;
    }

    .brand-copy small {
        display: none;
    }

    .status-badge {
        padding: 7px 10px;
        font-size: 11px;
    }

    .hero {
        min-height: auto;
        padding: 48px 0;
    }

        .hero h1 {
            margin-top: 14px;
            font-size: clamp(38px, 13vw, 54px);
        }

    .hero-copy > p {
        font-size: 16px;
    }

    .primary-button {
        width: 100%;
    }

    .service-panel {
        min-height: 330px;
        padding: 22px;
        border-radius: 18px;
    }

    .pulse-area {
        width: 160px;
        height: 160px;
    }

    .pulse-ring-two {
        width: 150px;
        height: 150px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .job-card > p {
        min-height: auto;
    }

    .job-schedule {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

        .job-schedule strong {
            text-align: left;
        }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 22px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
}

.login-shell {
    width: min(100%, 460px);
}

.login-brand {
    width: fit-content;
    margin: 0 auto 28px;
}

.login-card {
    padding: 38px;
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background: linear-gradient( 145deg, rgba(18, 37, 60, 0.97), rgba(9, 22, 38, 0.97) );
    box-shadow: var(--shadow);
}

.login-heading {
    margin-bottom: 28px;
}

    .login-heading h1 {
        margin: 10px 0;
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.04em;
    }

    .login-heading p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
    }

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-field label {
        color: #cbd5e1;
        font-size: 13px;
        font-weight: 700;
    }

    .form-field input {
        width: 100%;
        min-height: 48px;
        padding: 0 14px;
        border: 1px solid var(--border);
        border-radius: 11px;
        outline: none;
        color: var(--text);
        background: rgba(2, 8, 23, 0.55);
        font: inherit;
        transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }

        .form-field input:hover {
            border-color: rgba(148, 163, 184, 0.32);
        }

        .form-field input:focus {
            border-color: var(--blue-light);
            background: rgba(2, 8, 23, 0.8);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.13);
        }

        .form-field input.input-validation-error {
            border-color: #f87171;
        }

.field-validation {
    color: #fca5a5;
    font-size: 12px;
}

    .field-validation:empty {
        display: none;
    }

.validation-message {
    padding: 11px 13px;
    border: 1px solid rgba(248, 113, 113, 0.28);
    border-radius: 10px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.18);
    font-size: 13px;
}

    .validation-message.validation-summary-valid {
        display: none;
    }

    .validation-message ul {
        margin: 0;
        padding-left: 18px;
    }

.login-button {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.login-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.back-link {
    display: block;
    width: fit-content;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 160ms ease;
}

    .back-link:hover {
        color: var(--text);
    }

    .back-link:focus-visible {
        outline: 3px solid rgba(96, 165, 250, 0.55);
        outline-offset: 4px;
        border-radius: 4px;
    }

@media (max-width: 520px) {
    .login-page {
        align-items: start;
        padding: 28px 14px;
    }

    .login-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .login-heading h1 {
        font-size: 30px;
    }
}
