﻿/* =========================================================
   WILLSMARG HOME — FINAL CLEAN CORPORATE COPY
   Replace Home.css completely with this file.
   Designed to load AFTER Navbar/Buttons/Cards/Motion CSS.
========================================================= */

:root {
    --wsm-bg: #f6f8fb;
    --wsm-surface: #ffffff;
    --wsm-surface-2: #f0f5f8;
    --wsm-ink: #0b1f3a;
    --wsm-ink-2: #20324d;
    --wsm-muted: #64748b;
    --wsm-soft: #8a98aa;
    --wsm-line: #dfe7ef;
    --wsm-teal: #00a8c8;
    --wsm-teal-2: #e5fbff;
    --wsm-teal-dark: #007d95;
    --wsm-shadow-sm: 0 10px 26px rgba(11,31,58,.055);
    --wsm-shadow: 0 18px 46px rgba(11,31,58,.085);
    --wsm-shadow-lg: 0 28px 72px rgba(11,31,58,.13);
    --wsm-radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--wsm-ink);
    background: var(--wsm-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, p {
    margin-top: 0;
}

p {
    text-wrap: pretty;
}

/*.wsm-shell {
    width: min(100% - 56px, 1720px);
    margin: 0 auto;
}*/

.wsm-shell {
    width: 100%;
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
}

.wsm-section {
    padding: clamp(74px, 6vw, 108px) 0;
}

.wsm-kicker,
.wsm-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 9px 14px;
    border-radius: 8px;
    border-left: 4px solid var(--wsm-teal);
    background: var(--wsm-teal-2);
    color: var(--wsm-teal-dark);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .76rem;
    font-weight: 950;
    line-height: 1.2;
}

.wsm-center {
    text-align: center;
    max-width: 1180px;
    margin: 0 auto clamp(34px, 4vw, 52px);
}

.wsm-wide-head h2 {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.wsm-section-head h2,
.wsm-cta-card h2 {
    margin: 22px 0 14px;
    color: var(--wsm-ink);
    font-size: clamp(2.35rem, 3.45vw, 4.65rem);
    line-height: 1.03;
    letter-spacing: -.058em;
    font-weight: 950;
}

.wsm-section-head p,
.wsm-rich-copy p,
.wsm-cta-card p {
    color: var(--wsm-muted);
    font-size: clamp(.98rem, .98vw, 1.08rem);
    line-height: 1.78;
    font-weight: 620;
}

.wsm-section-head.wsm-center p,
.wsm-cta-card p {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   BUTTONS
========================================================= */
.wsm-btn {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 900;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

    .wsm-btn:hover {
        transform: translateY(-3px);
    }

.wsm-btn-primary {
    color: #fff !important;
    background: var(--wsm-teal);
    border: 1px solid rgba(0,168,200,.55);
    box-shadow: 0 18px 42px rgba(0,168,200,.22);
}

    .wsm-btn-primary:hover {
        color: #fff !important;
        background: #008fac;
        box-shadow: 0 24px 58px rgba(0,168,200,.30);
    }

.wsm-btn-outline {
    color: var(--wsm-ink) !important;
    background: #fff;
    border: 1px solid var(--wsm-line);
    box-shadow: var(--wsm-shadow-sm);
}

    .wsm-btn-outline:hover {
        border-color: rgba(0,168,200,.36);
        box-shadow: 0 18px 44px rgba(11,31,58,.10);
    }

/* =========================================================
   HERO
========================================================= */
.wsm-hero {
    position: relative;
    /*    padding: clamp(76px, 7vw, 120px) 0 clamp(80px, 7vw, 112px);*/
    padding: clamp(58px, 5vw, 92px) 0 clamp(60px, 5vw, 96px);
    background: linear-gradient(rgba(11,31,58,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px), radial-gradient(circle at 8% 10%, rgba(0,168,200,.10), transparent 28%), linear-gradient(135deg, #fbfdff 0%, #f4f8fb 54%, #eef5f8 100%);
    background-size: 46px 46px, 46px 46px, auto, auto;
    border-bottom: 1px solid var(--wsm-line);
    overflow: hidden;
}

    .wsm-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent 0 48%, rgba(0,168,200,.08) 48% 49%, transparent 49% 100%);
        pointer-events: none;
    }

.wsm-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(560px, .88fr);
    gap: clamp(42px, 4.8vw, 86px);
    align-items: center;
}

.wsm-hero-copy h1 {
    max-width: 1060px;
    margin: 26px 0 22px;
    color: var(--wsm-ink);
    font-size: clamp(3rem, 5vw, 6.25rem);
    line-height: .99;
    letter-spacing: -.072em;
    font-weight: 950;
}

.wsm-hero-copy p {
    max-width: 1040px;
    color: var(--wsm-muted);
    font-size: clamp(1rem, 1.05vw, 1.16rem);
    line-height: 1.82;
    font-weight: 620;
}

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

    .wsm-trust-row span {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 12px 15px;
        border-radius: 999px;
        color: var(--wsm-ink-2);
        background: #fff;
        border: 1px solid var(--wsm-line);
        box-shadow: 0 8px 22px rgba(11,31,58,.05);
        font-weight: 850;
        white-space: nowrap;
    }

    .wsm-trust-row i {
        color: var(--wsm-teal-dark);
    }

/* =========================================================
   ENGINEERING BOARD
========================================================= */
.wsm-engineering-board {
    width: 100%;
    max-width: 840px;
    margin-left: auto;
    border: 1px solid var(--wsm-line);
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--wsm-shadow);
    overflow: hidden;
    transform: translateZ(0);
}

.wsm-board-head {
    min-height: 60px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--wsm-line);
    background: #fbfdff;
}

    .wsm-board-head span, .wsm-board-head strong {
        text-transform: uppercase;
        letter-spacing: .11em;
        font-size: .74rem;
        font-weight: 950;
        color: var(--wsm-soft);
    }

    .wsm-board-head strong {
        color: var(--wsm-teal-dark);
    }

.wsm-board-canvas {
    position: relative;
    min-height: 475px;
    background: linear-gradient(rgba(11,31,58,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.045) 1px, transparent 1px), #fff;
    background-size: 34px 34px;
}

    .wsm-board-canvas::before {
        content: "";
        position: absolute;
        inset: 12%;
        border: 1px dashed rgba(0,168,200,.30);
        border-radius: 34px;
    }

.wsm-core-engine {
    position: absolute;
    width: 230px;
    min-height: 150px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 24px;
    border-radius: 18px;
    color: #fff;
    background: var(--wsm-ink);
    box-shadow: 0 22px 56px rgba(11,31,58,.24);
    display: grid;
    place-items: center;
    text-align: center;
}

    .wsm-core-engine small {
        color: #9ceeff;
        font-weight: 850;
    }

    .wsm-core-engine strong {
        font-size: 1.32rem;
        font-weight: 950;
    }

    .wsm-core-engine span {
        color: rgba(255,255,255,.74);
        font-size: .76rem;
        font-weight: 800;
    }

.wsm-node {
    position: absolute;
    width: 245px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid var(--wsm-line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 14px 36px rgba(11,31,58,.09);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

    .wsm-node:hover {
        transform: translateY(-5px);
        border-color: rgba(0,168,200,.32);
        box-shadow: 0 22px 50px rgba(11,31,58,.12);
    }

    .wsm-node i {
        display: block;
        margin: 0 0 8px;
        color: var(--wsm-teal-dark);
        font-size: 1.22rem;
    }

    .wsm-node strong {
        display: block;
        margin: 0 0 6px;
        color: var(--wsm-ink);
        line-height: 1.25;
        font-weight: 950;
    }

    .wsm-node span {
        display: block;
        color: var(--wsm-muted);
        line-height: 1.45;
        font-size: .86rem;
        font-weight: 650;
    }

.node-req {
    left: 32px;
    top: 42px;
}

.node-arch {
    right: 32px;
    top: 70px;
}

.node-build {
    left: 42px;
    bottom: 54px;
}

.node-quality {
    right: 42px;
    bottom: 44px;
}

.wsm-board-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--wsm-line);
    border-top: 1px solid var(--wsm-line);
}

    .wsm-board-metrics div {
        padding: 18px 20px;
        background: #fff;
    }

    .wsm-board-metrics span {
        display: block;
        color: var(--wsm-soft);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .70rem;
        font-weight: 950;
    }

    .wsm-board-metrics strong {
        display: block;
        margin-top: 7px;
        color: var(--wsm-ink);
        font-size: .92rem;
        line-height: 1.32;
        font-weight: 950;
        white-space: nowrap;
    }

/* =========================================================
   SHARED CARD/ICON SYSTEM
========================================================= */
.wsm-proof-band {
    padding: clamp(48px, 4vw, 68px) 0;
    background: #fff;
    border-bottom: 1px solid var(--wsm-line);
}

.wsm-icon-title {
    position: relative;
    isolation: isolate;
}

    .wsm-icon-title > i {
        position: absolute;
        left: -10px;
        top: -18px;
        z-index: -1;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        background: none !important;
        border: 0 !important;
        color: rgba(0,168,200,.12) !important;
        font-size: 4.8rem !important;
        line-height: 1;
        box-shadow: none !important;
        pointer-events: none;
    }

    .wsm-icon-title strong, .wsm-icon-title h3 {
        position: relative;
        z-index: 1;
    }

