:root {
    color-scheme: dark;
    --bg: #06080d;
    --bg-2: #0b1019;
    --panel: rgba(255, 255, 255, 0.07);
    --panel-strong: rgba(255, 255, 255, 0.12);
    --line: rgba(255, 255, 255, 0.14);
    --text: #f7f8fb;
    --muted: #a7b0c0;
    --soft: #d9e1ee;
    --gold: #d6b56d;
    --blue: #3bd3ff;
    --emerald: #58f2b8;
    --lime: #c8ff4d;
    --dark-text: #10141d;
    --radius: 26px;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

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

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(6, 8, 13, 0.52);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    min-height: 74px;
}

.brand {
    display: grid;
    gap: 4px;
    min-width: 170px;
}

.brand strong {
    font-size: 25px;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 0.9;
}

.brand small {
    width: fit-content;
    border: 1px solid rgba(214, 181, 109, 0.32);
    border-radius: 999px;
    padding: 3px 8px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn,
.nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 18px;
    border: 1px solid transparent;
    font-weight: 900;
}

.btn-primary,
.nav-action {
    background: linear-gradient(135deg, var(--lime), var(--emerald));
    color: #071014;
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-panel {
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    background: rgba(10, 15, 24, 0.96);
    box-shadow: var(--shadow);
}

.mobile-nav a {
    border-radius: 14px;
    padding: 12px;
    color: var(--soft);
    font-weight: 850;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
}

main {
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    padding: 132px 0 44px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 8, 13, 0.96), rgba(6, 8, 13, 0.78), rgba(6, 8, 13, 0.38)),
        url("hero-corporate.png") center / cover no-repeat;
    opacity: 0.96;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(transparent, var(--bg));
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 42px;
    align-items: end;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--emerald);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
    line-height: 0.98;
}

h1 {
    max-width: 840px;
    font-size: clamp(44px, 7vw, 92px);
    font-weight: 950;
}

h2 {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 930;
}

h3 {
    font-size: 27px;
    font-weight: 900;
}

.hero-copy {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--soft);
    font-size: 18px;
}

.hero-actions,
.split-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-panel,
.glass-card,
.card,
.product-card,
.policy-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-panel {
    padding: 18px;
}

.hero-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.hero-panel-top strong,
.status-pill {
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(88, 242, 184, 0.14);
    color: var(--emerald);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.stack-list {
    display: grid;
    gap: 10px;
}

.stack-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.06);
}

.stack-item span {
    color: var(--lime);
    font-weight: 950;
}

.stack-item small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
}

.signal-bar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.signal-track {
    display: flex;
    overflow-x: auto;
    gap: 0;
}

.signal-track span {
    flex: 0 0 auto;
    border-right: 1px solid var(--line);
    padding: 16px 28px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section {
    padding: 88px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.section-head {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    margin-bottom: 34px;
}

.section-head p,
.lead {
    color: var(--muted);
    font-size: 17px;
}

.grid-3,
.grid-4,
.portfolio-grid {
    display: grid;
    gap: 16px;
}

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

.grid-4,
.portfolio-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card,
.policy-card {
    min-height: 260px;
    padding: 24px;
}

.card.featured,
.product-card.featured {
    background: rgba(255, 255, 255, 0.08);
}

.card span,
.product-card span,
.policy-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 22px;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(200, 255, 77, 0.12);
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.card p,
.product-card p,
.policy-card p {
    color: var(--muted);
}

.product-card a,
.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--emerald);
    font-weight: 900;
}

.logo-tile {
    display: grid;
    width: 118px;
    height: 76px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
}

.logo-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mono-mark {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background: rgba(200, 255, 77, 0.13);
    color: var(--lime);
    font-weight: 950;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 36px;
    align-items: center;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
}

.metric-strip div {
    min-height: 130px;
    padding: 22px;
    border-right: 1px solid var(--line);
}

.metric-strip strong {
    display: block;
    color: var(--gold);
    font-size: 36px;
    line-height: 1;
}

.metric-strip span {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-weight: 800;
}

.page-hero {
    padding: 132px 0 70px;
    background: linear-gradient(135deg, rgba(115, 214, 177, 0.08), transparent 48%);
}

.page-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font: inherit;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #7f8897;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 42px 0;
    background: #05070b;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) repeat(3, minmax(160px, 0.45fr));
    gap: 28px;
}

.footer-brand strong {
    display: block;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: 0;
}

.footer-brand p,
.footer-col a {
    color: var(--muted);
}

