.btn-primary,
.eyebrow::before,
.nav-cta {
    background: var(--red)
}

.btn,
.dropdown-menu a,
a {
    text-decoration: none
}

.eyebrow,
.hero-card .ribbon {
    text-transform: uppercase;
    font-family: 'League Spartan', sans-serif
}

.lead-sec,
.stat,
.why .head {
    text-align: center
}

.hero-card img,
.lead-card .photo img,
.visual-frame img {
    object-fit: cover;
    display: block
}

.cta-band,
.detail>.detail-in,
.hero,
.hero-card,
.lead-card,
.mv-card,
.particles,
.visual-frame,
.why-card {
    overflow: hidden
}

.btn,
.detail h4,
.eyebrow,
.foot-col h4,
.hero-card .ribbon,
.prof-toggle,
body {
    font-family: 'League Spartan', sans-serif
}

:root {
    --navy: #144579;
    --navy-deep: #0d3157;
    --navy-darker: #0a2641;
    --red: #AC2929;
    --red-deep: #8f2121;
    --charcoal: #171717;
    --grey: #F4F5F7;
    --muted: #5b6573;
    --line: #e6e9ee;
    --white: #fff;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

.nav-links a:hover,
h1,
h2,
h3,
h4 {
    color: var(--navy)
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.16;
    font-weight: 600
}

a {
    color: inherit
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px
}

.eyebrow {
    letter-spacing: .22em;
    font-size: .74rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.btn,
.nav-cta,
.nav-links a {
    font-size: 1rem
}

.btn,
.nav-inner {
    align-items: center
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    display: inline-block
}

.btn {
    display: inline-flex;
    gap: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .01em;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
    transition: transform .25s var(--ease-out-expo), background .25s, box-shadow .25s;
    cursor: pointer
}

.desktop-cta,
.desktop-nav,
.nav-inner,
.nav-links {
    display: flex
}

.btn-primary {
    color: #fff;
    box-shadow: 0 8px 22px rgba(172, 41, 41, .32)
}

.btn-primary:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(172, 41, 41, .42)
}

.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, .5);
    color: #fff
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px)
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
    transition-delay: calc(var(--i, 0)*80ms)
}

.reveal.in {
    opacity: 1;
    transform: none
}

header.nav {
    position: sticky;
    top: 0;
    width: auto;
    z-index: 60;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px);
    transition: box-shadow .3s, height .3s;
    justify-content: space-between;
    align-items: center
}

.nav img,
.nav-inner {
    transition: height .3s
}

.nav-inner {
    justify-content: space-between;
    height: 76px
}

header.nav.scrolled .nav-inner {
    height: 64px
}

.nav img {
    width: auto;
    height: 40px;
    margin-left: -80px;
    margin-top: 10px
}

.nav-links {
    gap: 30px;
    align-items: center
}

.nav-links a {
    position: relative;
    color: #000
}

.nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    transition: width .3s var(--ease-out-expo)
}

.nav-links a.active::after,
.nav-links a:not(.nav-cta):hover::after,
.why-card:hover::before {
    width: 100%
}

.nav-links a.active {
    color: var(--red);
    border: none
}

.nav-cta {
    color: #fff !important;
    padding: 5px 22px;
    border-radius: 8px;
    font-weight: 600;
    margin-right: -80px;
    transition: background .25s, transform .25s var(--ease-out-expo)
}

.nav-cta:hover {
    background: var(--red-deep);
    transform: translateY(-2px)
}

.menu-toggle,
.mobile-nav {
    display: none
}

.hamburger-btn {
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: 300ms
}

.hamburger-btn span+span {
    margin-top: 6px
}

.hamburger-btn.is-open span:first-child {
    transform: translateY(8px) rotate(45deg)
}

.hamburger-btn.is-open span:nth-child(2) {
    opacity: 0
}

.hamburger-btn.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