.wsm-proof-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

    .wsm-proof-grid article {
        min-height: 195px;
        padding: 32px 30px;
        background: #fff;
        border: 1px solid var(--wsm-line);
        border-radius: 22px;
        box-shadow: 0 12px 32px rgba(11,31,58,.05);
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

        .wsm-proof-grid article:hover {
            transform: translateY(-6px);
            border-color: rgba(0,168,200,.30);
            box-shadow: 0 24px 54px rgba(11,31,58,.09);
        }

        .wsm-proof-grid article > i {
            display: none;
        }

    .wsm-proof-grid strong {
        display: block;
        margin: 44px 0 12px;
        font-size: 1.22rem;
        line-height: 1.25;
        color: var(--wsm-ink);
        font-weight: 950;
    }

    .wsm-proof-grid p {
        color: var(--wsm-muted);
        line-height: 1.64;
        margin: 0;
        font-weight: 620;
    }

.wsm-product-lens, .wsm-delivery-system, .wsm-global-model, .wsm-governance {
    background: #fff;
    border-bottom: 1px solid var(--wsm-line);
}

.wsm-capabilities, .wsm-engagements, .wsm-industries, .wsm-cta {
    background: #f7f9fc;
    border-bottom: 1px solid var(--wsm-line);
}

.wsm-split, .wsm-governance-grid, .wsm-industries-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(34px,5vw,90px);
    align-items: start;
}

.wsm-rich-copy {
    padding: clamp(26px,3vw,42px);
    border-radius: var(--wsm-radius);
    background: #f8fbff;
    border: 1px solid var(--wsm-line);
    box-shadow: 0 14px 36px rgba(11,31,58,.05);
}

    .wsm-rich-copy p:last-child {
        margin-bottom: 0;
    }

/* =========================================================
   PRODUCT LIFECYCLE — CORPORATE TIMELINE CARDS
========================================================= */
.wsm-lifecycle-flow {
    position: relative;
    background: radial-gradient(circle at 13% 12%, rgba(0,168,200,.10), transparent 28%), radial-gradient(circle at 86% 78%, rgba(0,168,200,.075), transparent 26%), linear-gradient(rgba(11,31,58,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px), #f7f9fc;
    background-size: auto, auto, 46px 46px, 46px 46px, auto;
    border-bottom: 1px solid var(--wsm-line);
    overflow: hidden;
}

    .wsm-lifecycle-flow .wsm-center {
        margin-bottom: 0;
    }

    .wsm-lifecycle-flow .wsm-section-head h2 {
        max-width: 980px;
        margin-left: auto;
        margin-right: auto;
    }

    .wsm-lifecycle-flow .wsm-section-head p {
        max-width: 880px;
        margin-left: auto;
        margin-right: auto;
    }

.wsm-lifecycle-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 76px 34px;
    margin-top: 58px;
}

    .wsm-lifecycle-timeline::before {
        display: none !important;
    }

.wsm-life-item {
    position: relative;
    min-height: 250px;
    padding-bottom: 70px;
}

    .wsm-life-item::before {
        content: "";
        position: absolute;
        left: -17px;
        right: -17px;
        bottom: 28px;
        height: 2px;
        background: linear-gradient(90deg, rgba(0,168,200,.10), rgba(0,168,200,.62), rgba(0,168,200,.10));
        z-index: 0;
    }

    .wsm-life-item:nth-child(3n+1)::before {
        left: 0;
    }

    .wsm-life-item:nth-child(3n)::before {
        right: 0;
    }

.wsm-life-card {
    position: relative;
    z-index: 2;
    min-height: 160px;
    padding: 26px 26px 24px;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--wsm-line);
    box-shadow: 0 16px 40px rgba(11,31,58,.075);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

    .wsm-life-card:hover {
        transform: translateY(-7px);
        border-color: rgba(0,168,200,.38);
        background: #fff;
        box-shadow: 0 28px 62px rgba(11,31,58,.13);
    }

    .wsm-life-card::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -42px;
        width: 2px;
        height: 42px;
        background: rgba(11,31,58,.26);
        transform: translateX(-50%);
        z-index: 1;
    }

    .wsm-life-card::after {
        content: "";
        position: absolute;
        left: 28px;
        right: auto;
        bottom: 0;
        width: 130px;
        height: 4px;
        border-radius: 999px 999px 0 0;
        background: var(--wsm-teal);
        transition: width .28s ease;
    }

    .wsm-life-card:hover::after {
        width: calc(100% - 56px);
    }

    .wsm-life-card i {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        border-radius: 15px;
        color: var(--wsm-teal-dark);
        background: var(--wsm-teal-2);
        border: 1px solid rgba(0,168,200,.22);
        font-size: 1.25rem;
    }

    .wsm-life-card h3 {
        margin: 0 0 8px;
        color: var(--wsm-ink);
        font-size: clamp(1.18rem, 1.35vw, 1.55rem);
        line-height: 1.15;
        font-weight: 950;
        letter-spacing: -.035em;
    }

    .wsm-life-card p {
        margin: 0;
        color: var(--wsm-muted);
        font-size: clamp(.88rem, .82vw, .94rem);
        line-height: 1.58;
        font-weight: 650;
    }

.wsm-life-dot {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    top: auto;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wsm-teal);
    box-shadow: 0 18px 40px rgba(0,168,200,.26), 0 0 0 10px rgba(0,168,200,.10);
    z-index: 2;
}

    .wsm-life-dot::before {
        display: none !important;
    }

    .wsm-life-dot::after {
        content: "";
        position: absolute;
        inset: 17px;
        border-radius: 50%;
        background: #fff;
        opacity: .95;
    }

.wsm-life-item:nth-child(3n+1) .wsm-life-card::after, .wsm-life-item:nth-child(3n+1) .wsm-life-dot {
    background: #00a8c8;
}

.wsm-life-item:nth-child(3n+2) .wsm-life-card::after, .wsm-life-item:nth-child(3n+2) .wsm-life-dot {
    background: #0b7fd0;
}

.wsm-life-item:nth-child(3n) .wsm-life-card::after, .wsm-life-item:nth-child(3n) .wsm-life-dot {
    background: #10b981;
}

.wsm-lifecycle-grid {
    display: none !important;
}

/* =========================================================
   CAPABILITIES
========================================================= */
.wsm-cap-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

    .wsm-cap-grid article, .wsm-engage-grid article, .wsm-location, .wsm-network-center, .wsm-ny-note, .wsm-governance-list article, .wsm-cta-card {
        background: #fff;
        border: 1px solid var(--wsm-line);
        border-radius: var(--wsm-radius);
        box-shadow: 0 14px 36px rgba(11,31,58,.06);
    }

    .wsm-cap-grid article {
        min-height: 305px;
        padding: 30px;
        position: relative;
        overflow: hidden;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

        .wsm-cap-grid article::after {
            content: "";
            position: absolute;
            inset: auto 0 0 0;
            height: 3px;
            background: var(--wsm-teal);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s ease;
        }

        .wsm-cap-grid article:hover {
            transform: translateY(-7px);
            border-color: rgba(0,168,200,.34);
            box-shadow: 0 24px 58px rgba(11,31,58,.11);
        }

            .wsm-cap-grid article:hover::after {
                transform: scaleX(1);
            }

.wsm-cap-head {
    position: relative;
    display: block;
    margin-bottom: 22px;
    isolation: isolate;
}

.wsm-cap-grid i {
    position: absolute;
    left: -8px;
    top: -18px;
    z-index: -1;
    width: auto;
    height: auto;
    border: 0;
    background: none;
    color: rgba(0,168,200,.12);
    font-size: 5rem;
}

.wsm-cap-grid h3, .wsm-location h3 {
    color: var(--wsm-ink);
    font-size: clamp(1.15rem, 1.18vw, 1.35rem);
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}

.wsm-cap-head h3 {
    position: relative;
    z-index: 1;
    padding-top: 52px;
    margin-bottom: 0;
}

.wsm-cap-grid p, .wsm-engage-grid p, .wsm-location p {
    color: var(--wsm-muted);
    line-height: 1.7;
    font-size: .96rem;
    font-weight: 620;
}

/* =========================================================
   DELIVERY OPERATING MODEL / ENGAGEMENTS
========================================================= */
.wsm-flow {
    position: relative;
    margin-top: 32px;
}

.wsm-flow-line {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 58px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,168,200,.12), rgba(0,168,200,.55), rgba(0,168,200,.12));
    z-index: 0;
}

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

    .wsm-engage-grid article {
        min-height: 260px;
        padding: 32px 28px;
        position: relative;
        overflow: hidden;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
        z-index: 1;
    }

        .wsm-engage-grid article:hover {
            transform: translateY(-6px);
            border-color: rgba(0,168,200,.30);
            box-shadow: 0 24px 58px rgba(11,31,58,.10);
        }

    .wsm-engage-grid .wsm-icon-title > i {
        font-size: 4.5rem !important;
        top: -14px;
    }

    .wsm-engage-grid strong {
        display: block;
        color: var(--wsm-ink);
        font-size: clamp(1.08rem, 1.1vw, 1.22rem);
        line-height: 1.25;
        font-weight: 950;
        margin: 44px 0 12px;
    }

