﻿:root {
    --navy: #1C3655;
    --navy-deep: #14294A;
    --navy-ink: #0C1B30;
    --gold: #C38C20;
    --gold-soft: #E0B24A;
    --gold-wash: #F6ECD5;
    --paper: #EFF1F3;
    --card: #FFFFFF;
    --blue: #4D94FF;
    --blue-wash: #E6EFFD;
    --ink: #19232F;
    --mute: #5E6B7A;
    --line: #E5E0D6;
    --line-soft: #EFEBE2;
    --good: #3E8E5A;
    --shadow: 0 1px 2px rgba(14,29,47,.05), 0 8px 24px rgba(14,29,47,.06);
    --shadow-lg: 0 12px 40px rgba(14,29,47,.16);
    --r: 14px;
    --r-sm: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

/*body {*/
/*font-family: 'Mulish',system-ui,sans-serif;*/
/*background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}*/

a {
    color: inherit;
    text-decoration: none
}

button {
    /*font-family: inherit;*/
    cursor: pointer;
    border: none;
    background: none
}

:focus-visible {
    outline: 2.5px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px
}

/* ---- Mockup annotation strip ---- */
.mock-bar {
    background: var(--navy-ink);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 9px 20px;
    font-size: 12.5px;
}

    .mock-bar b {
        /*font-family: 'Poppins';*/
        letter-spacing: .04em;
        text-transform: uppercase;
        font-size: 11px;
        color: var(--gold-soft)
    }

.mock-toggle {
    display: flex;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 3px
}

    .mock-toggle button {
        color: #cfd7e0;
        font-size: 12px;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 6px;
        white-space: nowrap;
        transition: background .15s,color .15s;
    }

        .mock-toggle button.on {
            background: var(--gold);
            color: var(--navy-ink)
        }

.mock-note {
    color: #94a2b4;
    margin-left: auto
}

/* ---- Header ---- */
header.site {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--navy);
    box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 6px 20px rgba(14,29,47,.18);
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
    height: 66px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    /*font-family: 'Poppins';*/
    font-weight: 800;
    color: #fff;
    font-size: 18px;
    letter-spacing: .01em
}

    .logo img.mark {
        height: 34px;
        width: auto;
        display: block;
        flex: none
    }

    .logo .sub {
        display: block;
        font-weight: 700;
        font-size: 9.5px;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--blue);
        margin-top: 1px
    }

    .logo .wm {
        display: flex;
        flex-direction: column;
        line-height: 1.08;
        text-transform: uppercase;
        letter-spacing: .05em;
        font-size: 15px;
        font-weight: 700
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto
}

    .nav-links a {
        color: #cdd8e4;
        font-size: 13.5px;
        font-weight: 500;
        padding: 8px 11px;
        border-radius: 7px;
        transition: color .15s,background .15s
    }

        .nav-links a:hover {
            color: #fff;
            background: rgba(255,255,255,.07)
        }

        .nav-links a.active {
            color: #fff;
            background: rgba(195,140,32,.18)
        }

        .nav-links a.login {
            color: #fff;
            background: var(--blue);
            font-weight: 600
        }

        .nav-links a.cta {
            color: var(--navy-ink);
            background: var(--gold);
            font-weight: 700
        }

            .nav-links a.cta:hover {
                background: var(--gold-soft)
            }

.hamburger {
    display: none;
    margin-left: auto;
    color: #fff;
    font-size: 24px;
    padding: 6px 10px;
    border-radius: 8px
}

    .hamburger:hover {
        background: rgba(255,255,255,.08)
    }

/* ---- Hero ---- */
.hero {
    background: #1C3655; /*radial-gradient(820px 280px at 82% -42%, rgba(77,148,255,.28), transparent), radial-gradient(680px 260px at 8% 120%, rgba(195,140,32,.16), transparent), var(--navy);*/
    color: #fff;
    padding: 0px 22px 130px;
}

.hero-in {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*font-family: 'Mulish';*/
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: var(--blue)
    }

.hero h1 {
    /* font-family: 'Poppins';*/
    font-weight: 800;
    font-size: clamp(34px,5vw,52px);
    line-height: 1.14;
    letter-spacing: -.02em
}

.hero p {
    color: #bccadb;
    font-size: 16px;
    max-width: 540px;
    margin: 14px auto 0
}