@media (max-width:1024px) {
    .nav img {
        margin-left: 0;
        margin-top: 0
    }

    .desktop-cta,
    .desktop-nav {
        display: none
    }

    .menu-toggle,
    .mobile-nav.open {
        display: flex
    }

    .menu-toggle {
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: none;
        background: 0 0;
        cursor: pointer;
        font-size: 1.8rem;
        color: #fff
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        background: var(--navy-darker);
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 20px 24px
    }

    .mobile-nav a {
        padding: 14px 0
    }

    .mobile-nav details {
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .mobile-nav summary {
        cursor: pointer;
        padding: 14px 0;
        list-style: none;
        font-weight: 600
    }

    .mobile-nav details a {
        display: block;
        padding: 10px 20px
    }
}

.arrow,
.dropdown {
    display: inline-block
}

.dropdown {
    position: relative;
    height: 100%
}

.arrow {
    width: 1rem;
    height: 1rem;
    vertical-align: top;
    margin-left: 4px;
    transform-origin: center;
    transition: transform .2s
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 260px;
    width: 16rem;
    padding: 8px 0 12px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    z-index: 50
}

.dropdown-menu a {
    color: #374151;
    padding: 10px 20px;
    display: block;
    font-size: .875rem;
    text-align: left;
    font-weight: 400;
    transition: background-color .2s, color .2s
}

.dropdown-menu a.active {
    color: var(--primary-red);
    font-weight: 500;
    background-color: #f9fafb
}

.dropdown-menu a:hover {
    background-color: #f9fafb;
    color: var(--blue)
}

.dropdown:hover .dropdown-menu {
    display: block
}

.dropdown:hover .arrow,
.lead-card.open .prof-toggle svg {
    transform: rotate(180deg)
}

.hero {
    position: relative;
    background: radial-gradient(120% 120% at 80% 0, #1a5288 0, #144579 42%, #0d3157 78%, #0a2641 100%);
    color: #fff;
    isolation: isolate
}

.hero-card .ribbon,
.hero-glow,
.particles,
.particles i,
.visual-frame::after,
.why-card .n,
.why-card::before {
    position: absolute
}

.hero-glow {
    width: 520px;
    height: 520px;
    right: -140px;
    top: -160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(172, 41, 41, .34), transparent 68%);
    z-index: 0;
    filter: blur(6px)
}

.particles {
    inset: 0;
    z-index: 0
}

.particles i {
    bottom: -12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    animation: linear infinite rise
}

.cta-band,
.detail li,
.hero-card,
.hero-grid,
.hero-visual,
.mv-card,
.mv-card h2,
.mv-card p,
.visual-frame,
.why-card {
    position: relative
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0
    }

    10% {
        opacity: .7
    }

    100% {
        transform: translateY(-92vh) scale(.4);
        opacity: 0
    }
}

.hero-grid {
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 54px;
    align-items: center;
    padding: 96px 0 104px
}

.hero .eyebrow,
.mv-card.accent .eyebrow {
    color: #ffb3ba
}

.hero .eyebrow::before,
.mv-card.accent .eyebrow::before {
    background: #ffb3ba
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -.5px
}

.cta-band h2 .em,
.hero h1 .em {
    font-style: italic;
    color: #ffd9dd;
    font-weight: 500
}

.hero p.lead {
    font-size: 1.16rem;
    color: #d7e2f1;
    margin: 24px 0 34px;
    max-width: 560px;
    font-weight: 300
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-visual {
    z-index: 2
}

.hero-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .42);
    transform: perspective(1200px) rotateY(-4deg);
    transition: transform .6s var(--ease-out-expo)
}

.hero-card:hover {
    transform: perspective(1200px) rotateY(0)
}

.hero-card img {
    width: 100%;
    aspect-ratio: 4/3.4
}

.hero-card .ribbon {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 18px 22px;
    background: linear-gradient(0deg, rgba(10, 38, 65, .86), transparent);
    font-size: .72rem;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .92)
}

.lead-body .tagline,
.mv-card.accent p,
.stat .num,
.why-card .n {
    font-family: 'Playfair Display', serif
}

@media(max-width:880px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 64px 0 72px
    }

    .hero-visual {
        order: -1
    }

    .hero-card {
        transform: none
    }
}

.strip {
    background: var(--navy-darker);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    padding: 34px 22px;
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.stat:last-child {
    border-right: none
}

.stat .num {
    font-weight: 600;
    font-size: 2.4rem;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px
}

.detail h4,
.foot-col h4,
.stat .lbl {
    letter-spacing: .12em;
    text-transform: uppercase
}

.stat .lbl {
    font-size: .78rem;
    color: #9fb2cc;
    margin-top: 10px
}

.mv {
    padding: 96px 0
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px
}

.mv-card {
    padding: 46px 44px;
    border-radius: 18px
}

.mv-card.light {
    background: var(--grey);
    border: 1px solid var(--line)
}

.mv-card.accent {
    background: linear-gradient(155deg, #144579, #0d3157);
    color: #fff
}

.mv-card.accent::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(172, 41, 41, .4), transparent 70%)
}