/* =========================================================
   GLOBAL MODEL
========================================================= */
.wsm-network {
    display: grid;
    grid-template-columns: 1fr .82fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.wsm-location, .wsm-network-center {
    padding: 30px;
}

    .wsm-location i {
        color: var(--wsm-teal-dark);
        font-size: 1.5rem;
    }

    .wsm-location span {
        display: inline-block;
        margin-top: 16px;
        color: var(--wsm-teal-dark);
        text-transform: uppercase;
        letter-spacing: .13em;
        font-size: .76rem;
        font-weight: 950;
    }

.wsm-network-center {
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background: var(--wsm-ink);
}

    .wsm-network-center strong {
        font-size: 1.22rem;
        font-weight: 950;
    }

    .wsm-network-center small {
        display: block;
        margin-top: 8px;
        color: rgba(255,255,255,.72);
        line-height: 1.5;
        font-weight: 700;
    }

.wsm-ny-note {
    max-width: 780px;
    margin: 20px auto 0;
    padding: 20px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .wsm-ny-note i {
        color: var(--wsm-teal-dark);
        font-size: 1.5rem;
    }

    .wsm-ny-note strong {
        color: var(--wsm-ink);
        font-weight: 950;
    }

    .wsm-ny-note p {
        margin: 6px 0 0;
        color: var(--wsm-muted);
    }

/* =========================================================
   GOVERNANCE
========================================================= */
.wsm-governance-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

    .wsm-governance-list article {
        padding: 24px;
        display: grid;
        grid-template-columns: 50px 1fr;
        column-gap: 16px;
        align-items: start;
        transition: transform .25s ease, border-color .25s ease;
    }

        .wsm-governance-list article:hover {
            transform: translateY(-5px);
            border-color: rgba(0,168,200,.30);
        }

    .wsm-governance-list i {
        grid-row: span 2;
        width: 50px;
        height: 50px;
        border-radius: 15px;
        display: grid;
        place-items: center;
        color: var(--wsm-teal-dark);
        background: var(--wsm-teal-2);
        font-size: 1.35rem;
    }

    .wsm-governance-list strong {
        color: var(--wsm-ink);
        font-weight: 950;
    }

    .wsm-governance-list span {
        color: var(--wsm-muted);
        line-height: 1.62;
        font-weight: 620;
    }

/* =========================================================
   INDUSTRIES
========================================================= */
.wsm-industries {
    padding-top: clamp(70px, 5.5vw, 96px);
    padding-bottom: clamp(70px, 5.5vw, 96px);
}

.wsm-industries-grid {
    align-items: center;
}

.wsm-industries-right {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.wsm-industry-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .wsm-industry-list span {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 15px 18px;
        border-radius: 12px;
        border: 1px solid var(--wsm-line);
        background: #fff;
        color: var(--wsm-ink-2);
        font-weight: 850;
        box-shadow: 0 8px 20px rgba(11,31,58,.04);
        transition: transform .22s ease, border-color .22s ease, color .22s ease;
    }

        .wsm-industry-list span:hover {
            transform: translateY(-4px);
            border-color: rgba(0,168,200,.30);
            color: var(--wsm-teal-dark);
        }

    .wsm-industry-list i {
        color: var(--wsm-teal-dark);
        font-size: 1.1rem;
    }

.wsm-scope-icon-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 0;
}

    .wsm-scope-icon-flow::before {
        content: "";
        position: absolute;
        left: 8%;
        right: 8%;
        top: 31px;
        height: 2px;
        background: linear-gradient(90deg, rgba(0,168,200,.08), rgba(0,168,200,.55), rgba(0,168,200,.08));
        z-index: 0;
    }

.wsm-scope-line, .wsm-scope-card span {
    display: none !important;
}

.wsm-scope-card {
    position: relative;
    z-index: 1;
    min-height: 178px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    transition: transform .28s ease;
}

    .wsm-scope-card:hover {
        transform: translateY(-5px);
    }

.wsm-scope-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--wsm-teal-dark);
    background: #fff;
    border: 1px solid rgba(0,168,200,.28);
    box-shadow: 0 14px 34px rgba(11,31,58,.09), 0 0 0 10px rgba(229,251,255,.85);
    transition: transform .28s ease, box-shadow .28s ease;
}

.wsm-scope-card:hover .wsm-scope-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 22px 48px rgba(11,31,58,.13), 0 0 0 12px rgba(0,168,200,.08);
}

.wsm-scope-icon i {
    font-size: 1.35rem;
}

.wsm-scope-card h4 {
    margin: 0 0 8px;
    text-align: center;
    font-size: 1.02rem;
    line-height: 1.25;
    font-weight: 950;
    color: var(--wsm-ink);
}

.wsm-scope-card p {
    max-width: 245px;
    margin: 0 auto;
    text-align: center;
    font-size: .92rem;
    line-height: 1.55;
    color: var(--wsm-muted);
    font-weight: 650;
}

/* =========================================================
   CTA
========================================================= */
.wsm-cta-card {
    text-align: center;
    padding: clamp(38px,6vw,78px);
    background: linear-gradient(rgba(11,31,58,.04) 1px, transparent 1px), linear-gradient(90deg,rgba(11,31,58,.04) 1px,transparent 1px), #fff;
    background-size: 42px 42px;
}

    .wsm-cta-card h2 {
        max-width: 1120px;
    }

    .wsm-cta-card p {
        max-width: 940px;
        margin-bottom: 30px;
    }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1399.98px) {
    .wsm-hero-grid, .wsm-split, .wsm-governance-grid, .wsm-industries-grid {
        grid-template-columns: 1fr;
    }

    .wsm-engineering-board {
        max-width: 920px;
        margin: 36px auto 0;
    }
}