.search {
    margin-top: 28px;
    max-width: 620px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

    .search input {
        width: 100%;
        border: none;
        border-radius: 13px;
        padding: 17px 18px 17px 50px;
        font-size: 15.5px;
        /*font-family: 'Mulish';*/
        color: var(--ink);
        background: #fff;
        box-shadow: var(--shadow-lg);
    }

    .search svg {
        position: absolute;
        left: 17px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        color: var(--mute)
    }

.search-hint {
    font-size: 12.5px;
    color: #8fa0b5;
    margin-top: 10px
}

/* ---- Layout wrapper ---- */
main {
    max-width: 1180px;
    margin: -86px auto 0;
    padding: 0 22px 70px;
    position: relative;
    z-index: 5
}

.section {
    margin-top: 42px
}

    .section:first-child {
        margin-top: 0
    }

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px
}

    .sec-head h2 {
        /*font-family: 'Poppins';*/
        font-weight: 700;
        font-size: 21px;
        letter-spacing: -.01em;
        color: var(--navy)
    }

    .sec-head .kicker {
        /*font-family: 'Mulish';*/
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--blue);
        font-weight: 700;
        display: block;
        margin-bottom: 3px
    }

    .sec-head .meta {
        font-size: 12.5px;
        color: var(--mute);
        /*font-family: 'Mulish'*/
    }

/* ---- Quick actions (Layout A) ---- */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.quick {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .15s,box-shadow .15s,border-color .15s;
}

    .quick:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        border-color: var(--blue)
    }

    .quick .ico {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        background: #4D94FF; /*var(--blue);*/
        display: grid;
        place-items: center;
        color: #fff
    }

        .quick .ico svg {
            width: 22px;
            height: 22px
        }

    .quick h3 {
        /* font-family: 'Poppins';*/
        font-size: 15.5px;
        font-weight: 700;
        color: var(--navy)
    }

    .quick p {
        font-size: 12.5px;
        color: var(--mute);
        line-height: 1.45
    }

/* ---- Featured Broker Guide ---- */
.guide {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: linear-gradient(120deg,#1C3655,#16314F);
    border: 1px solid rgba(255,255,255,.08);
    border-left: 5px solid var(--gold);
    border-radius: var(--r);
    padding: 24px 26px;
    box-shadow: var(--shadow)
}

    .guide .gic {
        width: 60px;
        height: 60px;
        flex: none;
        border-radius: 14px;
        background: #4D94FF; /*var(--blue);*/
        display: grid;
        place-items: center;
        color: #fff
    }

        .guide .gic svg {
            width: 29px;
            height: 29px
        }

    .guide .gtxt {
        flex: 1;
        min-width: 0
    }

    .guide .geyebrow {
        /*font-family: 'Mulish';*/
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #C38C20; /*var(--gold)*/
    }

    .guide .gtxt h2 {
        /* font-family: 'Poppins';*/
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        margin: 3px 0 0;
        letter-spacing: -.01em
    }

    .guide .gtxt p {
        font-size: 13.5px;
        color: #cdd8e4;
        margin-top: 5px
    }

    .guide .gbtn {
        flex: none;
        align-self: center;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #C38C20;
        color: #1C3655;
        font-weight: 700;
        font-size: 14px;
        padding: 14px 22px;
        border-radius: 11px;
        transition: background .15s,transform .15s
    }

        .guide .gbtn:hover {
            background: #F2982E;
            transform: translateY(-2px)
        }

        .guide .gbtn svg {
            width: 17px;
            height: 17px
        }

@media(max-width:680px) {
    .guide {
        flex-direction: column;
        align-items: flex-start
    }

        .guide .gbtn {
            width: 100%;
            justify-content: center
        }
}

/* ---- Video library ---- */
.video-wrap {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 18px
}

.vid-feature {
    background: var(--navy);
    border-radius: var(--r);
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .15s,box-shadow .15s;
}

    .vid-feature:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg)
    }

.vid-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg,var(--navy-deep),#24507e);
    display: grid;
    place-items: center;
}

    .vid-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 50%,transparent 40%,rgba(14,29,47,.35))
    }

.play {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #4D94FF; /*var(--blue);*/
    border: none;
    display: grid;
    place-items: center;
    transition: transform .15s,background .15s;
}

.vid-feature:hover .play, .vid-card:hover .play {
    transform: scale(1.08);
    background: #3D86F0
}

.play svg {
    width: 24px;
    height: 24px;
    color: #fff;
    margin-left: 3px
}

.vid-feature:hover .play svg {
    color: #fff
}

.vid-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    /*font-family: 'Mulish';*/
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: #C38C20; /*var(--gold);*/
    color: var(--navy-ink);
    padding: 4px 9px;
    border-radius: 6px
}

.vid-dur {
    position: absolute;
    z-index: 2;
    bottom: 12px;
    right: 12px;
    /* font-family: 'Mulish';*/
    font-size: 12px;
    background: rgba(14,29,47,.78);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px
}

