:root {
    --zenka-green: #00a651;
    --zenka-green-dark: #008442;
    --zenka-white: #ffffff;
    --zenka-light: #f3f5f7;
    --zenka-gray: #4a5565;
    --zenka-dark: #19212c;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--zenka-dark);
    background:
        radial-gradient(circle at 10% 15%, rgba(0, 166, 81, 0.2), transparent 35%),
        radial-gradient(circle at 85% 5%, rgba(35, 46, 62, 0.08), transparent 40%),
        linear-gradient(180deg, #f9fbfc 0%, #edf2f6 100%);
    min-height: 100vh;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(0, 166, 81, 0.7);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: 10px;
    top: -44px;
    z-index: 80;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 8px 14px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 10px;
}

h1,
h2,
h3,
h4 {
    font-family: "Sora", sans-serif;
}

.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.page-enter {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.page-enter.page-enter-active {
    opacity: 1;
    transform: translateY(0);
}

.card-lift {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(25, 33, 44, 0.12);
}

.btn-animated {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-animated::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 45%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.btn-animated:hover::after {
    transform: translateX(120%);
}

.btn-animated:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 166, 81, 0.3);
}

.loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(18, 25, 36, 0.88);
}

.loader-overlay.active {
    display: flex;
}

.pulse-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--zenka-green);
    animation: pulse 1s infinite ease-in-out;
}

.progress-track {
    width: 100%;
    max-width: 460px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #00a651 0%, #45d68a 100%);
    border-radius: inherit;
    transition: width 0.25s linear;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

.status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.84rem;
    font-weight: 700;
}

.status-pending {
    color: #854d0e;
    background: #fef3c7;
}

.status-approved,
.status-paid {
    color: #065f46;
    background: #d1fae5;
}

.status-rejected,
.status-failed {
    color: #7f1d1d;
    background: #fee2e2;
}

.section-noise {
    position: relative;
}

.section-noise::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(25, 33, 44, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.16;
    pointer-events: none;
}

.mobile-menu {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu[aria-hidden="true"] {
    opacity: 0;
    transform: translateY(-8px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}