@media (max-width: 1199.98px) {
    .wsm-cap-grid, .wsm-engage-grid, .wsm-network, .wsm-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wsm-flow-line {
        display: none;
    }

    .wsm-network-center {
        grid-column: 1 / -1;
        order: 3;
    }

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

    .wsm-life-item::before, .wsm-life-card::before, .wsm-life-dot {
        display: none;
    }

    .wsm-life-item {
        min-height: auto;
        padding-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .wsm-shell {
        width: 100%;
        padding-left: 28px;
        padding-right: 28px;
    }

    .wsm-hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .wsm-hero-copy h1 {
        max-width: 100%;
        font-size: clamp(3rem, 6vw, 4.4rem);
        line-height: 1.02;
    }

    .wsm-hero-copy p {
        max-width: 100%;
    }

    .wsm-trust-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .wsm-trust-row span {
            width: 100%;
            white-space: normal;
        }

    .wsm-board-canvas {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding: 24px;
    }

        .wsm-board-canvas::before {
            display: none;
        }

    .wsm-core-engine, .wsm-node {
        position: relative;
        inset: auto;
        transform: none;
        width: 100%;
        min-height: 150px;
    }

    .wsm-core-engine {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
    }

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

        .wsm-board-metrics strong {
            white-space: normal;
        }
}

@media (max-width: 991px) {
    .wsm-scope-icon-flow {
        grid-template-columns: 1fr;
        gap: 22px;
    }

        .wsm-scope-icon-flow::before {
            display: none;
        }

    .wsm-scope-card {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid var(--wsm-line);
        box-shadow: 0 12px 30px rgba(11,31,58,.06);
    }
}

@media (max-width: 767.98px) {
    .wsm-shell {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .wsm-section {
        padding: 62px 0;
    }

    .wsm-hero {
        padding: 54px 0 66px;
    }

    .wsm-hero-copy h1 {
        font-size: clamp(2.25rem, 10vw, 3.35rem);
        line-height: 1.02;
        letter-spacing: -.055em;
        max-width: 100%;
    }

    .wsm-section-head h2, .wsm-cta-card h2 {
        font-size: clamp(2.05rem, 9.4vw, 3rem);
        line-height: 1.08;
        letter-spacing: -.052em;
    }

    .wsm-hero-copy p, .wsm-section-head p, .wsm-rich-copy p, .wsm-cta-card p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .wsm-btn, .wsm-hero-actions .wsm-btn {
        width: 100%;
    }

    .wsm-trust-row {
        display: grid;
        grid-template-columns: 1fr;
    }

        .wsm-trust-row span {
            width: 100%;
            white-space: normal;
        }

    .wsm-board-canvas {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

        .wsm-board-canvas::before {
            display: none;
        }

    .wsm-core-engine, .wsm-node {
        position: relative;
        inset: auto;
        transform: none;
        width: 100%;
        min-height: auto;
    }

    .wsm-board-metrics, .wsm-cap-grid, .wsm-engage-grid, .wsm-network, .wsm-proof-grid, .wsm-governance-list, .wsm-split, .wsm-governance-grid, .wsm-industries-grid, .wsm-lifecycle-timeline {
        grid-template-columns: 1fr;
    }

    .wsm-life-card {
        grid-template-columns: 48px 1fr;
        min-height: auto;
        padding: 24px;
    }

        .wsm-life-card h3 {
            font-size: 1.15rem;
            letter-spacing: -.025em;
        }

        .wsm-life-card p {
            font-size: .9rem;
        }

    .wsm-industry-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }

        .wsm-industry-list span {
            width: 100%;
            white-space: normal;
            font-size: .94rem;
        }
}

@media (max-width: 420px) {
    .wsm-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .wsm-hero-copy h1 {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .wsm-section-head h2, .wsm-cta-card h2 {
        font-size: clamp(1.9rem, 9.6vw, 2.55rem);
    }

    .wsm-industry-list {
        grid-template-columns: 1fr;
    }
}

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

/* =========================================================
   WILLSMARG HOME — LEVEL 2 UI CLEANUP FINAL OVERRIDES
   Purpose: crisp icons, balanced headings, corporate spacing,
   responsive card alignment, and cleaner CTA/hero layouts.
========================================================= */

/* Global alignment safety */
.wsm-section-head.wsm-center,
.wsm-section-head.wsm-center h2,
.wsm-section-head.wsm-center p {
    text-align: center !important;
}

    .wsm-section-head.wsm-center p {
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

/* Less heavy section spacing for corporate rhythm */
.wsm-section {
    padding-top: clamp(64px, 5.2vw, 96px) !important;
    padding-bottom: clamp(64px, 5.2vw, 96px) !important;
}

.wsm-section-head h2,
.wsm-cta-card h2 {
    font-size: clamp(2.25rem, 3.15vw, 4.25rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -.055em !important;
}

.wsm-section-head p,
.wsm-rich-copy p,
.wsm-cta-card p {
    font-size: clamp(.96rem, .92vw, 1.05rem) !important;
    line-height: 1.75 !important;
}

/* Shared visible icon-behind-heading system */
.wsm-icon-title {
    position: relative !important;
    isolation: isolate !important;
    min-height: 68px;
    display: block;
}

    .wsm-icon-title > i {
        position: absolute !important;
        left: -4px !important;
        top: -12px !important;
        z-index: 0 !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        color: rgba(0,168,200,.18) !important;
        font-size: clamp(3.35rem, 4.2vw, 4.7rem) !important;
        line-height: 1 !important;
        opacity: 1 !important;
        filter: none !important;
        pointer-events: none !important;
    }

    .wsm-icon-title strong,
    .wsm-icon-title h3 {
        position: relative !important;
        z-index: 1 !important;
        display: block !important;
        padding-top: 38px !important;
        margin: 0 0 10px !important;
        text-align: left !important;
    }

/* Proof band label + card content */
.wsm-proof-head {
    max-width: 1180px;
    margin: 0 auto 24px;
    text-align: left;
}

.wsm-proof-grid article,
.wsm-engage-grid article {
    padding: 30px 28px !important;
}

.wsm-proof-grid strong,
.wsm-engage-grid strong {
    font-size: clamp(1.04rem, 1vw, 1.2rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -.025em !important;
}

.wsm-proof-grid p,
.wsm-engage-grid p {
    font-size: .95rem !important;
    line-height: 1.66 !important;
    text-align: left !important;
}

/* Capabilities: clear icon behind heading + paragraph below */
.wsm-cap-grid article {
    min-height: 280px !important;
    padding: 30px 28px !important;
}

.wsm-cap-head {
    position: relative !important;
    isolation: isolate !important;
    min-height: 86px !important;
    margin-bottom: 12px !important;
}

.wsm-cap-grid .wsm-cap-head > i {
    position: absolute !important;
    left: -2px !important;
    top: -10px !important;
    z-index: 0 !important;
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(0,168,200,.18) !important;
    font-size: clamp(3.35rem, 4.2vw, 4.7rem) !important;
    opacity: 1 !important;
    filter: none !important;
}

.wsm-cap-grid .wsm-cap-head h3 {
    position: relative !important;
    z-index: 1 !important;
    padding-top: 40px !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: clamp(1.08rem, 1vw, 1.25rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -.025em !important;
}

.wsm-cap-grid p {
    font-size: .95rem !important;
    line-height: 1.68 !important;
    text-align: left !important;
}

/* Delivery Operating Model: heading left, paragraph right */
.wsm-operating-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr) !important;
    gap: clamp(24px, 4vw, 70px) !important;
    align-items: end !important;
    margin-bottom: 32px !important;
}

    .wsm-operating-head .wsm-label {
        grid-column: 1 / -1 !important;
        justify-self: start !important;
    }

    .wsm-operating-head h2 {
        margin: 20px 0 0 !important;
        max-width: 980px !important;
        text-align: left !important;
    }

    .wsm-operating-head p {
        margin: 0 0 8px !important;
        max-width: 760px !important;
        text-align: left !important;
    }

.wsm-flow {
    margin-top: 0 !important;
}

/* Engagement cards: same crisp icon style */
.wsm-engage-grid .wsm-icon-title > i {
    top: -10px !important;
    left: -4px !important;
    color: rgba(0,168,200,.18) !important;
    font-size: clamp(3.3rem, 4vw, 4.5rem) !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Product lifecycle heading center */
.wsm-lifecycle-flow .wsm-section-head,
.wsm-lifecycle-flow .wsm-section-head h2,
.wsm-lifecycle-flow .wsm-section-head p {
    text-align: center !important;
}

/* Hero board node icons: visible behind headings, not blurry */
.wsm-node {
    overflow: hidden !important;
    padding: 24px 22px 20px !important;
}

    .wsm-node i {
        position: absolute !important;
        left: 14px !important;
        top: 10px !important;
        margin: 0 !important;
        color: rgba(0,168,200,.20) !important;
        font-size: 2.85rem !important;
        line-height: 1 !important;
        filter: none !important;
        opacity: 1 !important;
    }

    .wsm-node strong {
        position: relative !important;
        z-index: 1 !important;
        padding-top: 26px !important;
    }

    .wsm-node span {
        position: relative !important;
        z-index: 1 !important;
    }

/* Hero trust pills: aligned 2 x 2 on large left column, 4 only when space allows */
.wsm-trust-row {
    display: grid !important;
    grid-template-columns: repeat(2, max-content) !important;
    align-items: center !important;
    gap: 12px !important;
    width: max-content !important;
    max-width: 100% !important;
}

    .wsm-trust-row span {
        justify-content: flex-start !important;
    }

/* CTA: label left, heading left, paragraph/button right */
.wsm-cta-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr) !important;
    gap: clamp(22px, 4vw, 64px) !important;
    align-items: center !important;
    text-align: left !important;
    padding: clamp(42px, 5vw, 72px) !important;
}

    .wsm-cta-card .wsm-kicker {
        grid-column: 1 / -1 !important;
        justify-self: start !important;
    }

    .wsm-cta-card h2 {
        grid-column: 1 !important;
        margin: 18px 0 0 !important;
        max-width: 980px !important;
        text-align: left !important;
    }

    .wsm-cta-card p {
        grid-column: 2 !important;
        grid-row: 2 !important;
        margin: 0 0 24px !important;
        max-width: 620px !important;
        text-align: left !important;
    }

    .wsm-cta-card .wsm-btn {
        grid-column: 2 !important;
        grid-row: 3 !important;
        justify-self: start !important;
        width: auto !important;
    }

/* Lifecycle cards keep already-approved design, only refine type */
.wsm-life-card h3 {
    font-size: clamp(1.08rem, 1.08vw, 1.34rem) !important;
    line-height: 1.2 !important;
}

.wsm-life-card p {
    line-height: 1.58 !important;
}

/* Responsive cleanup */
@media (min-width: 1500px) {
    .wsm-trust-row {
        grid-template-columns: repeat(4, max-content) !important;
        width: auto !important;
    }
}

@media (max-width: 1199.98px) {
    .wsm-operating-head,
    .wsm-cta-card {
        grid-template-columns: 1fr !important;
    }

        .wsm-cta-card p,
        .wsm-cta-card .wsm-btn,
        .wsm-cta-card h2 {
            grid-column: 1 !important;
            grid-row: auto !important;
        }

        .wsm-cta-card .wsm-btn {
            justify-self: start !important;
        }
}

@media (max-width: 767.98px) {
    .wsm-section {
        padding-top: 58px !important;
        padding-bottom: 58px !important;
    }

    .wsm-section-head h2,
    .wsm-cta-card h2 {
        font-size: clamp(2rem, 9vw, 3rem) !important;
        line-height: 1.08 !important;
    }

    .wsm-trust-row {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .wsm-operating-head {
        gap: 14px !important;
        margin-bottom: 24px !important;
    }

        .wsm-operating-head h2,
        .wsm-operating-head p,
        .wsm-cta-card h2,
        .wsm-cta-card p {
            text-align: left !important;
        }

    .wsm-cta-card {
        padding: 30px 22px !important;
        border-radius: 20px !important;
    }

        .wsm-cta-card .wsm-btn {
            width: 100% !important;
        }

    .wsm-icon-title > i,
    .wsm-cap-grid .wsm-cap-head > i {
        font-size: 3.35rem !important;
    }

    .wsm-icon-title strong,
    .wsm-icon-title h3,
    .wsm-cap-grid .wsm-cap-head h3 {
        padding-top: 34px !important;
    }
}

/* =========================================================
   HOME SECTION FIX — HERO BOARD + DELIVERY OPERATING MODEL
   Final scoped cleanup: crisp icons, correct card structure,
   label/heading/paragraph alignment, and no global grid conflicts.
========================================================= */

/* HERO trust pills: keep all 4 visually organized */
.wsm-hero .wsm-trust-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, max-content)) !important;
    width: max-content !important;
    max-width: 100% !important;
    gap: 12px !important;
    align-items: center !important;
}

    .wsm-hero .wsm-trust-row span {
        min-height: 42px !important;
        padding: 10px 14px !important;
        justify-content: flex-start !important;
        font-size: .92rem !important;
        line-height: 1.2 !important;
    }

@media (min-width: 1680px) {
    .wsm-hero .wsm-trust-row {
        grid-template-columns: repeat(4, max-content) !important;
    }
}

/* HERO engineering board nodes: icon visible behind heading, paragraph below */
.wsm-board-canvas .wsm-node {
    overflow: hidden !important;
    padding: 24px 22px 20px !important;
    min-height: 122px !important;
}

    .wsm-board-canvas .wsm-node i {
        position: absolute !important;
        left: 15px !important;
        top: 10px !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        color: rgba(0,168,200,.22) !important;
        font-size: 2.9rem !important;
        line-height: 1 !important;
        opacity: 1 !important;
        filter: none !important;
        pointer-events: none !important;
    }

    .wsm-board-canvas .wsm-node strong {
        position: relative !important;
        z-index: 1 !important;
        display: block !important;
        padding-top: 28px !important;
        margin-bottom: 6px !important;
    }

    .wsm-board-canvas .wsm-node span {
        position: relative !important;
        z-index: 1 !important;
    }

/* DELIVERY OPERATING MODEL: left heading + right paragraph, then four connected cards */
.wsm-operating-model {
    background: linear-gradient(rgba(11,31,58,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px), radial-gradient(circle at 88% 12%, rgba(0,168,200,.075), transparent 28%), #f7f9fc !important;
    background-size: 46px 46px, 46px 46px, auto, auto !important;
    border-bottom: 1px solid var(--wsm-line) !important;
}

.wsm-operating-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr) !important;
    gap: clamp(28px, 5vw, 86px) !important;
    align-items: end !important;
    margin-bottom: 34px !important;
}

    .wsm-operating-head .wsm-label {
        grid-column: 1 / -1 !important;
        justify-self: start !important;
    }

    .wsm-operating-head h2 {
        grid-column: 1 !important;
        max-width: 820px !important;
        margin: 20px 0 0 !important;
        text-align: left !important;
        font-size: clamp(2.35rem, 3.25vw, 4.3rem) !important;
        line-height: 1.04 !important;
        letter-spacing: -.058em !important;
    }

    .wsm-operating-head p {
        grid-column: 2 !important;
        max-width: 760px !important;
        margin: 0 0 8px !important;
        text-align: left !important;
        font-size: clamp(.96rem, .88vw, 1.04rem) !important;
        line-height: 1.72 !important;
    }

.wsm-operating-model .wsm-flow {
    position: relative !important;
    margin-top: 0 !important;
}

.wsm-operating-model .wsm-flow-line {
    left: 5% !important;
    right: 5% !important;
    top: 50% !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, rgba(0,168,200,.48), transparent) !important;
    transform: translateY(-50%) !important;
    z-index: 0 !important;
}