.vid-feature .vid-body {
    padding: 18px 20px
}

.vid-feature h3 {
    /*font-family: 'Poppins';*/
    font-size: 19px;
    font-weight: 700
}

.vid-feature .vid-body p {
    color: #bccadb;
    font-size: 13px;
    margin-top: 5px
}

.vid-list {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.vid-card {
    display: flex;
    gap: 13px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 11px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform .12s,border-color .12s;
}

    .vid-card:hover {
        transform: translateX(3px);
        border-color: var(--blue)
    }

.vid-mini {
    width: 92px;
    height: 58px;
    flex: none;
    border-radius: 8px;
    position: relative;
    background: linear-gradient(135deg,var(--navy-deep),#2c5984);
    display: grid;
    place-items: center;
}

    .vid-mini .play {
        width: 34px;
        height: 34px
    }

        .vid-mini .play svg {
            width: 14px;
            height: 14px
        }

.vid-meta h4 {
    /*font-family: 'Poppins';*/
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.25
}

.vid-meta span {
    /*font-family: 'Mulish';*/
    font-size: 11px;
    color: var(--mute);
    display: block;
    margin-top: 4px
}

.vid-sub {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 6px
}

    .vid-sub span {
        margin-top: 0
    }

.pdf-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    background: var(--gold-wash);
    padding: 3px 9px;
    border-radius: 20px;
    transition: background .14s,color .14s
}

    .pdf-chip:hover {
        background: var(--blue);
        color: #fff
    }

    .pdf-chip svg {
        width: 11px;
        height: 11px
    }

.vid-feature .vactions {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.vbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: 9px;
    transition: background .14s,border-color .14s,color .14s
}

    .vbtn svg {
        width: 15px;
        height: 15px
    }

    .vbtn.watch {
        background: #C38C20;
        color: #1C3655
    }

        .vbtn.watch:hover {
            background: var(--blue);
            color: #fff
        }

    .vbtn.pdf {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255,255,255,.35)
    }

        .vbtn.pdf:hover {
            background: var(--blue);
            border-color: var(--blue);
            color: #fff
        }

.res .vtag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--blue);
    background: #4D94FF; /*var(--blue-wash);*/
    padding: 2px 6px;
    border-radius: 5px;
    margin-left: 7px
}

    .res .vtag svg {
        width: 9px;
        height: 9px
    }

.modal-dl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C38C20;
    color: #1C3655;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 18px;
    border-radius: 10px;
    white-space: nowrap;
    transition: background .14s
}

    .modal-dl:hover {
        background: #F2982E
    }

    .modal-dl svg {
        width: 16px;
        height: 16px
    }

/* ---- Resource groups ---- */
.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.chip {
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
    background: var(--card);
    border: 1px solid var(--line);
    color: var(--mute);
    transition: all .14s;
}

    .chip:hover {
        border-color: var(--gold-soft);
        color: var(--navy)
    }

    .chip.on {
        background: #4D94FF;
        color: #fff;
        border-color: var(--blue)
    }

.group {
    margin-bottom: 30px
}

.group-label {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
}

    .group-label .num {
        /*font-family: 'Mulish';*/
        font-size: 12px;
        font-weight: 600;
        color: var(--gold);
        border: 1px solid var(--gold);
        border-radius: 7px;
        padding: 3px 8px;
    }

    .group-label h3 {
        /*font-family: 'Poppins';*/
        font-size: 16.5px;
        font-weight: 700;
        color: var(--navy)
    }

    .group-label .gcount {
        /*font-family: 'Mulish';*/
        font-size: 11.5px;
        color: var(--mute);
        margin-left: auto
    }

.res-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 11px
}

.res {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 13px 15px;
    box-shadow: var(--shadow);
    transition: transform .12s,border-color .12s,box-shadow .12s;
}

    .res:hover {
        transform: translateY(-2px);
        border-color: var(--blue);
        box-shadow: var(--shadow-lg)
    }

    .res .rspam {
        display: inline-flex;
        flex-direction: column;
    }

    .res .rname {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.3
    }

    .res .rsub {
        font-size: 11px;
        color: var(--mute);
        /*font-family: 'Mulish';*/
        margin-top: 2px
    }

    .res .arr {
        margin-left: auto;
        color: var(--mute);
        flex: none
    }

    .res:hover .arr {
        color: var(--blue)
    }

.no-results {
    padding: 30px;
    text-align: center;
    color: var(--mute);
    font-size: 14px;
    background: var(--card);
    border: 1px dashed var(--line);
    border-radius: var(--r)
}

