:root {
    --navy: #06172b;
    --navy2: #0a2542;
    --orange: #ff6a00;
    --orange2: #ff8a2a;
    --ink: #111827;
    --muted: #667085;
    --line: #e6eaf0;
    --soft: #f5f7fa;
    --green: #129447;
    --shadow: 0 14px 40px rgba(18, 34, 57, 0.1);
    --radius: 16px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--ink);
    background: #fff;
}

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

button,
input {
    font: inherit;
}

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

.section {
    padding: 64px 0;
}

.eyebrow {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-header {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #041426 0%, #081d35 70%, #0b2948 100%);
}

.site-header::after {
    content: "";
    position: absolute;
    inset: 70px auto 0 -70px;
    width: 560px;
    background:
        linear-gradient(135deg, transparent 35%, rgba(255, 255, 255, 0.03) 36% 37%, transparent 38%),
        linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.025) 46% 47%, transparent 48%);
    transform: skewX(-15deg);
    pointer-events: none;
}

.navbar {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-mark {
    position: relative;
    width: 54px;
    height: 38px;
}

.logo-mark .speed {
    position: absolute;
    left: 0;
    height: 4px;
    background: var(--orange);
    border-radius: 9px;
}

.logo-mark .s1 {
    top: 6px;
    width: 33px;
}

.logo-mark .s2 {
    top: 16px;
    width: 26px;
}

.logo-mark .s3 {
    top: 26px;
    width: 18px;
}

.logo-mark .td {
    position: absolute;
    top: -3px;
    left: 17px;
    color: #fff;
    font-size: 34px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -8px;
}

.logo em {
    color: var(--orange);
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 34px;
    font-size: 14px;
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border: 0;
    border-radius: 9px;
    font-weight: 800;
    cursor: pointer;
}

.btn-orange {
    color: #fff;
    background: var(--orange);
    box-shadow: 0 10px 22px rgba(255, 106, 0, 0.22);
}

.btn-orange:hover {
    background: #ee6100;
}

.btn-outline {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.menu {
    display: none;
    color: #fff;
    background: none;
    border: 0;
}

.footer {
    padding: 48px 0 24px;
    color: #fff;
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px;
}

.footer .logo {
    font-size: 22px;
}

.footer p,
.footer a {
    color: #b8c4d1;
    font-size: 12px;
    line-height: 1.7;
}

.footer h4 {
    margin: 0 0 13px;
    font-size: 13px;
}

.footer-links {
    display: grid;
    gap: 7px;
}

.socials {
    display: flex;
    gap: 9px;
    margin-top: 12px;
}

.socials span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #536275;
    border-radius: 50%;
    font-size: 11px;
}

.copyright {
    margin-top: 36px;
    color: #738196;
    font-size: 11px;
    text-align: center;
}

@media (max-width: 950px) {
    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }

    .menu {
        display: block;
    }

    .nav-actions .signin {
        display: none;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, var(--max));
    }

    .section {
        padding: 46px 0;
    }

    .navbar {
        height: 68px;
    }

    .logo {
        font-size: 21px;
    }

    .nav-actions .btn {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    } }