.wsm-operating-model .wsm-operating-grid {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

    .wsm-operating-model .wsm-operating-grid::before {
        content: "" !important;
        position: absolute !important;
        left: 6% !important;
        right: 6% !important;
        top: 50% !important;
        height: 2px !important;
        background: linear-gradient(90deg, rgba(0,168,200,.08), rgba(0,168,200,.50), rgba(0,168,200,.08)) !important;
        transform: translateY(-50%) !important;
        z-index: 0 !important;
    }

.wsm-operating-model .wsm-flow-step {
    position: relative !important;
    z-index: 1 !important;
    min-height: 214px !important;
    padding: 28px 26px 26px !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid var(--wsm-line) !important;
    border-radius: 22px !important;
    box-shadow: 0 14px 36px rgba(11,31,58,.06) !important;
    overflow: hidden !important;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease !important;
}

    .wsm-operating-model .wsm-flow-step:hover {
        transform: translateY(-6px) !important;
        border-color: rgba(0,168,200,.34) !important;
        background: #fff !important;
        box-shadow: 0 24px 58px rgba(11,31,58,.11) !important;
    }

    .wsm-operating-model .wsm-flow-step.is-featured {
        border-color: rgba(0,168,200,.46) !important;
        background: linear-gradient(180deg, #fff, rgba(229,251,255,.36)) !important;
        box-shadow: 0 24px 62px rgba(0,168,200,.13) !important;
    }

    .wsm-operating-model .wsm-flow-step::after {
        content: "" !important;
        position: absolute !important;
        left: 26px !important;
        right: auto !important;
        bottom: 0 !important;
        width: 96px !important;
        height: 3px !important;
        border-radius: 999px 999px 0 0 !important;
        background: var(--wsm-teal) !important;
        transition: width .28s ease !important;
    }

    .wsm-operating-model .wsm-flow-step:hover::after {
        width: calc(100% - 52px) !important;
    }

.wsm-operating-model .wsm-icon-title {
    position: relative !important;
    isolation: isolate !important;
    min-height: 80px !important;
    margin-bottom: 10px !important;
}

    .wsm-operating-model .wsm-icon-title > i {
        position: absolute !important;
        left: -3px !important;
        top: -10px !important;
        z-index: 0 !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        color: rgba(0,168,200,.20) !important;
        font-size: clamp(3.25rem, 3.8vw, 4.45rem) !important;
        line-height: 1 !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .wsm-operating-model .wsm-icon-title strong {
        position: relative !important;
        z-index: 1 !important;
        display: block !important;
        padding-top: 42px !important;
        margin: 0 !important;
        color: var(--wsm-ink) !important;
        font-size: clamp(1.02rem, .98vw, 1.16rem) !important;
        line-height: 1.24 !important;
        letter-spacing: -.025em !important;
        text-align: left !important;
    }

.wsm-operating-model .wsm-flow-step p {
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    color: var(--wsm-muted) !important;
    font-size: .94rem !important;
    line-height: 1.64 !important;
    font-weight: 650 !important;
    text-align: left !important;
}

/* Scope other engage-grid flow lines so engagement cards do not get unintended center lines */
.wsm-engagements .wsm-engage-grid::before,
.wsm-proof-grid::before,
.wsm-cap-grid::before {
    display: none !important;
}

@media (max-width: 1199.98px) {
    .wsm-operating-head {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

        .wsm-operating-head h2,
        .wsm-operating-head p {
            grid-column: 1 !important;
            max-width: 100% !important;
        }

    .wsm-operating-model .wsm-operating-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

        .wsm-operating-model .wsm-flow-line,
        .wsm-operating-model .wsm-operating-grid::before {
            display: none !important;
        }
}

@media (max-width: 767.98px) {
    .wsm-hero .wsm-trust-row {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .wsm-operating-model .wsm-operating-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .wsm-operating-head h2 {
        font-size: clamp(2rem, 9vw, 3rem) !important;
    }

    .wsm-operating-model .wsm-flow-step {
        min-height: auto !important;
        padding: 26px 22px 24px !important;
    }
}

/* =========================================================
   FINAL MICRO FIX — CTA + PROOF LABEL ALIGNMENT
   Purpose: fixes the last two visual issues without disturbing
   approved sections above.
========================================================= */

/* Proof label aligned with first card edge */
.wsm-proof-head {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

    .wsm-proof-head .wsm-kicker {
        margin-left: 0 !important;
    }

/* CTA: label left, heading left, paragraph + button right and compact */
.wsm-cta-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr) !important;
    column-gap: clamp(38px, 6vw, 92px) !important;
    row-gap: 24px !important;
    align-items: center !important;
    text-align: left !important;
    padding: clamp(44px, 5.2vw, 82px) !important;
}

    .wsm-cta-card .wsm-kicker {
        grid-column: 1 / -1 !important;
        justify-self: start !important;
        margin: 0 !important;
    }

    .wsm-cta-card h2 {
        grid-column: 1 !important;
        grid-row: 2 / span 2 !important;
        max-width: 920px !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .wsm-cta-card p {
        grid-column: 2 !important;
        grid-row: 2 !important;
        max-width: 650px !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .wsm-cta-card .wsm-btn {
        grid-column: 2 !important;
        grid-row: 3 !important;
        justify-self: start !important;
        align-self: start !important;
        width: auto !important;
        margin-top: 0 !important;
    }

/* Desktop proof row balance */
@media (min-width: 1200px) {
    .wsm-proof-band .wsm-shell {
        max-width: 1360px !important;
    }

    .wsm-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }
}

/* Tablet + mobile: stack CTA naturally */
@media (max-width: 1199.98px) {
    .wsm-cta-card {
        grid-template-columns: 1fr !important;
        row-gap: 18px !important;
    }

        .wsm-cta-card .wsm-kicker,
        .wsm-cta-card h2,
        .wsm-cta-card p,
        .wsm-cta-card .wsm-btn {
            grid-column: 1 !important;
            grid-row: auto !important;
        }

        .wsm-cta-card p {
            max-width: 780px !important;
        }

        .wsm-cta-card .wsm-btn {
            justify-self: start !important;
        }
}

@media (max-width: 767.98px) {
    .wsm-cta-card {
        padding: 30px 22px !important;
        border-radius: 20px !important;
    }

        .wsm-cta-card .wsm-btn {
            width: 100% !important;
        }

    .wsm-proof-head {
        margin-bottom: 18px !important;
    }
}

/* =========================================================
   FINAL DEVICE POLISH — 13-INCH / TABLET / MOBILE
   Purpose: smoother width, less heavy sections, cleaner cards
   across 13-inch laptops, tablets, and phones.
========================================================= */

/* 13-inch laptops / compressed desktop */
@media (min-width: 1101px) and (max-width: 1399.98px) {
    .wsm-shell {
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    .wsm-hero {
        padding-top: 68px !important;
        padding-bottom: 78px !important;
    }

    .wsm-hero-grid {
        grid-template-columns: minmax(0, .98fr) minmax(520px, .86fr) !important;
        gap: clamp(30px, 3.6vw, 58px) !important;
    }

    .wsm-hero-copy h1 {
        font-size: clamp(3.15rem, 4.7vw, 5.2rem) !important;
        max-width: 920px !important;
    }

    .wsm-hero-copy p {
        max-width: 900px !important;
        font-size: 1rem !important;
        line-height: 1.74 !important;
    }

    .wsm-engineering-board {
        max-width: 760px !important;
    }

    .wsm-board-canvas {
        min-height: 430px !important;
    }

    .wsm-node {
        width: 225px !important;
    }

    .wsm-core-engine {
        width: 210px !important;
    }

    .wsm-section-head h2,
    .wsm-cta-card h2 {
        font-size: clamp(2.25rem, 3vw, 3.85rem) !important;
    }

    .wsm-cap-grid article,
    .wsm-engage-grid article {
        min-height: 250px !important;
    }
}

/* tablets and small laptops */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .wsm-shell {
        padding-left: 26px !important;
        padding-right: 26px !important;
    }

    .wsm-section {
        padding-top: 58px !important;
        padding-bottom: 58px !important;
    }

    .wsm-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .wsm-engineering-board {
        max-width: 820px !important;
        margin: 28px auto 0 !important;
    }

    .wsm-board-canvas {
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
        padding: 22px !important;
    }

        .wsm-board-canvas::before {
            display: none !important;
        }

    .wsm-core-engine,
    .wsm-node {
        position: relative !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
    }

    .wsm-core-engine {
        grid-column: 1 / -1 !important;
        max-width: 420px !important;
        margin: 0 auto !important;
    }

    .wsm-proof-grid,
    .wsm-cap-grid,
    .wsm-engage-grid,
    .wsm-lifecycle-timeline,
    .wsm-network,
    .wsm-governance-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .wsm-scope-icon-flow {
        grid-template-columns: 1fr !important;
    }

        .wsm-scope-icon-flow::before {
            display: none !important;
        }

    .wsm-scope-card {
        min-height: auto !important;
        padding: 26px 22px !important;
        border-radius: 20px !important;
        background: #fff !important;
        border: 1px solid var(--wsm-line) !important;
        box-shadow: 0 12px 30px rgba(11,31,58,.06) !important;
    }

    .wsm-operating-head h2 {
        font-size: clamp(2.35rem, 5.4vw, 3.55rem) !important;
    }
}

/* mobile polish */
@media (max-width: 767.98px) {
    .wsm-shell {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .wsm-section {
        padding-top: 54px !important;
        padding-bottom: 54px !important;
    }

    .wsm-kicker,
    .wsm-label {
        font-size: .70rem !important;
        letter-spacing: .11em !important;
        padding: 8px 12px !important;
    }

    .wsm-hero-copy h1 {
        font-size: clamp(2.25rem, 9.6vw, 3.2rem) !important;
        line-height: 1.03 !important;
    }

    .wsm-section-head h2,
    .wsm-cta-card h2,
    .wsm-operating-head h2 {
        font-size: clamp(2rem, 8.8vw, 2.8rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -.05em !important;
    }

    .wsm-hero-copy p,
    .wsm-section-head p,
    .wsm-rich-copy p,
    .wsm-cta-card p {
        font-size: .97rem !important;
        line-height: 1.68 !important;
    }

    .wsm-board-canvas {
        padding: 14px !important;
        gap: 14px !important;
    }

    .wsm-board-head {
        padding: 0 16px !important;
        gap: 10px !important;
    }

        .wsm-board-head span,
        .wsm-board-head strong {
            font-size: .64rem !important;
            letter-spacing: .09em !important;
        }

    .wsm-core-engine {
        padding: 22px !important;
        min-height: 132px !important;
    }

    .wsm-proof-grid,
    .wsm-cap-grid,
    .wsm-engage-grid,
    .wsm-lifecycle-timeline,
    .wsm-network,
    .wsm-governance-list,
    .wsm-operating-model .wsm-operating-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

        .wsm-proof-grid article,
        .wsm-cap-grid article,
        .wsm-engage-grid article,
        .wsm-operating-model .wsm-flow-step,
        .wsm-scope-card {
            min-height: auto !important;
            padding: 24px 22px !important;
            border-radius: 20px !important;
        }

    .wsm-scope-icon {
        width: 56px !important;
        height: 56px !important;
        margin-bottom: 14px !important;
        border-radius: 18px !important;
        box-shadow: 0 12px 26px rgba(11,31,58,.08), 0 0 0 8px rgba(229,251,255,.78) !important;
    }

    .wsm-scope-card p {
        max-width: 300px !important;
    }

    .wsm-life-item {
        min-height: auto !important;
        padding-bottom: 0 !important;
    }

    .wsm-life-card {
        grid-template-columns: 46px 1fr !important;
        gap: 14px !important;
        padding: 22px !important;
    }

        .wsm-life-card::before,
        .wsm-life-item::before,
        .wsm-life-dot {
            display: none !important;
        }

    .wsm-cta-card {
        padding: 28px 20px !important;
        row-gap: 16px !important;
    }
}

@media (max-width: 420px) {
    .wsm-shell {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .wsm-hero-copy h1,
    .wsm-section-head h2,
    .wsm-cta-card h2,
    .wsm-operating-head h2 {
        font-size: clamp(1.92rem, 9.2vw, 2.55rem) !important;
    }

    .wsm-board-metrics {
        grid-template-columns: 1fr !important;
    }
}


/* =========================================================
   FINAL 14.5-INCH + TABLET POLISH — HERO / PROOF / BOARD
   Purpose: fixes compressed laptop hero board, proof-card centering,
   and tablet hero balance without changing approved desktop/mobile design.
========================================================= */

/* Center the 3-card proof band on wide screens */
@media (min-width: 1200px) {
    .wsm-proof-band .wsm-shell {
        width: min(100% - 64px, 1360px) !important;
        max-width: 1360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .wsm-proof-grid {
        justify-content: center !important;
    }
}

/* 14-inch / 15-inch laptops: keep hero two-column but prevent board overflow */
@media (min-width: 1200px) and (max-width: 1599.98px) {
    .wsm-hero {
        padding-top: 66px !important;
        padding-bottom: 76px !important;
    }

        .wsm-hero .wsm-shell {
            padding-left: 30px !important;
            padding-right: 30px !important;
        }

    .wsm-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(500px, 620px) !important;
        gap: clamp(28px, 3vw, 46px) !important;
        align-items: center !important;
    }

    .wsm-hero-copy h1 {
        font-size: clamp(3.15rem, 4.65vw, 5.15rem) !important;
        line-height: 1.01 !important;
        max-width: 820px !important;
    }

    .wsm-hero-copy p {
        max-width: 780px !important;
        font-size: .99rem !important;
        line-height: 1.72 !important;
    }

    .wsm-engineering-board {
        width: 100% !important;
        max-width: 620px !important;
        margin: 0 0 0 auto !important;
        border-radius: 24px !important;
    }

    .wsm-board-canvas {
        min-height: 405px !important;
        background-size: 30px 30px !important;
    }

        .wsm-board-canvas::before {
            inset: 13% 10% !important;
            border-radius: 26px !important;
        }

    .wsm-core-engine {
        width: 188px !important;
        min-height: 128px !important;
        padding: 20px !important;
        border-radius: 16px !important;
    }

        .wsm-core-engine strong {
            font-size: 1.08rem !important;
            line-height: 1.22 !important;
        }

    .wsm-node {
        width: 205px !important;
        padding: 20px 18px 18px !important;
        border-radius: 15px !important;
    }

    .node-req {
        left: 24px !important;
        top: 38px !important;
    }

    .node-arch {
        right: 24px !important;
        top: 62px !important;
    }

    .node-build {
        left: 30px !important;
        bottom: 48px !important;
    }

    .node-quality {
        right: 30px !important;
        bottom: 42px !important;
    }

    .wsm-board-canvas .wsm-node i {
        font-size: 2.35rem !important;
        left: 13px !important;
        top: 10px !important;
    }

    .wsm-board-canvas .wsm-node strong {
        padding-top: 22px !important;
        font-size: .88rem !important;
        line-height: 1.25 !important;
    }

    .wsm-board-canvas .wsm-node span {
        font-size: .78rem !important;
        line-height: 1.42 !important;
    }

    .wsm-board-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

        .wsm-board-metrics div {
            padding: 15px 16px !important;
            min-width: 0 !important;
        }

        .wsm-board-metrics span {
            font-size: .62rem !important;
            letter-spacing: .10em !important;
        }

        .wsm-board-metrics strong {
            white-space: normal !important;
            overflow-wrap: anywhere !important;
            font-size: .78rem !important;
            line-height: 1.28 !important;
        }
}

/* Tablet/small laptop: hero should breathe and board should not compete with text */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .wsm-hero {
        padding-top: 54px !important;
        padding-bottom: 64px !important;
    }

    .wsm-hero-copy h1 {
        font-size: clamp(2.75rem, 5.3vw, 4.05rem) !important;
        max-width: 760px !important;
    }

    .wsm-hero-copy p {
        max-width: 760px !important;
    }

    .wsm-engineering-board {
        max-width: 760px !important;
        margin: 26px auto 0 !important;
    }

    .wsm-board-metrics strong {
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }
}

/* =========================================================
   HOME LEVEL 3 — CONNECTED BOARD SYSTEM UPGRADE
   Adds animated SVG connectors + hover intelligence.
========================================================= */

.wsm-board-canvas {
    isolation: isolate;
}

.wsm-board-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

    .wsm-board-lines .wsm-line {
        fill: none;
        stroke: rgba(0,168,200,.34);
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-dasharray: 620;
        stroke-dashoffset: 620;
        animation: wsmBoardLineDraw 1.4s cubic-bezier(.2,.8,.2,1) forwards;
    }

    .wsm-board-lines .line-req {
        animation-delay: .12s;
    }

    .wsm-board-lines .line-arch {
        animation-delay: .24s;
    }

    .wsm-board-lines .line-build {
        animation-delay: .36s;
    }

    .wsm-board-lines .line-quality {
        animation-delay: .48s;
    }

@keyframes wsmBoardLineDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.wsm-core-engine,
.wsm-node {
    z-index: 3;
}

.wsm-core-engine {
    transition: transform .32s ease, box-shadow .32s ease, background .32s ease;
}

.wsm-board-canvas:has(.wsm-node:hover) .wsm-core-engine {
    transform: translate(-50%, -50%) scale(1.035);
    box-shadow: 0 28px 76px rgba(11,31,58,.32);
}

.wsm-board-canvas:has(.node-req:hover) .line-req,
.wsm-board-canvas:has(.node-arch:hover) .line-arch,
.wsm-board-canvas:has(.node-build:hover) .line-build,
.wsm-board-canvas:has(.node-quality:hover) .line-quality {
    stroke: rgba(0,168,200,.85);
    stroke-width: 2.6;
    filter: drop-shadow(0 0 8px rgba(0,168,200,.30));
}

.wsm-node::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--wsm-teal);
    transform: scaleX(.34);
    transform-origin: left;
    transition: transform .28s ease;
}

.wsm-node:hover::after {
    transform: scaleX(1);
}

@media (max-width: 1100px) {
    .wsm-board-lines {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wsm-board-lines .wsm-line {
        animation: none !important;
        stroke-dashoffset: 0 !important;
    }
}


/* =========================================================
   HERO SYSTEM LEVEL 3 — HOME
   Intent: brand entry / vision / conversion.
========================================================= */

.wsm-home-hero-level3 {
    min-height: calc(100vh - 138px);
    display: flex;
    align-items: center;
}

    .wsm-home-hero-level3 .wsm-shell {
        width: 100%;
    }

    .wsm-home-hero-level3 .wsm-hero-grid {
        grid-template-columns: minmax(0, 1.04fr) minmax(600px, .86fr);
    }

    .wsm-home-hero-level3 .wsm-hero-copy h1 {
        max-width: 1120px;
    }

    .wsm-home-hero-level3 .wsm-engineering-board {
        transform-origin: center;
    }

@media (min-width: 1400px) {
    .wsm-home-hero-level3 .wsm-engineering-board {
        margin-right: 18px;
    }
}

@media (max-width: 1399.98px) {
    .wsm-home-hero-level3 {
        min-height: auto;
    }
}














/* =========================================================
   10-INCH TABLET RESPONSIVE POLISH
   Keeps premium look, reduces excess width/height.
========================================================= */

@media (min-width: 768px) and (max-width: 1100px) {
    .wsm-hero,
    .wsm-company-hero,
    .wsm-cap-hero {
        padding-top: 54px !important;
        padding-bottom: 62px !important;
    }

    .wsm-section,
    .wsm-company-section,
    .wsm-cap-section {
        padding-top: 54px !important;
        padding-bottom: 54px !important;
    }

    .wsm-hero-copy h1,
    .wsm-company-hero-copy h1,
    .wsm-cap-hero-copy h1 {
        font-size: clamp(2.7rem, 6vw, 4.4rem) !important;
        line-height: 1.04 !important;
    }

    .wsm-engineering-board,
    .wsm-company-system-card,
    .wsm-cap-hero-board {
        max-width: 760px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .wsm-global-bridge,
    .wsm-cap-global-bridge,
    .wsm-company-global-core {
        border-radius: 20px !important;
        padding: 24px !important;
    }

    .wsm-company-why-list article {
        min-height: auto !important;
        padding: 22px !important;
    }
}

/* =========================================================
   WILLSMARG SIGNATURE HERO SYSTEM — LEVEL 5
   Right-side system board: depth reveal, line draw, node sequence,
   subtle alive motion, hover intelligence, mobile-safe behavior.
========================================================= */

.wsm-signature-hero-board {
    position: relative;
    opacity: 0;
    transform: translate3d(0, 38px, 0) scale(.965);
    filter: blur(10px);
    transform-origin: 50% 50%;
    will-change: opacity, transform, filter;
    animation: wsmSignatureBoardReveal .95s cubic-bezier(.16,1,.3,1) .18s forwards;
}

@keyframes wsmSignatureBoardReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 38px, 0) scale(.965);
        filter: blur(10px);
    }

    62% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

.wsm-signature-hero-board::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 0 30%, rgba(255,255,255,.56) 44%, transparent 58% 100%);
    transform: translateX(-130%);
    opacity: .78;
    pointer-events: none;
    z-index: 8;
    animation: wsmSignatureGlassSweep 1.25s cubic-bezier(.22,1,.36,1) .45s forwards;
}

@keyframes wsmSignatureGlassSweep {
    to {
        transform: translateX(130%);
        opacity: 0;
    }
}

.wsm-signature-hero-board .wsm-board-canvas {
    isolation: isolate;
}

.wsm-signature-hero-board .wsm-board-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

    .wsm-signature-hero-board .wsm-board-lines .wsm-line {
        fill: none;
        stroke: rgba(0,168,200,.38);
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-dasharray: 640;
        stroke-dashoffset: 640;
        animation: wsmSignatureLineDraw 1.45s cubic-bezier(.22,1,.36,1) forwards;
    }

    .wsm-signature-hero-board .wsm-board-lines .line-req {
        animation-delay: .58s;
    }

    .wsm-signature-hero-board .wsm-board-lines .line-arch {
        animation-delay: .70s;
    }

    .wsm-signature-hero-board .wsm-board-lines .line-build {
        animation-delay: .82s;
    }

    .wsm-signature-hero-board .wsm-board-lines .line-quality {
        animation-delay: .94s;
    }

@keyframes wsmSignatureLineDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.wsm-signature-hero-board .wsm-core-engine,
.wsm-signature-hero-board .wsm-node {
    z-index: 3;
}

.wsm-signature-hero-board .wsm-core-engine {
    opacity: 0;
    animation: wsmSignatureCoreReveal .72s cubic-bezier(.22,1,.36,1) .52s forwards, wsmSignatureCoreFloat 7s ease-in-out 1.45s infinite;
}

@keyframes wsmSignatureCoreReveal {
    from {
        opacity: 0;
        transform: translate(-50%, -46%) scale(.92);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(0);
    }
}

@keyframes wsmSignatureCoreFloat {
    0%,100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 5px));
    }
}