.mv-card h2 {
    font-size: 1.7rem;
    margin-bottom: 16px
}

.mv-card.accent h2 {
    color: #fff
}

.mv-card .eyebrow {
    margin-bottom: 18px
}

.mv-card p {
    color: var(--muted);
    font-size: 1.02rem
}

.mv-card.accent p {
    color: #dbe4f1;
    font-size: 1.24rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5
}

@media(max-width:780px) {
    .mv-grid {
        grid-template-columns: 1fr
    }

    .mv {
        padding: 70px 0
    }
}

.split {
    padding: 90px 0
}

.split.alt {
    background: var(--grey)
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.split.reverse .col-text {
    order: 2
}

.split h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 6px
}

.split h2 .accent {
    font-style: italic;
    color: var(--red)
}

.split .lead-line {
    margin: 20px 0 18px
}

.split p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 1.04rem
}

.creds strong,
.split p strong {
    color: var(--navy);
    font-weight: 600
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 18px 0 6px
}

.platforms span {
    font-weight: 500;
    font-size: .84rem;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--line);
    padding: 8px 15px;
    border-radius: 30px;
    transition: transform .25s var(--ease-out-expo), border-color .25s, color .25s, box-shadow .25s
}

.platforms span:hover {
    transform: translateY(-3px);
    border-color: var(--navy);
    box-shadow: 0 8px 18px rgba(20, 69, 121, .14)
}

.visual-frame {
    border-radius: 18px;
    box-shadow: 0 24px 54px rgba(13, 49, 87, .16)
}

.visual-frame img {
    width: 100%;
    aspect-ratio: 4/3.2;
    transition: transform 1.1s var(--ease-out-expo)
}

.visual-frame:hover img {
    transform: scale(1.05)
}

.visual-frame::after {
    content: "";
    inset: 0;
    border: 1px solid rgba(20, 69, 121, .06);
    border-radius: 18px;
    pointer-events: none
}

@media(max-width:860px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .split.reverse .col-text {
        order: 0
    }

    .col-visual {
        order: -1
    }

    .split {
        padding: 64px 0
    }
}

.why {
    padding: 100px 0
}

.why .head {
    max-width: 680px;
    margin: 0 auto 56px
}

.why h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    margin-bottom: 14px
}

.why .head p {
    color: var(--muted);
    font-size: 1.06rem
}

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

.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 34px 30px;
    transition: transform .35s var(--ease-out-expo), box-shadow .35s, border-color .35s
}

.why-card::before {
    content: "";
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background: var(--red);
    transition: width .4s var(--ease-out-expo)
}

.why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 46px rgba(13, 49, 87, .13);
    border-color: transparent
}

.why-card .ic {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    background: linear-gradient(150deg, rgba(20, 69, 121, .1), rgba(20, 69, 121, .04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform .4s var(--ease-out-expo)
}

.why-card:hover .ic {
    transform: scale(1.08) rotate(-4deg)
}

.why-card .ic svg {
    width: 26px;
    height: 26px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 1.7
}

.why-card .n {
    top: 26px;
    right: 30px;
    font-size: 1.1rem;
    color: var(--line);
    font-weight: 600
}

.why-card h3 {
    font-size: 1.18rem;
    margin-bottom: 10px
}

.why-card p {
    color: var(--muted);
    font-size: .98rem
}

@media(max-width:920px) {
    .why-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .why-grid {
        grid-template-columns: 1fr
    }

    .why {
        padding: 70px 0
    }
}

.lead-sec {
    padding: 96px 0;
    background: var(--grey)
}

.lead-sec h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 14px
}

.lead-sec .intro {
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 50px
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
    align-items: start
}

.lead-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line);
    transition: transform .35s var(--ease-out-expo), box-shadow .35s;
    display: flex;
    flex-direction: column
}

.lead-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(13, 49, 87, .14)
}

.lead-card .photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--grey)
}

.lead-card .photo img {
    width: 100%;
    height: 100%;
    object-position: center top;
    transition: transform .9s var(--ease-out-expo)
}