.footer-col {
    display: grid;
    gap: 10px;
}

.footer-col h3 {
    font-size: 14px;
    letter-spacing: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #7f8897;
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .desktop-nav,
    .nav-action {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .menu-button {
        display: block;
    }

    .hero-grid,
    .section-head,
    .split {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-4,
    .portfolio-grid,
    .metric-strip,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .header-inner {
        min-height: 66px;
    }

    .brand strong {
        font-size: 22px;
    }

    .brand small {
        font-size: 8px;
    }

    .hero {
        padding: 100px 0 28px;
    }

    h1 {
        font-size: 43px;
    }

    h2 {
        font-size: 35px;
    }

    .hero-copy,
    .page-hero p,
    .section-head p,
    .lead {
        font-size: 15px;
    }

    .hero-actions,
    .split-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section,
    .page-hero {
        padding: 64px 0;
    }

    .grid-3,
    .grid-4,
    .portfolio-grid,
    .metric-strip,
    .footer-grid,
    .field-row {
        grid-template-columns: 1fr;
    }

    .metric-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .card,
    .product-card,
    .policy-card {
        min-height: auto;
        padding: 20px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Westbridge institutional redesign */
:root {
    --bg: #07090b;
    --bg-2: #0d1114;
    --panel: rgba(255, 255, 255, 0.055);
    --panel-strong: rgba(255, 255, 255, 0.09);
    --line: rgba(255, 255, 255, 0.14);
    --text: #f6f7f4;
    --muted: #a9b2b2;
    --soft: #dde3df;
    --gold: #cdb579;
    --blue: #75c8dd;
    --emerald: #73d6b1;
    --lime: #b7e49a;
    --dark-text: #0b1110;
    --radius: 8px;
    --shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
}

body {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, #07090b, #0b1012 52%, #07090b);
    background-size: 88px 100%, auto;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(115, 214, 177, 0.05), transparent 36%, rgba(205, 181, 121, 0.045));
}

h1,
h2,
h3,
.brand strong,
.footer-brand strong {
    letter-spacing: 0;
}

.site-header {
    background: rgba(7, 9, 11, 0.72);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    background: rgba(7, 9, 11, 0.94);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.header-inner {
    min-height: 78px;
}

.brand {
    min-width: 198px;
    gap: 3px;
}

.brand strong {
    color: var(--text);
    font-size: 20px;
    font-weight: 850;
    letter-spacing: 0.16em;
    line-height: 1;
}

.brand small,
.footer-brand small {
    border: 0;
    border-radius: 0;
    padding: 0;
    color: var(--gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.62em;
}

.desktop-nav {
    gap: 25px;
    font-size: 11px;
}

.desktop-nav a {
    position: relative;
    padding: 31px 0;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}

.btn,
.nav-action {
    min-height: 44px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.btn-primary,
.nav-action {
    background: var(--text);
    color: #101515;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.035);
}

.btn-tertiary {
    border-color: rgba(205, 181, 121, 0.55);
    background: rgba(205, 181, 121, 0.08);
    color: var(--gold);
}

.menu-button,
.mobile-nav-panel,
.mobile-nav a {
    border-radius: 6px;
}

.hero-v2 {
    position: relative;
    min-height: min(790px, 100svh);
    display: grid;
    align-items: end;
    padding: 138px 0 44px;
    isolation: isolate;
    overflow: hidden;
}

.hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 9, 11, 0.96) 0%, rgba(7, 9, 11, 0.80) 43%, rgba(7, 9, 11, 0.34) 76%, rgba(7, 9, 11, 0.54) 100%),
        linear-gradient(180deg, rgba(7, 9, 11, 0.06), rgba(7, 9, 11, 0.68)),
        url("hero-corporate.png") center / cover no-repeat;
}

.hero-v2::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 240px;
    background: linear-gradient(transparent, #07090b);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 42px;
    align-items: end;
}

.hero-title {
    max-width: 780px;
    font-size: clamp(48px, 6.2vw, 78px);
    font-weight: 830;
    line-height: 1;
}

.hero-copy-v2 {
    max-width: 690px;
    margin: 22px 0 0;
    color: var(--soft);
    font-size: 17px;
}

.eyebrow-v2,
.section-kicker {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-index {
    border-top: 1px solid rgba(255, 255, 255, 0.44);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0 15px;
    background: rgba(8, 12, 14, 0.52);
    backdrop-filter: blur(12px);
}

.hero-index-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-index-row span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 850;
}

.hero-index-row strong {
    display: block;
    font-size: 14px;
    font-weight: 760;
}

.hero-index-row small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.firm-bar {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.firm-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.firm-bar-grid div {
    min-height: 112px;
    padding: 21px;
    border-right: 1px solid var(--line);
}

.firm-bar-grid div:first-child {
    border-left: 1px solid var(--line);
}

.firm-bar-grid strong,
.strategy-number {
    display: block;
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
}

.firm-bar-grid span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-v2 {
    padding: clamp(72px, 9vw, 124px) 0;
}

.section-v2-tight {
    padding: clamp(58px, 7vw, 86px) 0;
}

.section-v2-alt {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.022);
}

.section-intro {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 46px;
    margin-bottom: 34px;
}

.section-intro h2,
.page-hero-v2 h1 {
    max-width: 920px;
    font-size: clamp(34px, 5.2vw, 70px);
    font-weight: 810;
    line-height: 0.98;
}

.section-intro p:not(.section-kicker),
.section-copy {
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
}

.intro-column {
    display: grid;
    gap: 20px;
}

.text-action {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-action::after {
    content: "→";
    font-size: 18px;
}

.value-grid,
.strategy-grid,
.job-grid,
.presence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.value-block,
.strategy-panel,
.job-card,
.presence-card,
.leader-card,
.application-card,
.notice-panel,
.feature-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow);
}

.value-block,
.strategy-panel,
.presence-card {
    min-height: 250px;
    padding: 24px;
}

.value-block span,
.presence-card span,
.job-card > span,
.leader-role {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 30px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.value-block h3,
.strategy-panel h3,
.presence-card h3,
.job-card h3,
.leader-card h3 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.04;
}

.value-block p,
.strategy-panel p,
.presence-card p,
.job-card p,
.leader-card p,
.feature-panel p {
    color: var(--muted);
}

.portfolio-lines {
    border-top: 1px solid var(--line);
}

.business-line {
    display: grid;
    grid-template-columns: 70px minmax(0, 0.95fr) minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.business-line > span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 850;
}

.business-line h3 {
    font-size: 25px;
}

.business-line p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.business-line a {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.leadership-band {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
    gap: 24px;
    align-items: stretch;
}

.leader-card {
    min-height: 340px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(135deg, rgba(115, 214, 177, 0.11), transparent 45%),
        rgba(255, 255, 255, 0.045);
}

.leader-name {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 830;
    line-height: 0.95;
}

.feature-panel {
    min-height: 340px;
    padding: 28px;
}

.feature-panel ul,
.strategy-panel ul,
.notice-panel ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.page-hero {
    background: linear-gradient(135deg, rgba(115, 214, 177, 0.08), transparent 48%);
}

.page-hero-v2 {
    padding: 158px 0 84px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(7, 9, 11, 0.98), rgba(7, 9, 11, 0.78), rgba(7, 9, 11, 0.72)),
        url("hero-corporate.png") center / cover no-repeat;
}

.page-hero-v2 p:not(.section-kicker) {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--soft);
    font-size: 17px;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--gold);
}