.wsm-signature-hero-board .wsm-node {
    opacity: 0;
    transform: translateY(18px) scale(.965);
    filter: blur(6px);
    animation: wsmSignatureNodeReveal .62s cubic-bezier(.22,1,.36,1) forwards;
}

.wsm-signature-hero-board .node-req {
    animation-delay: .78s;
}

.wsm-signature-hero-board .node-arch {
    animation-delay: .92s;
}

.wsm-signature-hero-board .node-build {
    animation-delay: 1.06s;
}

.wsm-signature-hero-board .node-quality {
    animation-delay: 1.20s;
}

@keyframes wsmSignatureNodeReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.wsm-signature-hero-board .wsm-node::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--wsm-teal);
    transform: scaleX(.32);
    transform-origin: left;
    transition: transform .28s ease;
}

.wsm-signature-hero-board .wsm-node:hover::after {
    transform: scaleX(1);
}

.wsm-signature-hero-board .wsm-board-canvas:has(.wsm-node:hover) .wsm-core-engine {
    box-shadow: 0 30px 82px rgba(11,31,58,.34);
}

.wsm-signature-hero-board .wsm-board-canvas:has(.node-req:hover) .line-req,
.wsm-signature-hero-board .wsm-board-canvas:has(.node-arch:hover) .line-arch,
.wsm-signature-hero-board .wsm-board-canvas:has(.node-build:hover) .line-build,
.wsm-signature-hero-board .wsm-board-canvas:has(.node-quality:hover) .line-quality {
    stroke: rgba(0,168,200,.88);
    stroke-width: 2.8;
    filter: drop-shadow(0 0 8px rgba(0,168,200,.32));
}

