/* Lion Gate Investments — Premium Homepage v3 */
:root {
    --navy-1000: #020b16;
    --navy-950: #04101f;
    --navy-900: #07172b;
    --navy-850: #0a203b;
    --navy-800: #0d2a4d;
    --blue: #145aa6;
    --gold: #d8ad45;
    --gold-light: #f1cf72;
    --cream: #f7f3e8;
    --ink: #091a32;
    --muted: #607089;
    --line: #dce3ec;
    --soft: #f3f6fa;
    --white: #ffffff;
    --success: #38c77b;
    --danger: #ef5a64;
    --shadow: 0 20px 60px rgba(1, 12, 26, .12);
    --header-h: 92px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Manrope", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    transform: translateY(-150%);
    padding: 10px 14px;
    color: #fff;
    border-radius: 8px;
    background: var(--navy-900);
}

.skip-link:focus {
    transform: translateY(0);
}

.content-shell,
.header-shell,
.hero-shell {
    width: min(1400px, calc(100% - 64px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-h);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(3, 13, 27, .97);
    backdrop-filter: blur(18px);
}

.header-shell {
    height: 100%;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.brand {
    min-width: 0;
    display: flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 175px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.desktop-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.35vw, 25px);
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    padding: 10px 0;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.1px;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--gold-light);
}

.desktop-nav a.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.open-account-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    color: #0a1a31;
    background: linear-gradient(135deg, #f2d275, #d9ab3e);
    box-shadow: 0 8px 25px rgba(216,173,69,.2);
    font-size: 11px;
    font-weight: 800;
}

.open-account-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.open-account-button svg,
.client-login-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.client-login-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.86);
    font-size: 11px;
    font-weight: 700;
}

.client-login-link:hover {
    color: var(--gold-light);
}

.mobile-actions,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - var(--header-h)));
    overflow: hidden;
    color: #fff;
    background: var(--navy-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    background-position: center;
    background-size: cover;
    transition:
        opacity .75s ease,
        visibility .75s ease,
        transform 6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide-one {
    background-image:
        linear-gradient(90deg, rgba(3,14,29,.94) 0%, rgba(3,14,29,.72) 44%, rgba(3,14,29,.16) 77%),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=88");
}

.hero-slide-two {
    background-image:
        linear-gradient(90deg, rgba(3,14,29,.94) 0%, rgba(3,14,29,.70) 44%, rgba(3,14,29,.14) 77%),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=88");
}

.hero-slide-three {
    background-image:
        linear-gradient(90deg, rgba(3,14,29,.94) 0%, rgba(3,14,29,.72) 45%, rgba(3,14,29,.14) 78%),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=2200&q=88");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 18%, rgba(218,175,72,.12), transparent 25%),
        linear-gradient(180deg, transparent 60%, rgba(2,8,17,.55));
}

.hero-shell {
    position: relative;
    z-index: 2;
    min-height: min(760px, calc(100vh - var(--header-h)));
    display: flex;
    align-items: center;
    padding: 80px 0 130px;
}

.hero-copy {
    width: min(730px, 58vw);
}

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px 0 20px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(58px, 6.6vw, 104px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.045em;
}

.hero-copy h1 em {
    display: block;
    color: var(--gold-light);
    font-style: normal;
}

.hero-copy > p {
    width: min(650px, 100%);
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.75;
}

.hero-buttons,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    transition: .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    color: #081a30;
    background: linear-gradient(135deg, #f1d075, #d7a93a);
    box-shadow: 0 12px 28px rgba(215,169,58,.18);
}

.button-glass {
    color: #fff;
    border-color: rgba(255,255,255,.32);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}

.button-dark {
    color: #fff;
    background: var(--navy-900);
}

.hero-controls {
    position: absolute;
    z-index: 5;
    right: max(32px, calc((100vw - 1400px)/2 + 32px));
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 10px;
    color: #fff;
    background: rgba(4,16,31,.35);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.hero-dots {
    display: flex;
    gap: 9px;
}

.hero-dots button {
    width: 31px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--gold-light);
}

.market-strip {
    min-height: 66px;
    display: grid;
    grid-template-columns: 185px 1fr;
    align-items: center;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    background: #020c19;
    overflow: hidden;
}

.market-label {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-left: max(32px, calc((100vw - 1400px)/2));
    border-right: 1px solid rgba(255,255,255,.1);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.market-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(56,199,123,.1);
}

.ticker-window {
    overflow: hidden;
}

.ticker-track {
    width: max-content;
    display: flex;
    animation: ticker 28s linear infinite;
}

.ticker-track span {
    min-width: 225px;
    padding: 0 25px;
    border-right: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.76);
    font-size: 10px;
}