.lead-card:hover .photo img {
    transform: scale(1.04)
}

.lead-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.lead-body h3 {
    font-size: 1.4rem;
    margin-bottom: 2px
}

.lead-body .role {
    color: var(--red);
    font-weight: 600;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px
}

.lead-body .tagline {
    font-style: italic;
    color: var(--navy);
    font-size: 1.06rem;
    line-height: 1.4;
    margin-bottom: 14px
}

.lead-body .bio {
    color: var(--muted);
    font-size: .96rem;
    margin-bottom: 18px
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px
}

.tags span {
    font-size: .73rem;
    font-weight: 500;
    color: var(--navy);
    background: rgba(20, 69, 121, .06);
    border: 1px solid rgba(20, 69, 121, .1);
    padding: 5px 11px;
    border-radius: 20px;
    transition: background .2s, transform .2s var(--ease-out-expo)
}

.tags span:hover {
    background: rgba(20, 69, 121, .12);
    transform: translateY(-2px)
}

.prof-toggle {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: 0 0;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
    padding: 4px 0;
    transition: color .2s
}

.cta-band::before,
.detail li::after,
.detail li::before {
    content: "";
    position: absolute;
    border-radius: 50%
}

.creds,
.detail h4 {
    color: var(--muted)
}

.prof-toggle:hover {
    color: var(--red)
}

.prof-toggle svg {
    width: 15px;
    height: 15px;
    transition: transform .35s var(--ease-out-expo)
}

.detail {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s var(--ease-out-expo)
}

.lead-card.open .detail {
    grid-template-rows: 1fr
}

.detail h4 {
    font-size: .72rem;
    margin: 20px 0 12px
}

.detail ul {
    list-style: none;
    margin-bottom: 8px
}

.detail li {
    padding-left: 24px;
    margin-bottom: 11px;
    font-size: .92rem;
    color: var(--charcoal);
    line-height: 1.5
}

.detail li::before {
    left: 0;
    top: 6px;
    width: 13px;
    height: 13px;
    background: rgba(172, 41, 41, .12)
}

.detail li::after {
    left: 4px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--red)
}

.creds {
    font-size: .85rem;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: 6px;
    line-height: 1.6
}

@media(max-width:680px) {
    .strip-inner {
        grid-template-columns: 1fr 1fr
    }

    .stat:nth-child(2) {
        border-right: none
    }

    .stat {
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

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

.cta-band {
    background: radial-gradient(120% 140% at 20% 100%, #1a5288 0, #144579 45%, #0d3157 100%);
    color: #fff;
    text-align: center;
    padding: 96px 0
}

.cta-band::before {
    right: -80px;
    top: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(172, 41, 41, .32), transparent 70%)
}

.cta-band .btn,
.cta-band h2,
.cta-band p {
    position: relative
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    margin-bottom: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto
}

.cta-band p {
    color: #cfdbeb;
    max-width: 540px;
    margin: 0 auto 32px;
    font-size: 1.08rem;
    font-weight: 300
}

footer {
    background: #0a2238;
    color: #9fb2cc;
    padding: 56px 0 30px;
    font-weight: 400;
    width: 100%
}

.foot-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 34px;
    align-items: flex-start;
    padding-bottom: 20px
}

footer img {
    height: 60px;
    margin-top: 50px
}

.foot-tag {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #fff;
    font-size: 1.2rem
}

.foot-bottom,
.foot-values {
    color: #6b80a0;
    display: flex;
    font-size: .82rem
}

.foot-col h4 {
    color: #fff;
    font-size: .78rem;
    margin-bottom: 16px
}

.foot-col a {
    display: block;
    color: #9fb2cc;
    font-size: .95rem;
    margin-bottom: 11px;
    transition: color .2s, padding-left .2s
}

.foot-col a:hover {
    color: #fff;
    padding-left: 4px
}

.foot-bottom {
    padding-top: 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 30px
}

.foot-values {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 20px;
    gap: 100px;
    justify-content: center;
    flex-wrap: wrap
}

@media(prefers-reduced-motion:reduce) {

    .hero-card,
    .reveal {
        transform: none !important
    }

    * {
        animation: none !important
    }

    .reveal {
        opacity: 1 !important;
        transition: opacity .3s !important
    }

    html {
        scroll-behavior: auto
    }
}