.strategy-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strategy-panel {
    min-height: 300px;
    padding: 22px;
}

.strategy-number {
    margin-bottom: 46px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.timeline-step {
    min-height: 235px;
    padding: 24px 20px;
    border-right: 1px solid var(--line);
}

.timeline-step:first-child {
    border-left: 1px solid var(--line);
}

.timeline-step span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.timeline-step h3 {
    margin-top: 28px;
    font-size: 23px;
}

.timeline-step p {
    color: var(--muted);
}

.presence-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 34px;
    align-items: start;
}

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

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

.job-card {
    min-height: 288px;
    padding: 24px;
}

.job-card .btn {
    margin-top: 12px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.job-meta small {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 9px;
    color: var(--soft);
    font-size: 11px;
    font-weight: 800;
}

.apply-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
    gap: 26px;
    align-items: start;
}

.application-card,
.notice-panel {
    padding: 26px;
}

.application-card {
    scroll-margin-top: 110px;
}

.application-form {
    display: grid;
    gap: 14px;
}

.application-form label {
    display: grid;
    gap: 7px;
    color: var(--soft);
    font-size: 13px;
    font-weight: 800;
}

.application-form input,
.application-form textarea,
.application-form select {
    border-radius: 5px;
}

.application-form input[type="file"] {
    padding: 11px;
}