.wsm-signature-hero-board .wsm-board-metrics div {
    opacity: 0;
    transform: translateY(12px);
    animation: wsmSignatureMetricReveal .55s ease forwards;
}

    .wsm-signature-hero-board .wsm-board-metrics div:nth-child(1) {
        animation-delay: 1.10s;
    }

    .wsm-signature-hero-board .wsm-board-metrics div:nth-child(2) {
        animation-delay: 1.22s;
    }

    .wsm-signature-hero-board .wsm-board-metrics div:nth-child(3) {
        animation-delay: 1.34s;
    }

@keyframes wsmSignatureMetricReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .wsm-signature-hero-board .wsm-board-lines {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .wsm-signature-hero-board,
    .wsm-signature-hero-board .wsm-node,
    .wsm-signature-hero-board .wsm-core-engine,
    .wsm-signature-hero-board .wsm-board-metrics div {
        opacity: 1 !important;
        filter: none !important;
        animation: none !important;
        transform: none !important;
    }

        .wsm-signature-hero-board::before {
            display: none;
        }
}

@media (prefers-reduced-motion: reduce) {
    .wsm-signature-hero-board,
    .wsm-signature-hero-board *,
    .wsm-signature-hero-board::before {
        animation: none !important;
        transition-duration: .001ms !important;
        opacity: 1 !important;
        filter: none !important;
    }
}


/* =========================================================
   HOME LEVEL 5 FIX — CENTER CORE ALWAYS VISIBLE
========================================================= */

.wsm-board-canvas {
    isolation: isolate;
}

.wsm-board-lines,
.wsm-board-lines path {
    z-index: 1;
    pointer-events: none;
}

.wsm-core-engine {
    z-index: 5 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: grid !important;
    transform: translate(-50%, -50%) !important;
}

.wsm-node {
    z-index: 4 !important;
}

/* keep center core premium float only on desktop */
@media (min-width: 992px) {
    .wsm-core-engine {
        animation: wsmHomeCoreFloatFixed 6s ease-in-out infinite !important;
    }

    @keyframes wsmHomeCoreFloatFixed {
        0%, 100% {
            transform: translate(-50%, -50%) !important;
        }

        50% {
            transform: translate(-50%, calc(-50% - 6px)) !important;
        }
    }
}

@media (max-width: 767.98px) {
    .wsm-core-engine {
        transform: none !important;
        animation: none !important;
    }
}

/* =========================================================
   HOME CENTER CORE — MATCH COMPANY + CAPABILITIES
========================================================= */

.wsm-board-canvas {
    isolation: isolate;
}

.wsm-board-lines {
    position: absolute;
    inset: 0;
    z-index: 1 !important;
    pointer-events: none;
}

