/* High Mark Exit Advisors – shared styles */
:root {
    --brand: #1f3a56;
    --accent: darkgoldenrod;
    --ink: #102a43;
    --muted: #5a7184
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Inter, Segoe UI, Roboto, system-ui, Arial, sans-serif;
    color: var(--ink)
}

a {
    color: var(--brand);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.container {
    width: min(1200px, 92%);
    margin-inline: auto
}

.header {
    position: sticky;
    top: 5px;
    background: #fff;
    border-bottom: 1px solid #eef2f5;
    z-index: 20
}

.header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand img {
    height: 40px
}

.brand .name {
    font-weight: 800;
    color: var(--brand)
}

nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0
}

nav a.btn {
    background: var(--accent);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px
}

.nav-toggle {
    display: none
}

@media(max-width:880px) {
    nav {
        display: none
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        width: 36px;
        border: 1px solid #dde5ea;
        border-radius: 8px;
        background: #fff
    }

    nav.open {
        display: block
    }

    nav ul {
        flex-direction: column;
        padding: 12px 0
    }
}

.hero {
    background: linear-gradient(180deg, #0f2438, #0b1620);
    color: #fff
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
    padding: 56px 0
}

.hero h1 {
    font-size: 40px;
    margin: 0 0 10px;
    font-weight: 900
}

.hero p {
    color: #e1e8f0
}

.section {
    padding: 44px 0
}

.section h2 {
    font-size: 28px;
    margin: 0 0 8px
}

.section p.sub {
    color: var(--muted)
}

.grid {
    display: grid;
    gap: 16px
}

.cols-3 {
    grid-template-columns: repeat(3, 1fr)
}

@media(max-width:880px) {
    .hero .wrap {
        grid-template-columns: 1fr
    }

    .cols-3 {
        grid-template-columns: 1fr
    }
}

.card {
    background: #fff;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04)
}

.footer {
    background: #0b1620;
    color: #d7e2ed;
    padding: 24px 0;
    margin-top: 75px
}

.footer a {
    color: #cde5ff
}

.footer .cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 22px
}

@media(max-width:800px) {
    .footer .cols {
        grid-template-columns: 1fr
    }
}