@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --navy: #07162d;
    --navy2: #081d3a;
    --blue: #1640a8;
    --blue2: #1f5bff;
    --yellow: #ffc107;
    --yellow2: #e9a700;
    --red: #e31e24;
    --text: #07162d;
    --muted: #5c667a;
    --line: #dbe2ee;
    --light: #f5f7fb;
    --white: #fff;
    --shadow: 0 16px 40px rgba(8, 29, 58, .12);
    --radius: 14px
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Montserrat, Arial, sans-serif;
    color: var(--text);
    background: #fff
}

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

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

/* .navbar {
    height: 78px;
    background: #fff;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .06)
}

.nav-inner {
    width: min(1280px, 95%);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 26px
}

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

.rbnl {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1
}

.rbnl .r,
.rbnl .n,
.rbnl .l {
    color: #1640a8
}

.rbnl .b {
    color: #e31e24
} */

/* .brand small {
    font-size: 11px;
    line-height: 1.15;
    font-weight: 800;
    border-left: 1px solid #888;
    padding-left: 11px
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center
}

.nav-links a {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--navy2);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-links a.active {
    border-color: var(--blue)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 8px;
    border: 0;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    padding: 15px 28px;
    cursor: pointer
}

.btn-yellow {
    background: linear-gradient(180deg, #ffc70e, #f2ad00);
    color: #07162d;
    box-shadow: inset 0 -2px rgba(0, 0, 0, .08)
}

.btn-blue {
    background: var(--blue);
    color: #fff
} */

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--blue-accent, #1e4fbf);
    color: var(--blue-accent, #1e4fbf);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    padding: 13px 26px;
    border-radius: var(--radius-pill, 999px);
    background: #fff;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-outline:hover {
    background: var(--blue-accent, #1e4fbf);
    color: #fff;
}
.btn-outline svg {
    transition: transform .2s ease;
}
.btn-outline:hover svg {
    transform: translateX(3px);
}

.search {
    font-size: 24px;
    color: #061947
}

.hamb {
    display: none;
    background: none;
    border: 0;
    font-size: 26px;
    color: #061947
}

.hero {
    position: relative;
    min-height: 430px;
    background: radial-gradient(circle at 70% 10%, #1359c8 0, #081d3a 34%, #06142a 82%);
    color: #fff;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 15, 35, .96) 0%, rgba(6, 20, 42, .86) 38%, rgba(6, 20, 42, .34) 67%, rgba(6, 20, 42, .08));
    z-index: 1
}

.hero .container {
    position: relative;
    z-index: 3;
    padding: 58px 0
}

.hero h1 {
    font-size: 46px;
    line-height: 1.12;
    margin: 14px 0 18px;
    text-transform: uppercase;
    letter-spacing: -1px
}

.hero h1 span,
.yellow {
    color: var(--yellow)
}

.eyebrow {
    font-size: 17px;
    font-weight: 900;
    color: var(--yellow);
    text-transform: uppercase
}

.underline {
    width: 76px;
    height: 4px;
    background: var(--yellow);
    margin: 18px 0
}

.hero p {
    font-size: 18px;
    line-height: 1.65;
    max-width: 610px
}

.hero-art {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    opacity: .95;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover
}

.hero-art.home {
    background-image: linear-gradient(120deg, transparent 10%, rgba(0, 0, 0, .2)), url('assets/home-hero.svg')
}

.hero-art.about,
.hero-art.contact {
    background-image: url('assets/images/building-hero.svg')
}

.hero-art.careers {
    background-image: url('assets/images/careers-hero.svg')
}

.hero-art.media {
    background-image: url('assets/images/media-hero.svg')
}

.hero-art.investors {
    background-image: url('assets/images/investor-hero.svg')
}

.hero-art.products {
    background-image: url('assets/products-hero.svg')
}

.stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(255, 255, 255, .35);
    padding-right: 28px
}

.stat i {
    width: 54px;
    height: 54px;
    border: 1.5px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px
}

.stat strong {
    font-size: 24px;
    color: #fff
}

.stat span {
    display: block;
    font-size: 12px
}

.section {
    padding: 34px 0
}

.light {
    background: var(--light)
}

.title {
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 28px
}

.title:after,
.sec-title:after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: var(--yellow);
    margin: 8px auto 0
}

.sec-title {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 24px
}

.cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.card {
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(8, 29, 58, .04)
}

.logo-badge {
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 14px
}

.round-logo {
    width: 72px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #093894, #0ca2ee);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 20px;
    line-height: .9;
    border-top: 5px solid var(--yellow)
}

.square-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #6b2dc5;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900
}

.red-logo {
    color: #e31e24;
    font-weight: 900;
    font-size: 22px;
    line-height: 1
}

.vibe-logo {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, #1a46b8, #ffce21, #d84dff);
    -webkit-background-clip: text;
    color: transparent
}

.card h3 {
    font-size: 15px;
    margin: 0 0 14px
}

.card p {
    font-size: 12px;
    line-height: 1.7;
    color: #253152
}