.ticker-track b {
    margin-right: 8px;
    color: #fff;
}

.ticker-track i {
    margin-left: 8px;
    font-style: normal;
}

.up { color: #3ed88b; }
.down { color: #ff6d75; }

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-45%); }
}

.section {
    padding: 105px 0;
}

.stats-section {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.stats-grid {
    min-height: 132px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid article {
    display: grid;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 18px;
    padding: 24px 30px;
    border-right: 1px solid var(--line);
}

.stats-grid article:last-child {
    border-right: 0;
}

.stat-icon {
    grid-row: 1 / 3;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid #ead69c;
    border-radius: 50%;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
}

.stats-grid strong {
    align-self: end;
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.stats-grid p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.solutions-section {
    color: #fff;
    background:
        radial-gradient(circle at 10% 20%, rgba(30,86,145,.28), transparent 27%),
        linear-gradient(145deg, #04101f, #071c34);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.section-heading h2,
.performance-copy h2,
.why-copy h2,
.recognition-grid h2,
.cta-card h2 {
    margin: 10px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.section-heading > p {
    width: min(520px, 45%);
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.8;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 24px;
    overflow: hidden;
}

.solution-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border-right: 1px solid rgba(255,255,255,.11);
    background: rgba(255,255,255,.025);
    transition: .25s ease;
}

.solution-card:last-child {
    border-right: 0;
}

.solution-card:hover {
    background: rgba(255,255,255,.075);
    transform: translateY(-3px);
}

.solution-card .number {
    color: rgba(255,255,255,.28);
    font-family: "Playfair Display", serif;
    font-size: 19px;
}

.solution-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 40px 0 22px;
    color: var(--gold-light);
    border: 1px solid rgba(238,200,101,.5);
    border-radius: 15px;
    font-size: 26px;
}

.solution-card h3 {
    margin: 0 0 11px;
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.solution-card p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.75;
}

.solution-card .learn {
    margin-top: auto;
    padding-top: 30px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
}

.performance-section {
    background: var(--soft);
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    gap: 90px;
}

.performance-copy > p,
.why-copy > p,
.recognition-grid > div > p {
    margin: 24px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.text-link {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.performance-panel {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.performance-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.performance-panel-head small,
.performance-panel-head strong {
    display: block;
}

.performance-panel-head small {
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
}

.performance-panel-head strong {
    margin-top: 4px;
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.performance-panel-head > span {
    padding: 7px 10px;
    color: #5a491c;
    border-radius: 999px;
    background: #fbf1d5;
    font-size: 9px;
    font-weight: 800;
}

.allocation {
    display: grid;
    gap: 19px;
    margin: 27px 0;
}

.allocation > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px 14px;
}

.allocation label,
.allocation span {
    font-size: 10px;
    font-weight: 700;
}

.allocation i {
    grid-column: 1 / 3;
    position: relative;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9eef4;
}

.allocation i::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--w);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--navy-800), var(--gold));
}

.fine-print {
    margin: 0;
    color: #8994a5;
    font-size: 9px;
    line-height: 1.6;
}

.why-section {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: .95fr 1fr;
    align-items: stretch;
    gap: 80px;
}

.why-image {
    min-height: 650px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(4,18,36,.04), rgba(4,18,36,.38)),
        url("https://images.unsplash.com/photo-1560472354-b33ff0c44a43?auto=format&fit=crop&w=1400&q=86")
        center/cover;
    box-shadow: var(--shadow);
}

.why-copy {
    align-self: center;
}

.why-list {
    margin: 35px 0;
    border-top: 1px solid var(--line);
}

.why-list article {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.why-list article > span {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.why-list h3 {
    margin: 0 0 5px;
    font-size: 14px;
}

.why-list p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.insights-section {
    background: var(--soft);
}

.insights-section .section-heading > p {
    color: var(--muted);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

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

.insight-image {
    height: 230px;
    background-position: center;
    background-size: cover;
}

.insight-one {
    background-image: url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1200&q=86");
}

.insight-two {
    background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1000&q=86");
}

.insight-three {
    background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1000&q=86");
}

.insight-body {
    padding: 24px;
}

.insight-body > span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.insight-body h3 {
    margin: 10px 0;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    line-height: 1.2;
}

.insight-body p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.insight-body a {
    display: inline-block;
    margin-top: 13px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.testimonials-section {
    background: #fff;
}

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

.testimonials-grid blockquote {
    margin: 0;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--soft);
}

.testimonials-grid blockquote.featured-quote {
    color: #fff;
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.stars {
    color: var(--gold);
    letter-spacing: .1em;
}

.testimonials-grid blockquote p {
    margin: 22px 0;
    font-family: "Playfair Display", serif;
    font-size: 21px;
    line-height: 1.45;
}

.testimonials-grid blockquote footer {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.featured-quote footer {
    color: rgba(255,255,255,.55) !important;
}

.recognition-section {
    color: #fff;
    background: linear-gradient(135deg, #061426, #0b2748);
}

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

.recognition-grid > div > p {
    color: rgba(255,255,255,.58);
}

.award-list {
    display: grid;
    gap: 13px;
}

.award-list article {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 18px;
    padding: 19px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
}

.award-list article > span {
    color: var(--gold-light);
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.award-list strong,
.award-list small {
    display: block;
}

.award-list strong {
    font-size: 13px;
}

.award-list small {
    margin-top: 4px;
    color: rgba(255,255,255,.48);
    font-size: 9px;
}

.cta-section {
    padding: 70px 0;
    background: var(--soft);
}

.cta-card {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 55px;
    color: #fff;
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 10%, rgba(218,175,72,.24), transparent 27%),
        linear-gradient(135deg, #04101f, #0a2b50);
    box-shadow: var(--shadow);
}

.cta-card > div:first-child {
    max-width: 780px;
}

.cta-card p {
    max-width: 700px;
    color: rgba(255,255,255,.62);
    line-height: 1.8;
}

.site-footer {
    color: #fff;
    background: #020b16;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 50px;
    padding: 70px 0 45px;
}

.footer-brand img {
    width: 190px;
    height: 70px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 330px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 8px;
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255,255,255,.55);
    font-size: 10px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-contact {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-contact strong,
.footer-contact span {
    display: block;
}

.footer-contact strong {
    font-size: 11px;
}

.footer-contact span {
    margin-top: 4px;
    color: rgba(255,255,255,.45);
    font-size: 9px;
}

.footer-contact a {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
}

.footer-bottom {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: rgba(255,255,255,.34);
    font-size: 8px;
}

/* Desktop widths */
@media (max-width: 1270px) {
    .header-shell {
        grid-template-columns: 260px minmax(0,1fr) auto;
        gap: 16px;
    }

    .brand img {
        width: 175px;
        height: auto;
    }

    .desktop-nav {
        gap: 13px;
    }

    .desktop-nav a {
        font-size: 10px;
    }

    .open-account-button {
        padding-inline: 13px;
    }

    .client-login-link span {
        display: none;
    }

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

    .solution-card {
        border-bottom: 1px solid rgba(255,255,255,.11);
    }
}

/* Mobile navigation starts before desktop becomes cramped */
@media (max-width: 1020px) {
    :root {
        --header-h: 82px;
    }

    .content-shell,
    .header-shell,
    .hero-shell {
        width: min(100% - 36px, 920px);
    }

    .site-header {
        height: var(--header-h);
    }

    .header-shell {
        grid-template-columns: minmax(92px, 1fr) auto;
        gap: 10px;
    }

    .desktop-nav,
    .desktop-actions {
        display: none;
    }

    .brand img {
        width: 175px;
        height: auto;
    }

    .mobile-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .mobile-open-account {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        border-radius: 9px;
        color: #0a1b32;
        background: linear-gradient(135deg, #f2d275, #d7a93a);
        font-size: 10px;
        font-weight: 800;
        white-space: nowrap;
    }

    .mobile-login,
    .menu-toggle {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 9px;
        color: #fff;
        background: rgba(255,255,255,.04);
    }

    .mobile-login svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
    }

    .menu-toggle {
        padding: 9px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
        display: block;
        margin: 2px 0;
        border-radius: 999px;
        background: currentColor;
        transition: .2s ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-menu {
        position: absolute;
        top: var(--header-h);
        right: 0;
        left: 0;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        padding: 18px;
        border-top: 1px solid rgba(255,255,255,.08);
        background: rgba(2,11,22,.985);
        box-shadow: 0 30px 60px rgba(0,0,0,.3);
    }

    .mobile-menu:not([hidden]) {
        display: block;
    }

    .mobile-menu nav {
        display: grid;
    }

    .mobile-menu nav a {
        padding: 15px 3px;
        color: rgba(255,255,255,.82);
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 13px;
        font-weight: 700;
    }

    .mobile-menu-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .mobile-menu-actions .open-account-button,
    .mobile-menu-actions .client-login-link {
        min-height: 46px;
        justify-content: center;
        border-radius: 9px;
        border: 1px solid rgba(255,255,255,.13);
    }

    .mobile-menu-actions .client-login-link {
        background: rgba(255,255,255,.04);
    }

    .hero {
        min-height: 720px;
    }

    .hero-shell {
        min-height: 720px;
        padding: 70px 0 135px;
    }

    .hero-copy {
        width: min(680px, 86vw);
    }

    .hero-copy h1 {
        font-size: clamp(52px, 9vw, 82px);
    }

    .hero-controls {
        right: 18px;
        bottom: 28px;
    }

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

    .stats-grid article {
        border-bottom: 1px solid var(--line);
    }

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

    .performance-grid,
    .why-grid,
    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-image {
        min-height: 500px;
    }

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

    .insight-card.featured {
        grid-column: 1 / 3;
    }

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

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

/* Phone layout */
@media (max-width: 620px) {
    :root {
        --header-h: 76px;
    }

    .content-shell,
    .header-shell,
    .hero-shell {
        width: calc(100% - 28px);
    }

    .header-shell {
        grid-template-columns: minmax(80px, 1fr) auto;
    }

    .brand img {
        width: 145px;
        height: auto;
    }

    .mobile-actions {
        gap: 6px;
    }

    .mobile-open-account {
        min-height: 36px;
        padding: 0 9px;
        border-radius: 8px;
        font-size: 8.5px;
        letter-spacing: -.1px;
    }

    .mobile-login,
    .menu-toggle {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 8px;
    }

    .mobile-menu {
        top: var(--header-h);
    }

    .mobile-menu-actions {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 745px;
    }

    .hero-slide-one {
        background-position: 58% center;
    }

    .hero-slide-two,
    .hero-slide-three {
        background-position: 58% center;
    }

    .hero-slide {
        background-image:
            linear-gradient(180deg, rgba(3,14,29,.46) 0%, rgba(3,14,29,.73) 44%, rgba(3,14,29,.98) 84%),
            var(--mobile-bg, none);
    }

    .hero-slide-one {
        --mobile-bg: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1100&q=86");
    }

    .hero-slide-two {
        --mobile-bg: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1100&q=86");
    }

    .hero-slide-three {
        --mobile-bg: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1100&q=86");
    }

    .hero-shell {
        min-height: 745px;
        align-items: flex-end;
        padding: 95px 0 135px;
    }

    .hero-copy {
        width: 100%;
    }

    .eyebrow,
    .kicker {
        font-size: 9px;
        letter-spacing: .2em;
    }

    .hero-copy h1 {
        margin: 13px 0 16px;
        font-size: clamp(44px, 13vw, 61px);
        line-height: 1.02;
    }

    .hero-copy > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-controls {
        right: 14px;
        bottom: 24px;
        left: 14px;
        justify-content: space-between;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
    }

    .hero-dots button {
        width: 24px;
    }

    .market-strip {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .market-label {
        min-height: 42px;
        padding: 0 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .ticker-track span {
        min-width: 190px;
        padding: 14px 18px;
    }

    .section {
        padding: 76px 0;
    }

    .stats-grid,
    .solutions-grid,
    .insights-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .stats-grid article {
        border-right: 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 35px;
    }

    .section-heading h2,
    .performance-copy h2,
    .why-copy h2,
    .recognition-grid h2,
    .cta-card h2 {
        font-size: 40px;
    }

    .section-heading > p {
        width: 100%;
    }

    .solution-card {
        min-height: 290px;
        border-right: 0;
    }

    .performance-panel {
        padding: 24px;
    }

    .why-image {
        min-height: 400px;
    }

    .insight-card.featured {
        grid-column: auto;
    }

    .insight-image {
        height: 205px;
    }

    .testimonials-grid blockquote {
        padding: 26px;
    }

    .testimonials-grid blockquote p {
        font-size: 19px;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
        padding: 32px 24px;
    }

    .cta-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .cta-actions .button {
        width: 100%;
    }

    .footer-main {
        gap: 35px;
        padding-top: 55px;
    }

    .footer-brand img {
        width: 165px;
    }

    .footer-contact,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
    }
}

/* Extra-narrow phones: keep all three mobile header actions visible */
@media (max-width: 390px) {
    .content-shell,
    .header-shell,
    .hero-shell {
        width: calc(100% - 20px);
    }

    .brand img {
        width: 145px;
        height: auto;
    }

    .mobile-open-account {
        max-width: 90px;
        padding-inline: 7px;
        font-size: 7.8px;
    }

    .mobile-login,
    .menu-toggle {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .hero-copy h1 {
        font-size: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