.wsm-core-engine {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 245px;
    min-height: 152px;
    padding: 24px;
    border-radius: 20px;
    color: #fff;
    background: var(--wsm-ink);
    box-shadow: 0 22px 56px rgba(11,31,58,.24);
    display: grid !important;
    place-items: center;
    text-align: center;
    z-index: 5 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) !important;
}

    .wsm-core-engine small {
        color: #9ceeff;
        font-weight: 850;
        letter-spacing: .12em;
    }

    .wsm-core-engine strong {
        font-size: 1.24rem;
        line-height: 1.22;
        font-weight: 950;
    }

    .wsm-core-engine span {
        color: rgba(255,255,255,.74);
        font-size: .76rem;
        font-weight: 800;
    }

.wsm-node {
    z-index: 4 !important;
}

/* =========================================================
   HOME HERO MOBILE FIX — STOP FIRST COLUMN SQUEEZE
   Reason: .wsm-home-hero-level3 .wsm-hero-grid has stronger specificity
   than normal mobile .wsm-hero-grid rules. This forces one-column layout
   on tablets/mobile and prevents paragraph/kicker text from becoming vertical.
========================================================= */

@media (max-width: 1399.98px) {
    .wsm-home-hero-level3 .wsm-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .wsm-home-hero-level3 .wsm-engineering-board {
        max-width: 920px !important;
        margin: 32px auto 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .wsm-home-hero-level3 .wsm-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .wsm-home-hero-level3 .wsm-hero-copy {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

        .wsm-home-hero-level3 .wsm-hero-copy h1,
        .wsm-home-hero-level3 .wsm-hero-copy p {
            max-width: 100% !important;
        }

    .wsm-home-hero-level3 .wsm-kicker {
        max-width: 100% !important;
        width: max-content !important;
        white-space: normal !important;
    }
}

@media (max-width: 767.98px) {
    .wsm-home-hero-level3 {
        min-height: auto !important;
        display: block !important;
        padding-top: 48px !important;
        padding-bottom: 60px !important;
    }

        .wsm-home-hero-level3 .wsm-hero-grid {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 28px !important;
            width: 100% !important;
            min-width: 0 !important;
        }

        .wsm-home-hero-level3 .wsm-hero-copy {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
        }

        .wsm-home-hero-level3 .wsm-kicker {
            width: auto !important;
            max-width: 100% !important;
            white-space: normal !important;
            overflow-wrap: normal !important;
            word-break: normal !important;
        }

        .wsm-home-hero-level3 .wsm-hero-copy h1 {
            max-width: 100% !important;
            font-size: clamp(2.25rem, 10vw, 3.35rem) !important;
            line-height: 1.02 !important;
            letter-spacing: -.055em !important;
        }

        .wsm-home-hero-level3 .wsm-hero-copy p {
            display: block !important;
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
            font-size: 1rem !important;
            line-height: 1.72 !important;
            white-space: normal !important;
            word-break: normal !important;
            overflow-wrap: break-word !important;
            hyphens: none !important;
            text-align: left !important;
        }

        .wsm-home-hero-level3 .wsm-engineering-board {
            max-width: 100% !important;
            margin: 26px auto 0 !important;
        }
}

@media (max-width: 420px) {
    .wsm-home-hero-level3 .wsm-shell {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .wsm-home-hero-level3 .wsm-kicker {
        font-size: .68rem !important;
        letter-spacing: .10em !important;
        line-height: 1.35 !important;
    }
}

/* =========================================================
   HOME MOBILE BOARD FIX — CORE STACKED PROPERLY
========================================================= */

@media (max-width: 767.98px) {
    .wsm-board-canvas {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 18px !important;
    }

    .wsm-board-lines {
        display: none !important;
    }

    .wsm-core-engine {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        min-height: 132px !important;
        transform: none !important;
        order: 3 !important;
        z-index: 1 !important;
        animation: none !important;
    }

    .wsm-node {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        transform: none !important;
        z-index: 1 !important;
    }

    .node-req {
        order: 1 !important;
    }

    .node-arch {
        order: 2 !important;
    }

    .node-build {
        order: 4 !important;
    }

    .node-quality {
        order: 5 !important;
    }
}

/* =========================================================
   HOME HERO BOARD — FINAL RESPONSIVE OVERRIDE
   Purpose:
   - Desktop: original Level 5 connected board remains.
   - Tablet / small laptop: core stacks first, cards in 2 columns.
   - Mobile: core stacks first, cards in 1 column.
   - Prevents overlap, off-center core, and squeezed board content.
========================================================= */

/* Tablet + small laptop: 768px–1199px */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .wsm-home-hero-level3 .wsm-engineering-board {
        width: 100% !important;
        max-width: 820px !important;
        margin: 30px auto 0 !important;
        border-radius: 24px !important;
        overflow: hidden !important;
    }

    .wsm-home-hero-level3 .wsm-board-canvas {
        position: relative !important;
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
        padding: 24px !important;
        align-items: stretch !important;
    }

        .wsm-home-hero-level3 .wsm-board-lines,
        .wsm-home-hero-level3 .wsm-board-canvas::before {
            display: none !important;
        }

    .wsm-home-hero-level3 .wsm-core-engine {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 440px !important;
        min-height: 145px !important;
        margin: 0 auto 10px !important;
        grid-column: 1 / -1 !important;
        order: 1 !important;
        z-index: 2 !important;
        animation: none !important;
    }

    .wsm-home-hero-level3 .wsm-node,
    .wsm-home-hero-level3 .node-req,
    .wsm-home-hero-level3 .node-arch,
    .wsm-home-hero-level3 .node-build,
    .wsm-home-hero-level3 .node-quality {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
        min-height: 128px !important;
        z-index: 1 !important;
    }

    .wsm-home-hero-level3 .node-req {
        order: 2 !important;
    }

    .wsm-home-hero-level3 .node-arch {
        order: 3 !important;
    }

    .wsm-home-hero-level3 .node-build {
        order: 4 !important;
    }

    .wsm-home-hero-level3 .node-quality {
        order: 5 !important;
    }

    .wsm-home-hero-level3 .wsm-board-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

        .wsm-home-hero-level3 .wsm-board-metrics strong {
            white-space: normal !important;
        }
}

/* Mobile: 0px–767px */
@media (max-width: 767.98px) {
    .wsm-home-hero-level3 .wsm-engineering-board {
        width: 100% !important;
        max-width: 100% !important;
        margin: 26px auto 0 !important;
        border-radius: 22px !important;
        overflow: hidden !important;
    }

    .wsm-home-hero-level3 .wsm-board-head {
        min-height: auto !important;
        padding: 16px 18px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        align-items: start !important;
    }

        .wsm-home-hero-level3 .wsm-board-head span,
        .wsm-home-hero-level3 .wsm-board-head strong {
            white-space: normal !important;
            line-height: 1.35 !important;
        }

    .wsm-home-hero-level3 .wsm-board-canvas {
        position: relative !important;
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 18px !important;
        align-items: stretch !important;
    }

        .wsm-home-hero-level3 .wsm-board-lines,
        .wsm-home-hero-level3 .wsm-board-canvas::before {
            display: none !important;
        }

    .wsm-home-hero-level3 .wsm-core-engine {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 132px !important;
        margin: 0 !important;
        grid-column: auto !important;
        order: 1 !important;
        z-index: 1 !important;
        animation: none !important;
    }

    .wsm-home-hero-level3 .wsm-node,
    .wsm-home-hero-level3 .node-req,
    .wsm-home-hero-level3 .node-arch,
    .wsm-home-hero-level3 .node-build,
    .wsm-home-hero-level3 .node-quality {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
        min-height: 120px !important;
        z-index: 1 !important;
    }

    .wsm-home-hero-level3 .node-req {
        order: 2 !important;
    }

    .wsm-home-hero-level3 .node-arch {
        order: 3 !important;
    }

    .wsm-home-hero-level3 .node-build {
        order: 4 !important;
    }

    .wsm-home-hero-level3 .node-quality {
        order: 5 !important;
    }

    .wsm-home-hero-level3 .wsm-board-metrics {
        grid-template-columns: 1fr !important;
    }

        .wsm-home-hero-level3 .wsm-board-metrics div {
            padding: 16px 18px !important;
        }
}

/* =========================================================
   HOME HERO BOARD — SAFETY FINAL
   Keeps Home right board stable on laptop/tablet/mobile.
========================================================= */

@media (min-width: 1200px) and (max-width: 1599.98px) {
    .wsm-home-hero-level3 .wsm-engineering-board {
        max-width: 760px !important;
        margin-left: auto !important;
        margin-right: 18px !important;
    }

    .wsm-home-hero-level3 .wsm-board-canvas {
        min-height: 430px !important;
    }
}





/* =========================================================
   COMPANY MOBILE/TABLET CARD DENSITY FIX
   Reduces empty gaps without touching hero images/boards.
========================================================= */

@media (max-width: 1199.98px) {
    .wsm-company-operating-card,
    .wsm-company-card,
    .wsm-company-info-card {
        min-height: auto !important;
        padding: 24px 22px !important;
    }

    .wsm-company-operating-card {
        display: grid !important;
        place-items: center !important;
        text-align: center !important;
    }

        .wsm-company-operating-card .wsm-icon-box,
        .wsm-company-operating-card i {
            margin-bottom: 14px !important;
        }

        .wsm-company-operating-card h3 {
            margin-bottom: 8px !important;
        }

        .wsm-company-operating-card p {
            max-width: 420px !important;
            margin: 0 auto !important;
            line-height: 1.58 !important;
        }
}

@media (max-width: 767.98px) {
    .wsm-company-operating-card,
    .wsm-company-card,
    .wsm-company-info-card {
        padding: 22px 18px !important;
        border-radius: 20px !important;
    }
}