.link {
    font-size: 12px;
    font-weight: 900;
    color: var(--blue);
    display: inline-flex;
    gap: 8px;
    align-items: center
}

.dark-panel {
    background: linear-gradient(135deg, #07162d, #092b64);
    color: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: var(--shadow)
}

.features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0
}

.feature {
    text-align: center;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, .25)
}

.feature:last-child {
    border-right: 0
}

.feature i {
    width: 58px;
    height: 58px;
    border: 1.2px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    font-size: 24px
}

.feature strong {
    font-size: 22px;
    color: var(--yellow)
}

.feature h4 {
    margin: 6px 0;
    font-size: 14px
}

.feature p {
    font-size: 12px;
    line-height: 1.6;
    color: #dfe8ff
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    align-items: stretch
}

.box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(8, 29, 58, .04)
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.icon-block {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px
}

.icon-block i {
    font-size: 34px;
    color: var(--blue);
    margin-bottom: 12px
}

.icon-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0
}

.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 22px;
    position: relative
}

.timeline:before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 44px;
    height: 3px;
    background: var(--blue)
}

.tl {
    text-align: center;
    position: relative;
    z-index: 2
}

.tl i {
    width: 68px;
    height: 68px;
    border: 1px solid #b8c7e5;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    margin: auto;
    color: var(--blue);
    font-size: 26px
}

.tl b {
    display: block;
    margin: 12px 0 8px;
    color: #082a77
}

.leaders {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.leader {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
    padding: 14px
}

.avatar {
    height: 96px;
    background: linear-gradient(#edf2f8, #fff);
    border-radius: 8px;
    margin-bottom: 10px;
    display: grid;
    place-items: end center;
    font-size: 70px;
    color: #111
}

.leader h4 {
    color: #0d3c9e;
    margin: 5px 0;
    font-size: 13px
}

.leader p {
    font-size: 11px;
    line-height: 1.5;
    color: #253152
}

.footer {
    background: radial-gradient(circle at 60% 20%, #0d3d82, #07162d 60%);
    color: #fff;
    padding: 38px 0 14px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1.2fr;
    gap: 34px
}

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

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer li,
.footer p,
.footer a {
    font-size: 14px;
    line-height: 1.7;
    color: #fff
}

.social {
    display: flex;
    gap: 12px;
    margin-top: 16px
}

.social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #07162d;
    display: grid;
    place-items: center
}

.bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 28px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.thumb {
    height: 160px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(135deg, #07162d, #1f5bff);
    position: relative;
    overflow: hidden
}

.thumb:after {
    content: "";
    position: absolute;
    inset: 20px;
    background: radial-gradient(circle, #ffc107, transparent 12%), linear-gradient(120deg, transparent, #d84dff);
    opacity: .75
}

.news-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden
}

.news-card h3 {
    font-size: 16px;
    padding: 16px;
    margin: 0;
    line-height: 1.4
}

.news-card small {
    display: block;
    padding: 0 16px 16px;
    color: #53617a
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cdd5e5;
    border-radius: 6px;
    padding: 14px;
    font: inherit
}

.full {
    grid-column: 1/-1
}

.resources {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px
}

.job-grid,
.benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, #07162d, #082d6b);
    color: #fff;
    border-radius: 12px;
    padding: 26px 34px
}

.mobile-menu {
    display: none
}

@media (max-width:1000px) {
    .hamb {
        display: block
    }

    .nav-links,
    .nav-actions .btn-yellow {
        display: none
    }

    .nav-inner {
        justify-content: space-between
    }

    .brand {
        min-width: auto
    }

    .hero {
        min-height: 520px
    }

    .hero-art {
        width: 100%;
        opacity: .35
    }

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

    .features,
    .icon-row,
    .resources {
        grid-template-columns: repeat(2, 1fr)
    }

    .leaders,
    .job-grid,
    .benefits {
        grid-template-columns: repeat(3, 1fr)
    }

    .two-col {
        grid-template-columns: 1fr
    }

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

    .news-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .mobile-menu.show {
        display: flex;
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 30;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow)
    }

    .mobile-menu a {
        padding: 14px;
        font-weight: 800;
        border-bottom: 1px solid #eee
    }
}

@media (max-width:650px) {
    .rbnl {
        font-size: 32px
    }

    .brand small {
        font-size: 9px
    }

    .hero .container {
        padding: 42px 0
    }

    .hero h1 {
        font-size: 31px
    }

    .hero p {
        font-size: 15px
    }

    .stats {
        gap: 14px
    }

    .stat {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        padding: 0 0 12px
    }

    .cards,
    .mini-grid,
    .features,
    .icon-row,
    .leaders,
    .news-grid,
    .resources,
    .job-grid,
    .benefits {
        grid-template-columns: 1fr
    }

    .timeline {
        flex-direction: column;
        gap: 20px
    }

    .timeline:before {
        display: none
    }

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

    .form {
        grid-template-columns: 1fr
    }

    .cta {
        flex-direction: column;
        text-align: center
    }

    .bottom {
        font-size: 12px
    }

    .section {
        padding: 26px 0
    }
}