/* ---- Turn times signature board ---- */
.board {
    background: var(--navy-ink);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.06);
}

.board-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
}

    .board-top h3 {
        /*font-family: 'Poppins';*/
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px
    }

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--good);
    box-shadow: 0 0 0 4px rgba(62,142,90,.22);
    animation: pulse 2.4s infinite
}

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .55
    }
}

.board-top .stamp {
    /*font-family: 'Mulish';*/
    font-size: 11px;
    color: #8295ab
}

.board-rows {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.trow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 20px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

    .trow:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.05)
    }

    .trow .tlabel {
        color: #cdd8e4;
        font-size: 13.5px
    }

    .trow .ttime {
        /*font-family: 'Mulish';*/
        font-size: 13.5px;
        font-weight: 600;
        color: var(--gold-soft);
        white-space: nowrap
    }

.board-foot {
    padding: 13px 20px;
    font-size: 11.5px;
    color: #8295ab;
    /*font-family: 'Mulish';*/
    line-height: 1.6
}

/* ---- Two-column layout with side widget ---- */
.layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
    margin-top: -100px;
    padding-top: 150px;
}

.main-col {
    min-width: 0
}

    .main-col .section:first-child {
        margin-top: 0
    }

.aside-col {
    position: sticky;
    top: 132px
}

.tt-widget {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    overflow: hidden
}

.ttw-head {
    background: #1C3655;
    color: #fff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

    .ttw-head h3 {
        /*font-family: 'Poppins';*/
        font-size: 14.5px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 9px
    }

    .ttw-head .live-dot {
        width: 8px;
        height: 8px
    }

    .ttw-head .upd {
        /*font-family: 'Mulish';*/
        font-size: 10.5px;
        color: #8295ab
    }

.ttw-rows {
    padding: 2px 18px
}

.ttw-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--line-soft);
    font-size: 12.5px
}

    .ttw-row:first-child {
        border-top: none
    }

    .ttw-row .k {
        color: var(--mute)
    }

    .ttw-row .v {
        /*font-family: 'Mulish';*/
        color: var(--navy);
        font-weight: 600;
        white-space: nowrap
    }

.tt-disclaimer {
    font-size: 11.5px;
    line-height: 1.55;
    color: var(--mute);
    background: #EFF1F3;
    border-top: 1px solid var(--line);
    padding: 14px 18px;
    text-align: justify;
}

    .tt-disclaimer a {
        display: block;
        width: fit-content;
        color: var(--navy);
        font-weight: 600;
        border-bottom: 1px solid var(--gold-soft);
        margin-top: 8px;
    }

@media(max-width:900px) {
    .layout {
        grid-template-columns: 1fr;
        margin-top: 32px
    }

    .aside-col {
        position: static
    }
}

/* ---- Accordions (CPL / Servicer) ---- */
.reference {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.acc {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    overflow: hidden
}

.acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    text-align: left;
}

    .acc-head .aico {
        width: 40px;
        height: 40px;
        flex: none;
        border-radius: 10px;
        background: #4D94FF; /*var(--blue);*/
        display: grid;
        place-items: center;
        color: #fff
    }

        .acc-head .aico svg {
            width: 20px;
            height: 20px
        }

    .acc-head .atext {
        flex: 1
    }

    .acc-head h3 {
        /*font-family: 'Poppins';*/
        font-size: 15.5px;
        font-weight: 700;
        color: var(--navy)
    }

    .acc-head p {
        font-size: 12px;
        color: var(--mute);
        margin-top: 2px
    }

    .acc-head .caret {
        color: var(--mute);
        transition: transform .25s
    }

