:root {
    --color-navy-950: #061729;
    --color-navy-900: #09223b;
    --color-navy-800: #123452;
    --color-red-600: #d90812;
    --color-red-500: #ef151b;
    --color-neon-green: #39ff88;
    --color-white: #fff;
    --color-gray-100: #f4f6f8;
    --color-gray-300: #c8d0d8;
    --color-gray-700: #425061;
    --shadow-button: 0 12px 28px rgb(217 8 18 / 24%), inset 0 1px 0 rgb(255 255 255 / 38%);
    --content-width: 1560px;
    --section-gutter: clamp(40px, 5vw, 88px);
    --header-height: 96px;
    --radius-sm: 8px;
    --motion-fast: 220ms;
    --motion-standard: 700ms;
    --ease-standard: cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--color-white);
    color: var(--color-navy-950);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

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

button,
input {
    font: inherit;
}

:focus-visible {
    outline: 3px solid #58a6ff;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-navy-950);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform var(--motion-fast) var(--ease-standard);
}

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

.section {
    padding: clamp(76px, 9vw, 140px) 0;
}

.section__inner {
    width: min(var(--content-width), calc(100% - (var(--section-gutter) * 2)));
    margin: 0 auto;
}

.section h2 {
    margin: 0;
    font-size: clamp(2.6rem, 4vw, 4.75rem);
    letter-spacing: -.045em;
    line-height: 1.04;
}

.section__lede {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--color-gray-700);
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.eyebrow {
    margin: 0 0 16px;
    color: #ff3138;
    font-size: clamp(.78rem, 1vw, .98rem);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--motion-standard) ease, transform var(--motion-standard) var(--ease-standard);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 700px) {
    .section {
        padding-block: 72px;
    }

    .section__inner {
        width: calc(100% - 40px);
    }
}

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

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
