@font-face {
    font-family: "Manrope ATS";
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
}

:root {
    --ats-navy-1000: #030716;
    --ats-navy-950: #050a1e;
    --ats-navy-900: #07132d;
    --ats-navy-800: #101e46;
    --ats-brand: #1b1464;
    --ats-electric: #257cff;
    --ats-cyan: #54e6ff;
    --ats-white: #ffffff;
    --ats-ice: #f4f8ff;
    --ats-text: #dce7fb;
    --ats-muted: #a8b7d5;
    --ats-line: rgba(167, 193, 243, 0.24);
    --ats-shadow: 0 30px 90px rgba(0, 5, 28, 0.36);
    --ats-font-sans: "Manrope ATS", "Segoe UI", Helvetica, Arial, sans-serif;
    --ats-font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --ats-shell: 1320px;
    --ats-gutter: clamp(20px, 4vw, 56px);
    --ats-radius-sm: 8px;
    --ats-radius-md: 14px;
    --ats-radius-lg: 24px;
    --ats-ease-out: cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--ats-navy-950);
    color: var(--ats-text);
    font-family: var(--ats-font-sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.ats-nav-open {
    overflow: hidden;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

::selection {
    background: var(--ats-cyan);
    color: var(--ats-navy-1000);
}

:focus-visible {
    outline: 3px solid var(--ats-cyan);
    outline-offset: 4px;
}

.ats-shell {
    width: min(100% - (var(--ats-gutter) * 2), var(--ats-shell));
    margin-inline: auto;
}

.ats-main {
    min-height: 60vh;
}

.ats-content {
    padding-block: clamp(140px, 14vw, 210px) 96px;
}

.ats-entry {
    max-width: 760px;
}

.ats-entry__title {
    margin: 0 0 28px;
    color: var(--ats-white);
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.ats-entry__content {
    color: var(--ats-text);
}

.ats-entry__content a {
    color: var(--ats-cyan);
}

.ats-skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    border-radius: var(--ats-radius-sm);
    background: var(--ats-white);
    color: var(--ats-navy-950);
    padding: 10px 16px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease;
}

.ats-skip-link:focus {
    transform: translateY(0);
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    white-space: nowrap;
}

@media (max-width: 782px) {
    body.admin-bar {
        --ats-admin-offset: 46px;
    }
}

@media (min-width: 783px) {
    body.admin-bar {
        --ats-admin-offset: 32px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