.application-form .btn {
    width: fit-content;
    margin-top: 6px;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.notice-panel {
    background: rgba(205, 181, 121, 0.07);
}

.notice-panel h3 {
    font-size: 26px;
}

.form-status {
    margin: 0 0 22px;
    border: 1px solid rgba(115, 214, 177, 0.44);
    border-radius: 6px;
    padding: 14px;
    color: var(--emerald);
    background: rgba(115, 214, 177, 0.08);
}

.form-status.error {
    border-color: rgba(231, 119, 119, 0.48);
    color: #efb0b0;
    background: rgba(231, 119, 119, 0.08);
}

.disclaimer {
    margin-top: 22px;
    color: #8e9897;
    font-size: 13px;
}

.footer-grid-wide {
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(160px, 0.52fr));
}

.footer-wordmark {
    display: block;
    color: var(--text);
    font-size: 21px;
    font-weight: 850;
    letter-spacing: 0.16em;
}

.footer-brand small {
    display: block;
    margin-top: 6px;
}

@media (max-width: 1080px) {
    .strategy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .desktop-nav {
        gap: 18px;
    }
}

@media (max-width: 980px) {
    .hero-layout,
    .section-intro,
    .leadership-band,
    .presence-layout,
    .apply-layout {
        grid-template-columns: 1fr;
    }

    .hero-index {
        max-width: 620px;
    }

    .firm-bar-grid,
    .timeline,
    .footer-grid-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .header-inner {
        min-height: 68px;
    }

    .brand {
        min-width: auto;
    }

    .brand strong {
        font-size: 17px;
    }

    .hero-v2 {
        min-height: auto;
        padding: 330px 0 34px;
    }

    .hero-v2::before {
        background:
            linear-gradient(180deg, rgba(7, 9, 11, 0.42), rgba(7, 9, 11, 0.92) 46%, #07090b 76%),
            url("hero-corporate.png") center top / auto 52% no-repeat;
    }

    .hero-title {
        font-size: clamp(43px, 13vw, 62px);
    }

    .hero-copy-v2,
    .section-copy,
    .section-intro p:not(.section-kicker),
    .page-hero-v2 p:not(.section-kicker) {
        font-size: 15px;
    }

    .page-hero-v2 {
        padding: 126px 0 62px;
    }

    .page-hero-v2 h1,
    .section-intro h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .firm-bar-grid,
    .value-grid,
    .strategy-grid,
    .timeline,
    .presence-grid,
    .job-grid,
    .footer-grid-wide {
        grid-template-columns: 1fr;
    }

    .firm-bar-grid div,
    .firm-bar-grid div:first-child,
    .timeline-step,
    .timeline-step:first-child {
        border-right: 1px solid var(--line);
        border-left: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .business-line {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 9px 12px;
        padding: 20px 0;
    }

    .business-line p,
    .business-line a {
        grid-column: 2;
    }

    .leader-card,
    .feature-panel {
        min-height: auto;
    }

    .application-card,
    .notice-panel {
        padding: 20px;
    }

    .application-form .btn {
        width: 100%;
    }
}

/* Westbridge Business Assistant */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wb-assistant {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 90;
}

.wb-assistant-fallback {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 89;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    border: 1px solid rgba(205, 181, 121, 0.58);
    border-radius: 8px;
    padding: 9px 13px;
    color: var(--text);
    background: rgba(11, 16, 18, 0.96);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.48);
    font-size: 12px;
    font-weight: 900;
}

.wb-assistant-fallback::before {
    content: "W";
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(115, 214, 177, 0.62);
    border-radius: 7px;
    color: var(--gold);
    background: #11191b;
}

.wb-assistant-launcher {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 62px;
    border: 1px solid rgba(205, 181, 121, 0.58);
    border-radius: 8px;
    padding: 9px 14px 9px 10px;
    color: var(--text);
    background: rgba(11, 16, 18, 0.94);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease;
}

.wb-assistant-launcher:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.wb-assistant-emblem {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border: 1px solid rgba(115, 214, 177, 0.62);
    border-radius: 8px;
    background: #11191b;
    overflow: hidden;
}

.wb-assistant-emblem::before,
.wb-assistant-emblem::after,
.wb-assistant-emblem i::before,
.wb-assistant-emblem i::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 12px rgba(115, 214, 177, 0.8);
}

.wb-assistant-emblem::before {
    top: 7px;
    left: 7px;
}

.wb-assistant-emblem::after {
    right: 7px;
    bottom: 7px;
}

.wb-assistant-emblem i::before {
    top: 7px;
    right: 7px;
}

