:root {
    --navy: #0e2a52;
    --navy-deep: #081f3d;
    --orange: #f09a2a;
    --purple: #b9379b;
    --teal: #1ec600;
    --blue: #0f7cc5;
    --sky: #1894dd;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --mid-gray: #d9d9df;
    --text: #202020;
    --muted: #6a6f7a;
    --closed: #2b2b2b;
    --container: 1210px;
    --shadow-soft: 0 20px 60px rgba(9, 31, 61, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Arial Narrow", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.55;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }
}
