html, body {
    font-family: "Manrope", "Noto Sans", sans-serif;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100%;
    background-color: var(--color-background-dark);
    color: #f4f5f3;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0D0C;
}

::-webkit-scrollbar-thumb {
    background: #465946;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.filled-icon {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.layout-container {
    width: 100%;
}

.ws-noise {
    background-image: radial-gradient(rgba(177, 191, 163, 0.05) 0.7px, transparent 0.7px);
    background-size: 3px 3px;
}

.ws-glass {
    background: linear-gradient(140deg, rgba(70, 89, 70, 0.45), rgba(26, 33, 25, 0.55));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(177, 191, 163, 0.12);
}

.ws-glow-soft {
    box-shadow: 0 0 24px rgba(117, 140, 101, 0.22);
}

.ws-input {
    background-color: rgba(10, 13, 12, 0.72) !important;
    border: 1px solid rgba(177, 191, 163, 0.18) !important;
    border-radius: 0.75rem;
    color: #f4f5f3 !important;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.ws-input::placeholder {
    color: rgba(244, 245, 243, 0.36);
}

.ws-input:hover {
    border-color: rgba(177, 191, 163, 0.3) !important;
}

.ws-input:focus,
.ws-input:focus-visible {
    border-color: rgba(177, 191, 163, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(117, 140, 101, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ws-checkbox {
    appearance: none;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 0.35rem;
    border: 1px solid rgba(177, 191, 163, 0.45);
    background: rgba(10, 13, 12, 0.8);
    display: inline-grid;
    place-items: center;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ws-checkbox::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    transform: scale(0);
    transition: transform 140ms ease;
    border-radius: 0.15rem;
    background: #0A0D0C;
}

.ws-checkbox:checked {
    background: rgb(177, 191, 163);
    border-color: rgb(177, 191, 163);
}

.ws-checkbox:checked::before {
    transform: scale(1);
}

.ws-checkbox:focus,
.ws-checkbox:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(117, 140, 101, 0.24);
}

h1:focus,
h1:focus-visible {
    outline: none;
}

.ws-reveal {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 34px, 0) scale(0.987);
    transition: opacity 920ms cubic-bezier(0.22, 1, 0.36, 1), filter 920ms cubic-bezier(0.22, 1, 0.36, 1), transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ws-reveal.ws-reveal-delay-1 {
    transition-delay: 100ms;
}

.ws-reveal.ws-reveal-delay-2 {
    transition-delay: 180ms;
}

.ws-reveal.ws-reveal-delay-3 {
    transition-delay: 260ms;
}

.ws-reveal.ws-reveal-delay-4 {
    transition-delay: 340ms;
}

.ws-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, var(--ws-parallax, 0px), 0) scale(1);
}

.ws-reveal-parallax {
    transform: translate3d(0, calc(var(--ws-parallax, 0px) + 26px), 0) scale(0.987);
}

.ws-timeline {
    position: relative;
    --ws-timeline-axis: 2rem;
}

.ws-timeline .ws-timeline-base,
.ws-timeline .ws-timeline-progress {
    position: absolute;
    left: var(--ws-timeline-axis);
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

.ws-timeline .ws-timeline-base {
    background: linear-gradient(to bottom, transparent, rgba(117, 140, 101, 0.28) 10%, rgba(117, 140, 101, 0.28) 90%, transparent);
}

.ws-timeline .ws-timeline-progress {
    height: 0;
    bottom: auto;
    background: linear-gradient(to bottom, rgba(117, 140, 101, 0), rgba(117, 140, 101, 0.9) 20%, rgba(117, 140, 101, 1));
    box-shadow: 0 0 18px rgba(117, 140, 101, 0.45);
    transition: height 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
    .ws-timeline {
        --ws-timeline-axis: 50%;
    }
}

.ws-step {
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ws-step-dot {
    transition: background-color 320ms ease, box-shadow 320ms ease;
}

.ws-step-title,
.ws-step-icon {
    transition: color 320ms ease;
}

.ws-step-description {
    transition: color 320ms ease;
}

.ws-step.is-active .ws-step-dot {
    background-color: rgb(117, 140, 101);
    box-shadow: 0 0 16px rgba(117, 140, 101, 0.65);
}

.ws-step.is-active .ws-step-title,
.ws-step.is-active .ws-step-icon {
    color: rgb(177, 191, 163);
}

.ws-step.is-active .ws-step-description {
    color: rgb(177, 191, 163);
}

@media (prefers-reduced-motion: reduce) {
    .ws-reveal,
    .ws-step,
    .ws-step-dot,
    .ws-step-title,
    .ws-step-icon,
    .ws-step-description,
    .ws-timeline-progress {
        transition: none !important;
    }

    .ws-reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}