.wb-assistant-emblem i::after {
    bottom: 7px;
    left: 7px;
}

.wb-assistant-emblem b {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 16px;
    font-weight: 900;
}

.wb-assistant-emblem.compact {
    width: 38px;
    height: 38px;
}

.wb-launcher-copy {
    display: grid;
    gap: 3px;
    text-align: left;
}

.wb-launcher-copy strong {
    font-size: 13px;
    letter-spacing: 0;
}

.wb-launcher-copy small {
    color: var(--muted);
    font-size: 11px;
}

.wb-assistant-panel {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: min(390px, calc(100vw - 28px));
    height: min(660px, calc(100vh - 126px));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    border: 1px solid rgba(205, 181, 121, 0.48);
    border-radius: 8px;
    color: var(--text);
    background: rgba(8, 12, 14, 0.98);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.985);
    transform-origin: bottom right;
    transition: opacity 180ms ease, transform 180ms ease;
    overflow: hidden;
}

.wb-assistant.open .wb-assistant-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.wb-assistant-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
    padding: 13px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.wb-assistant-header strong {
    display: block;
    font-size: 13px;
}

.wb-assistant-header small {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
}

.wb-assistant-header small span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 10px rgba(115, 214, 177, 0.9);
}

.wb-assistant-close {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: var(--soft);
    background: rgba(255, 255, 255, 0.045);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.wb-assistant-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 14px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(205, 181, 121, 0.44) transparent;
}

.wb-message {
    display: flex;
}

.wb-message.user {
    justify-content: flex-end;
}

.wb-message p {
    max-width: 88%;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 10px 11px;
    color: var(--soft);
    background: rgba(255, 255, 255, 0.055);
    font-size: 12px;
    line-height: 1.52;
}

.wb-message.user p {
    border-color: rgba(115, 214, 177, 0.32);
    color: #dff9ed;
    background: rgba(115, 214, 177, 0.1);
}

.wb-assistant-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    max-height: 230px;
    padding: 0 14px 12px;
    overflow-y: auto;
}

.wb-assistant-suggestions > button {
    border: 1px solid rgba(205, 181, 121, 0.32);
    border-radius: 999px;
    padding: 7px 9px;
    color: var(--gold);
    background: rgba(205, 181, 121, 0.07);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.wb-assistant-input {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    padding: 11px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.wb-assistant-input input {
    min-width: 0;
    border-radius: 5px;
    padding: 10px 11px;
    font-size: 12px;
}

.wb-assistant-input button,
.wb-lead-form button {
    border: 0;
    border-radius: 5px;
    padding: 0 12px;
    color: #111716;
    background: var(--text);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.wb-lead-form {
    width: 100%;
    display: grid;
    gap: 8px;
    padding: 11px;
    border: 1px solid rgba(205, 181, 121, 0.34);
    border-radius: 7px;
    background: rgba(205, 181, 121, 0.06);
}

.wb-lead-form p {
    display: grid;
    gap: 2px;
    margin: 0 0 3px;
}

.wb-lead-form p strong {
    color: var(--text);
    font-size: 13px;
}

.wb-lead-form p small,
.wb-lead-form > small {
    color: var(--muted);
    font-size: 10px;
}

.wb-lead-form > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.wb-lead-form input,
.wb-lead-form textarea {
    border-radius: 4px;
    padding: 9px;
    font-size: 11px;
}

.wb-lead-form textarea {
    min-height: 68px;
}

.wb-lead-form button {
    min-height: 38px;
}

.wb-lead-form button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.wb-lead-form .error {
    color: #efb0b0;
}

.wb-hp-field {
    position: absolute;
    left: -9999px;
}

.wb-lead-success {
    min-height: 82px;
    align-content: center;
}

@media (max-width: 640px) {
    .wb-assistant {
        right: 12px;
        bottom: 12px;
    }

    .wb-assistant-fallback {
        right: 12px;
        bottom: 12px;
        width: 54px;
        min-height: 54px;
        padding: 8px;
        overflow: hidden;
        color: transparent;
    }

    .wb-assistant-fallback::before {
        flex: 0 0 auto;
    }

    .wb-assistant-launcher {
        min-height: 56px;
        padding: 7px;
    }

    .wb-launcher-copy {
        display: none;
    }

    .wb-assistant-panel {
        position: fixed;
        right: 8px;
        bottom: 77px;
        width: calc(100vw - 16px);
        height: min(650px, calc(100dvh - 92px));
    }
}