.acc.open .acc-head .caret {
    transform: rotate(180deg);
    color: var(--gold)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.acc-body-in {
    padding: 2px 20px 20px
}

    .acc-body-in .blk {
        padding: 13px 0;
        border-top: 1px solid var(--line-soft)
    }

        .acc-body-in .blk:first-child {
            border-top: none
        }

    .acc-body-in .lbl {
        /*font-family: 'Mulish';*/
        font-size: 10.5px;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600;
        margin-bottom: 4px
    }

    .acc-body-in .val {
        font-size: 13.5px;
        color: var(--ink);
        line-height: 1.5
    }

        .acc-body-in .val a {
            color: var(--navy);
            font-weight: 600;
            border-bottom: 1px solid var(--gold-soft)
        }

/* ---- Footer ---- */
footer {
    background: var(--navy-ink);
    color: #9fb0c4;
    margin-top: 60px;
    padding: 40px 22px 30px
}

.foot-in {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start
}

    .foot-in .logo {
        margin-bottom: 14px
    }

.foot-contact {
    font-size: 13px;
    line-height: 1.7
}

    .foot-contact a {
        color: var(--gold-soft)
    }

.foot-links {
    display: flex;
    gap: 22px;
    font-size: 13px
}

    .foot-links a:hover {
        color: #fff
    }

.foot-legal {
    max-width: 1180px;
    margin: 26px auto 0;
    font-size: 11px;
    color: #5e718a;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 18px
}

/* ---- Video modal ---- */
.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(14,29,47,.72);
    backdrop-filter: blur(4px);
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

    .modal-bg.show {
        display: flex
    }

.modal {
    background: #fff;
    border-radius: var(--r);
    max-width: 760px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.modal-player {
    aspect-ratio: 16/9;
    background: var(--navy-ink);
    display: grid;
    place-items: center;
    text-align: center;
    color: #8295ab;
    position: relative;
}

    .modal-player .frame-note {
        /*font-family: 'Mulish';*/
        font-size: 12.5px;
        line-height: 1.7;
        max-width: 340px
    }

        .modal-player .frame-note b {
            color: var(--gold-soft);
            display: block;
            font-size: 14px;
            margin-bottom: 6px;
            /*font-family: 'Poppins'*/
        }

    .modal-player .pbig {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        border: 1.5px solid rgba(255,255,255,.4);
        display: grid;
        place-items: center;
        margin: 0 auto 14px
    }

        .modal-player .pbig svg {
            width: 24px;
            height: 24px;
            color: #fff;
            margin-left: 3px
        }

.modal-info {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

    .modal-info h3 {
        /*font-family: 'Poppins';*/
        font-size: 17px;
        color: var(--navy);
        font-weight: 700
    }

    .modal-info p {
        font-size: 12.5px;
        color: var(--mute);
        margin-top: 3px
    }

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--paper);
    display: grid;
    place-items: center;
    color: var(--ink);
    flex: none
}

    .modal-close:hover {
        background: var(--line)
    }

.hide {
    display: none !important
}

.vid-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
}

    .vid-thumb iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
/* ---- Responsive ---- */
@media(max-width:900px) {
    .quick-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .video-wrap {
        grid-template-columns: 1fr
    }

    .res-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .reference {
        grid-template-columns: 1fr
    }
}

@media(max-width:680px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: block
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr
    }

    .res-grid {
        grid-template-columns: 1fr
    }

    .board-rows {
        grid-template-columns: 1fr
    }

    .trow:nth-child(odd) {
        border-right: none
    }

    .mock-note {
        display: none
    }

    main {
        margin-top: -72px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}

/* ---- Resources mega-menu ---- */
.has-mega {
    position: static;
    display: flex;
    align-items: center
}

.mega-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 6px
}

    .mega-trigger .mcar {
        transition: transform .2s
    }

.has-mega:hover .mega-trigger .mcar, .has-mega:focus-within .mega-trigger .mcar {
    transform: rotate(180deg)
}

.mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--navy-deep);
    border-top: 1px solid rgba(195,140,32,.3);
    box-shadow: 0 22px 44px rgba(14,29,47,.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s,transform .18s,visibility .18s;
    z-index: 60
}

    .mega::before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        height: 18px
    }

.has-mega:hover .mega, .has-mega:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: none
}

.mega-in {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 22px;
    display: grid;
    grid-template-columns: repeat(4,1fr) 1.15fr;
    gap: 30px
}

.mega-col h4 {
    color: var(--gold-soft);
    /*font-family: 'Poppins';*/
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 13px
}

.mega-col a {
    display: block;
    color: #cdd8e4;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 0
}

    .mega-col a:hover {
        color: #4D94FF; /*var(--blue)*/
    }

    .mega-col a.lead-link {
        color: #fff;
        font-weight: 600
    }

        .mega-col a.lead-link span {
            display: block;
            font-size: 11.5px;
            font-weight: 500;
            color: var(--gold-soft);
            margin-top: 1px
        }

.mega-cta {
    background: linear-gradient(140deg,rgba(195,140,32,.20),rgba(195,140,32,.05));
    border: 1px solid rgba(195,140,32,.32);
    border-radius: 13px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .mega-cta p {
        color: #fff;
        /*font-family: 'Poppins';*/
        font-weight: 700;
        font-size: 15.5px;
        line-height: 1.3;
        margin-bottom: 14px
    }

    .mega-cta a {
        color: var(--gold-soft);
        font-weight: 700;
        font-size: 14px
    }

        .mega-cta a:hover {
            color: #fff
        }

@media(max-width:760px) {
    .mega {
        display: none
    }
}
