html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--whi-color-surface, #ffffff);
    color: var(--whi-color-ink, #102033);
    font-family: var(--whi-font-base, Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

img,
svg,
video {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: var(--whi-color-primary, #0d4f8b);
    text-decoration: none;
    text-underline-offset: 0.18em;
}

a:hover,
a:focus {
    text-decoration: underline;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-button__link {
    background: var(--whi-color-primary, #0d4f8b);
    border: 1px solid var(--whi-color-primary, #0d4f8b);
    border-radius: var(--whi-button-radius, 999px);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1.15rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
    background: var(--whi-color-secondary, #1f86c8);
    border-color: var(--whi-color-secondary, #1f86c8);
    color: #ffffff;
    text-decoration: none;
}

.wp-block-button.whi-button-primary .wp-block-button__link {
    background: var(--whi-color-primary, #0d4f8b);
    border-color: var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
}

.wp-block-button.whi-button-ghost .wp-block-button__link,
.wp-block-button.whi-button-outline .wp-block-button__link {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(13, 79, 139, 0.24);
    color: var(--whi-color-primary, #0d4f8b);
}

.wp-block-button.whi-button-ghost .wp-block-button__link:hover,
.wp-block-button.whi-button-outline .wp-block-button__link:hover {
    background: var(--whi-color-secondary, #1f86c8);
    border-color: var(--whi-color-secondary, #1f86c8);
    color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: var(--whi-radius, 16px);
    background: #ffffff;
    color: var(--whi-color-ink, #102033);
    padding: 0.78rem 0.9rem;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--whi-color-accent, #69c7e8) 55%, transparent);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.7em;
    color: var(--whi-color-ink, #102033);
    font-family: var(--whi-font-heading, Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.15;
    overflow-wrap: break-word;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.15rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin: 0 0 1.15rem;
}

ul,
ol {
    margin: 0 0 1.25rem 1.35rem;
    padding: 0;
}

blockquote {
    border-left: 4px solid var(--whi-color-secondary, #1f86c8);
    margin: 2rem 0;
    padding: 0.2rem 0 0.2rem 1.25rem;
    color: var(--whi-color-muted, #5c7187);
    font-size: 1.12rem;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: 1px solid var(--whi-color-border, #d8e6f2);
    padding: 0.75rem;
    text-align: left;
    vertical-align: top;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    top: 1rem;
    left: 1rem;
    z-index: 100000;
    width: auto;
    height: auto;
    padding: 0.7rem 1rem;
    clip: auto;
    background: #ffffff;
    color: var(--whi-color-ink, #102033);
    border: 2px solid var(--whi-color-primary, #0d4f8b);
    border-radius: var(--whi-radius, 16px);
}

.whi-shell {
    width: min(calc(100% - 2rem), var(--whi-wide-width, 1200px));
    margin-inline: auto;
}

.whi-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--whi-color-surface, #ffffff) 92%, transparent);
    border-bottom: 1px solid var(--whi-color-border, #d8e6f2);
    backdrop-filter: blur(14px);
    transition:
        background-color 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease;
}

.whi-site-header.is-scrolled {
    background: color-mix(in srgb, var(--whi-color-surface, #ffffff) 97%, transparent);
    border-color: rgba(216, 230, 242, 0.82);
    box-shadow: 0 18px 46px rgba(13, 79, 139, 0.11);
}

.admin-bar .whi-site-header {
    top: 32px;
}

.whi-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 78px;
    transition: min-height 260ms ease;
}

.whi-site-header.is-scrolled .whi-header-inner {
    min-height: 66px;
}

.whi-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo {
    max-height: 54px;
    width: auto;
    transition: max-height 260ms ease, transform 260ms ease;
}

.whi-site-header.is-scrolled .custom-logo {
    max-height: 46px;
}

.whi-site-title,
.whi-footer-title {
    color: var(--whi-color-ink, #102033);
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: 0;
    text-decoration: none;
}

.whi-site-description {
    margin: 0.08rem 0 0;
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.88rem;
    line-height: 1.35;
}

.whi-primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.whi-primary-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.whi-primary-nav li {
    position: relative;
}

.whi-primary-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    border-radius: var(--whi-button-radius, 999px);
    color: var(--whi-color-ink, #102033);
    font-size: 0.95rem;
    font-weight: 750;
    padding: 0.45rem 0.72rem;
    text-decoration: none;
}

.whi-primary-nav a:hover,
.whi-primary-nav a:focus,
.whi-primary-nav .current-menu-item > a,
.whi-primary-nav .current_page_item > a {
    background: var(--whi-color-surface-alt, #f3f8fd);
    color: var(--whi-color-primary, #0d4f8b);
}

.whi-primary-nav .sub-menu {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    display: none;
    min-width: 220px;
    padding: 0.5rem;
    background: #ffffff;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: var(--whi-radius, 16px);
    box-shadow: 0 20px 50px rgba(16, 32, 51, 0.14);
}

.whi-primary-nav li:hover > .sub-menu,
.whi-primary-nav li:focus-within > .sub-menu {
    display: block;
}

.whi-primary-nav .sub-menu a {
    justify-content: flex-start;
    border-radius: 6px;
}

.whi-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    background: var(--whi-color-primary, #0d4f8b);
    box-shadow: 0 14px 30px rgba(13, 79, 139, 0.18);
    color: #ffffff;
    padding: 0.48rem 1rem;
    font-size: 0.92rem;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.whi-primary-nav .whi-header-cta:hover,
.whi-primary-nav .whi-header-cta:focus {
    background: #051f3b;
    color: #ffffff;
}

.whi-header-language {
    display: flex;
    align-items: center;
    padding-left: 0.3rem;
}

.whi-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.whi-lang-switcher a,
.whi-lang-switcher .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    min-height: 2rem;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: var(--whi-button-radius, 999px);
    color: var(--whi-color-ink, #102033);
    padding: 0.25rem 0.45rem;
    text-decoration: none;
}

.whi-lang-switcher .current,
.whi-lang-switcher a:hover {
    background: var(--whi-color-primary, #0d4f8b);
    border-color: var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
}

.whi-lang-sep {
    display: none;
}

.whi-nav-toggle {
    display: none;
    gap: 0.55rem;
    min-height: 42px;
    padding: 0.55rem 0.85rem;
}

.whi-nav-toggle-lines,
.whi-nav-toggle-lines::before,
.whi-nav-toggle-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    content: "";
}

.whi-nav-toggle-lines {
    position: relative;
}

.whi-nav-toggle-lines::before,
.whi-nav-toggle-lines::after {
    position: absolute;
    left: 0;
}

.whi-nav-toggle-lines::before {
    top: -6px;
}

.whi-nav-toggle-lines::after {
    top: 6px;
}

.whi-site-main {
    min-height: 58vh;
}

.whi-story-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 76vh;
    overflow: hidden;
    background-color: #051f3b;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    isolation: isolate;
}

.whi-story-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 20%, rgba(105, 199, 232, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 100%);
    background-size: auto, 54px 54px;
    content: "";
}

.whi-story-hero.no-image::after {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 42%;
    background:
        repeating-radial-gradient(ellipse at 22% 100%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 22px),
        repeating-radial-gradient(ellipse at 70% 100%, rgba(105, 199, 232, 0.16) 0 1px, transparent 1px 28px);
    content: "";
    opacity: 0.38;
}

.whi-story-hero.has-image {
    background-image:
        linear-gradient(90deg, rgba(5, 31, 59, 0.84), rgba(5, 31, 59, 0.46)),
        var(--whi-story-hero-image);
}

.whi-story-hero.has-image .whi-eyebrow {
    color: var(--whi-color-secondary, #1f86c8);
}

.whi-story-hero.has-image h1 {
    color: var(--whi-color-ink, #102033);
}

.whi-story-hero.has-image .whi-story-lede {
    color: var(--whi-color-muted, #5c7187);
}

.whi-story-hero-inner {
    max-width: 980px;
    margin-left: max(1rem, calc((100vw - var(--whi-wide-width, 1200px)) / 2));
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
}

.whi-story-hero .whi-eyebrow,
.whi-story-cta .whi-eyebrow {
    color: var(--whi-color-accent, #69c7e8);
}

.whi-story-hero h1 {
    max-width: 900px;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-size: 4.55rem;
    line-height: 1.04;
}

.whi-story-lede {
    max-width: 760px;
    color: #d9ebf8;
    font-size: 1.18rem;
    line-height: 1.8;
}

.whi-story-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.whi-story-section:nth-of-type(even) {
    background: var(--whi-color-surface-alt, #f3f8fd);
}

.whi-story-section:nth-of-type(3n) .whi-story-split {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.whi-story-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.whi-story-index-3.whi-documentary-block .whi-story-split,
.whi-story-index-6.whi-documentary-block .whi-story-split {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.whi-story-index-3.whi-documentary-block .whi-documentary-visual,
.whi-story-index-6.whi-documentary-block .whi-documentary-visual {
    min-height: 540px;
}

.whi-story-split h2,
.whi-section-heading h2,
.whi-story-statement h2,
.whi-story-cta h2 {
    max-width: 920px;
}

.whi-story-split p,
.whi-section-heading p {
    color: var(--whi-color-muted, #5c7187);
}

.whi-evidence-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    list-style: none;
}

.whi-evidence-list li {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.78rem;
    align-items: start;
    padding: 1rem;
    border-left: 2px solid var(--whi-color-secondary, #1f86c8);
    background: #ffffff;
    color: var(--whi-color-ink, #102033);
    box-shadow: 0 16px 45px rgba(16, 32, 51, 0.07);
}

.whi-evidence-list li::before {
    display: none;
}

.whi-bullet-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 1.58rem;
    height: 1.58rem;
    min-width: 1.58rem;
    margin-top: 0.05rem;
    background:
        linear-gradient(145deg, var(--whi-color-secondary, #1f86c8), var(--whi-color-primary, #0d4f8b));
    color: #ffffff;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(31, 134, 200, 0.2);
}

.whi-bullet-icon svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
}

.whi-story-statement {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #ffffff;
    text-align: center;
}

.whi-story-statement .whi-shell {
    max-width: 980px;
}

.whi-story-statement h2 {
    margin-inline: auto;
    font-size: 3.25rem;
}

.whi-story-statement p {
    max-width: 760px;
    margin-inline: auto;
    color: var(--whi-color-muted, #5c7187);
    font-size: 1.08rem;
}

.whi-statement-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
    max-width: var(--whi-wide-width, 1200px) !important;
    text-align: left;
}

.whi-statement-copy h2,
.whi-statement-copy p {
    margin-left: 0;
    margin-right: 0;
}

.whi-statement-visual {
    position: relative;
    min-height: clamp(360px, 40vw, 560px);
    overflow: hidden;
    border: 1px solid rgba(216, 230, 242, 0.22);
    background-position: center;
    background-size: cover;
    box-shadow: 0 34px 86px rgba(5, 31, 59, 0.24);
}

.whi-statement-visual::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 31, 59, 0), rgba(5, 31, 59, 0.22)),
        repeating-radial-gradient(ellipse at 92% 14%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 16px);
    content: "";
}

.whi-documentary-visual {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5, 31, 59, 0.08), rgba(31, 134, 200, 0.08)),
        var(--whi-color-surface-alt, #f3f8fd);
    border: 1px solid var(--whi-color-border, #d8e6f2);
}

.whi-documentary-visual::before {
    position: absolute;
    inset: 10%;
    background:
        repeating-radial-gradient(ellipse at 50% 50%, rgba(13, 79, 139, 0.23) 0 1px, transparent 1px 20px);
    content: "";
    opacity: 0.55;
}

.whi-documentary-visual::after {
    position: absolute;
    left: 12%;
    bottom: 12%;
    width: 52%;
    height: 2px;
    background: var(--whi-color-secondary, #1f86c8);
    content: "";
}

.whi-documentary-visual span {
    position: absolute;
    right: 12%;
    top: 14%;
    width: 38%;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(13, 79, 139, 0.18);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(105, 199, 232, 0.14)),
        linear-gradient(90deg, transparent 0 48%, rgba(13, 79, 139, 0.18) 48% 52%, transparent 52%);
    box-shadow: 0 25px 60px rgba(16, 32, 51, 0.14);
}

.whi-documentary-visual.has-section-image {
    min-height: clamp(420px, 46vw, 620px);
    border: 0;
    background-position: center;
    background-size: cover;
    box-shadow: 0 34px 85px rgba(16, 32, 51, 0.16);
}

.whi-documentary-visual.has-section-image::before {
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 31, 59, 0.02), rgba(5, 31, 59, 0.22)),
        radial-gradient(circle at 16% 18%, rgba(105, 199, 232, 0.22), transparent 18rem);
    opacity: 1;
}

.whi-documentary-visual.has-section-image::after {
    left: 1.4rem;
    bottom: 1.4rem;
    width: 96px;
    background: var(--whi-color-accent, #69c7e8);
}

.whi-documentary-visual.has-section-image span {
    display: none;
}

.whi-story-copy-panel {
    position: relative;
    padding: clamp(1.5rem, 4vw, 2.6rem);
    border-left: 3px solid var(--whi-color-secondary, #1f86c8);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 253, 0.86)),
        #ffffff;
    box-shadow: 0 26px 68px rgba(16, 32, 51, 0.09);
}

.whi-story-copy-panel::before {
    position: absolute;
    inset: 1rem 1rem auto auto;
    width: 112px;
    height: 112px;
    background: repeating-radial-gradient(ellipse at center, rgba(31, 134, 200, 0.13) 0 1px, transparent 1px 13px);
    content: "";
    opacity: 0.62;
    pointer-events: none;
}

.whi-story-copy-panel > * {
    position: relative;
}

.whi-story-copy-panel h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.06;
}

.whi-story-copy-panel p:not(.whi-eyebrow) {
    color: var(--whi-color-ink, #102033);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.85;
}

.whi-system-section,
.whi-question-section,
.whi-impact-section {
    background: var(--whi-color-surface-alt, #f3f8fd);
}

.whi-system-grid,
.whi-question-grid,
.whi-stat-grid,
.whi-team-grid {
    display: grid;
    gap: 1rem;
}

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

.whi-system-card,
.whi-question-grid article,
.whi-team-grid article {
    position: relative;
    min-height: 230px;
    padding: 1.45rem;
    background: #ffffff;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    box-shadow: 0 24px 55px rgba(16, 32, 51, 0.07);
}

.whi-system-card {
    grid-column: span 3;
}

.whi-system-card:nth-child(1),
.whi-system-card:nth-child(2) {
    grid-column: span 4;
    min-height: 280px;
}

.whi-system-card:nth-child(3),
.whi-system-card:nth-child(4) {
    grid-column: span 2;
}

.whi-system-card:nth-child(1) {
    background:
        linear-gradient(145deg, rgba(13, 79, 139, 0.07), rgba(105, 199, 232, 0.13)),
        #ffffff;
}

.whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card,
.whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card:nth-child(1),
.whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card:nth-child(2),
.whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card:nth-child(3),
.whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card:nth-child(4) {
    display: flex;
    grid-column: auto;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
}

.whi-system-card::before,
.whi-question-grid article::before,
.whi-team-grid article::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--whi-color-secondary, #1f86c8);
    content: "";
}

.whi-system-card h3,
.whi-question-grid h3,
.whi-team-grid h3 {
    font-size: 1.12rem;
}

.whi-system-card p,
.whi-question-grid p,
.whi-team-grid p,
.whi-team-grid small {
    color: var(--whi-color-muted, #5c7187);
}

.whi-logo-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    margin-top: 2rem;
    background: var(--whi-color-border, #d8e6f2);
    border: 1px solid var(--whi-color-border, #d8e6f2);
}

.whi-logo-row span {
    display: grid;
    place-items: center;
    min-height: 110px;
    background: #ffffff;
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
}

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

.whi-stat-grid article {
    padding: 1.5rem 0;
    border-top: 1px solid var(--whi-color-border, #d8e6f2);
}

.whi-stat-grid strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--whi-color-primary, #0d4f8b);
    font-size: 4rem;
    line-height: 1;
}

.whi-stat-grid span {
    display: block;
    color: var(--whi-color-muted, #5c7187);
}

.whi-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.whi-quote-grid blockquote {
    margin: 0;
    padding: 1.4rem;
    background: #ffffff;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-left: 3px solid var(--whi-color-secondary, #1f86c8);
    color: var(--whi-color-ink, #102033);
    font-size: 1rem;
}

.whi-testimonial-block {
    margin-top: 2rem;
}

.whi-testimonial-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.whi-testimonial-heading h3 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    line-height: 1.08;
}

.whi-testimonial-track {
    padding-top: 0.45rem;
}

.whi-testimonial-card {
    position: relative;
    flex: 0 0 min(430px, calc(100% - 1rem));
    min-height: 290px;
    padding: 1.35rem;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    background:
        radial-gradient(circle at 96% 8%, rgba(105, 199, 232, 0.2), transparent 8rem),
        linear-gradient(180deg, #ffffff, rgba(243, 248, 253, 0.86));
    box-shadow: 0 24px 55px rgba(16, 32, 51, 0.07);
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.whi-testimonial-card::before {
    position: absolute;
    right: 1rem;
    bottom: -1rem;
    color: rgba(31, 134, 200, 0.11);
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 11rem;
    line-height: 1;
    pointer-events: none;
}

.whi-testimonial-card:hover,
.whi-testimonial-card:focus-within {
    border-color: color-mix(in srgb, var(--whi-color-secondary, #1f86c8) 54%, var(--whi-color-border, #d8e6f2));
    box-shadow: 0 30px 70px rgba(13, 79, 139, 0.16);
    transform: translateY(-6px);
}

.whi-testimonial-person {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.whi-testimonial-avatar {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    min-width: 58px;
    margin: 0;
    overflow: hidden;
    border-radius: 999px;
    background: var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
    font-weight: 850;
}

.whi-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whi-testimonial-person strong,
.whi-testimonial-person small {
    display: block;
}

.whi-testimonial-person small {
    margin-top: 0.12rem;
    color: var(--whi-color-muted, #5c7187);
    font-weight: 700;
}

.whi-testimonial-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--whi-color-ink, #102033);
    font-size: 1.08rem;
    line-height: 1.7;
}

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

.whi-split-cards {
    background:
        radial-gradient(circle at 86% 12%, rgba(105, 199, 232, 0.18), transparent 20rem),
        #ffffff;
}

.whi-split-cards .whi-program-card:first-child {
    background: #051f3b;
    color: #ffffff;
}

.whi-split-cards .whi-program-card:first-child h2,
.whi-split-cards .whi-program-card:first-child p,
.whi-split-cards .whi-program-card:first-child li {
    color: #ffffff;
}

.whi-split-cards .whi-program-card:first-child .whi-program-line {
    background: var(--whi-color-accent, #69c7e8);
}

.whi-program-card ul {
    display: grid;
    gap: 0.45rem;
    margin: 1.2rem 0 0;
    color: var(--whi-color-muted, #5c7187);
    list-style: none;
    padding: 0;
}

.whi-program-card li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
}

.whi-program-card li .whi-bullet-icon {
    width: 1.42rem;
    height: 1.42rem;
    min-width: 1.42rem;
}

.whi-program-card li .whi-bullet-icon svg {
    width: 0.9rem;
    height: 0.9rem;
}

.whi-split-cards .whi-program-card:first-child .whi-bullet-icon {
    background: rgba(105, 199, 232, 0.18);
    color: #ffffff;
    box-shadow: none;
}

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

.whi-question-grid article {
    grid-column: span 6;
}

.whi-question-grid article:nth-child(3n + 1) {
    grid-column: span 5;
}

.whi-question-grid article:nth-child(3n + 2) {
    grid-column: span 7;
}

.whi-question-grid article:nth-child(2) {
    background:
        linear-gradient(145deg, rgba(13, 79, 139, 0.06), rgba(105, 199, 232, 0.14)),
        #ffffff;
}

.whi-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.whi-team-grid article {
    min-height: 0;
}

.whi-collaborators-panel {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding-top: clamp(2.5rem, 5vw, 4rem);
    border-top: 1px solid var(--whi-color-border, #d8e6f2);
}

.whi-collaborators-panel .whi-section-heading {
    margin-bottom: 1.5rem;
}

.whi-collaborator-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.whi-collaborator-card {
    position: relative;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 1rem;
    min-height: 190px;
    padding: 1.2rem;
    overflow: hidden;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    background:
        linear-gradient(180deg, #ffffff, rgba(243, 248, 253, 0.82));
    box-shadow: 0 20px 48px rgba(16, 32, 51, 0.07);
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.whi-collaborator-card::after {
    position: absolute;
    inset: auto -3rem -4rem auto;
    width: 170px;
    height: 170px;
    background: repeating-radial-gradient(ellipse at center, rgba(31, 134, 200, 0.18) 0 1px, transparent 1px 13px);
    content: "";
    pointer-events: none;
}

.whi-collaborator-card:hover,
.whi-collaborator-card:focus-within {
    border-color: color-mix(in srgb, var(--whi-color-secondary, #1f86c8) 54%, var(--whi-color-border, #d8e6f2));
    box-shadow: 0 30px 70px rgba(13, 79, 139, 0.16);
    transform: translateY(-5px);
}

.whi-collaborator-photo {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 92px;
    height: 112px;
    margin: 0;
    overflow: hidden;
    background: var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 850;
}

.whi-collaborator-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whi-collaborator-card > div {
    position: relative;
    z-index: 1;
}

.whi-collaborator-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.08rem;
}

.whi-collaborator-card p {
    margin-bottom: 0;
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.92rem;
}

.whi-team-photo {
    position: relative;
    display: grid;
    place-items: center;
    width: 148px;
    height: 148px;
    margin: 0 0 1.15rem;
    overflow: hidden;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(13, 79, 139, 0.1), rgba(105, 199, 232, 0.18)),
        var(--whi-color-surface-alt, #f3f8fd);
    box-shadow: 0 18px 42px rgba(16, 32, 51, 0.12);
}

.whi-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whi-team-photo span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background:
        repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 14px),
        var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 850;
}

.whi-team-role {
    margin: -0.35rem 0 1rem;
    color: var(--whi-color-secondary, #1f86c8) !important;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.35;
}

.whi-team-card {
    display: grid;
    align-content: start;
    transition:
        box-shadow 220ms ease,
        transform 220ms ease;
}

.whi-team-card:hover,
.whi-team-card:focus-within {
    box-shadow: 0 30px 70px rgba(13, 79, 139, 0.13);
    transform: translateY(-4px);
}

.whi-team-reflection {
    display: grid;
    gap: 0.35rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--whi-color-border, #d8e6f2);
}

.whi-team-reflection span {
    color: var(--whi-color-primary, #0d4f8b);
    font-size: 0.82rem;
    font-weight: 850;
}

.whi-team-reflection p {
    margin-bottom: 0;
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.95rem;
    line-height: 1.6;
}

.whi-story-cta {
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    background: #051f3b;
    color: #ffffff;
}

.whi-story-cta .whi-shell {
    max-width: 960px;
}

.whi-story-cta h2 {
    color: #ffffff;
    font-size: 3.35rem;
}

.whi-story-cta p {
    max-width: 760px;
    color: #d9ebf8;
    font-size: 1.12rem;
}

.whi-story-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
    max-width: var(--whi-wide-width, 1200px) !important;
}

.whi-story-cta-copy {
    position: relative;
    z-index: 1;
}

.whi-story-cta-visual {
    position: relative;
    min-height: clamp(340px, 37vw, 520px);
    overflow: hidden;
    border: 1px solid rgba(105, 199, 232, 0.22);
    background-position: center;
    background-size: cover;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.25);
}

.whi-story-cta-visual::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 31, 59, 0.02), rgba(5, 31, 59, 0.28)),
        repeating-radial-gradient(ellipse at 88% 80%, rgba(105, 199, 232, 0.22) 0 1px, transparent 1px 18px);
    content: "";
}

/* Visual route 1: emotional continuity between narrative blocks. */
.whi-visual-route-emotional .whi-site-main {
    background:
        linear-gradient(180deg, #ffffff 0%, #f5fbff 36%, #ffffff 68%, #f3f8fd 100%);
}

.whi-visual-route-emotional .whi-story-hero {
    min-height: min(86vh, 900px);
}

.whi-visual-route-emotional .whi-story-hero.has-image::after {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 28%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96));
    content: "";
    pointer-events: none;
}

.whi-visual-route-emotional .whi-story-section,
.whi-visual-route-emotional .whi-story-statement,
.whi-visual-route-emotional .whi-story-cta {
    isolation: isolate;
    overflow: hidden;
}

.whi-visual-route-emotional .whi-story-section:not(.whi-story-cta)::before,
.whi-visual-route-emotional .whi-story-statement::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 253, 0.7) 48%, rgba(255, 255, 255, 0.9)),
        repeating-linear-gradient(102deg, rgba(31, 134, 200, 0.055) 0 1px, transparent 1px 42px);
    content: "";
    opacity: 0.7;
    pointer-events: none;
}

.whi-visual-route-emotional .whi-story-section::after,
.whi-visual-route-emotional .whi-story-statement::after {
    position: absolute;
    left: -6vw;
    right: -6vw;
    bottom: -54px;
    z-index: 2;
    height: 104px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92));
    content: "";
    pointer-events: none;
    transform: rotate(-1.1deg);
    transform-origin: center;
}

.whi-visual-route-emotional .whi-story-section > .whi-shell,
.whi-visual-route-emotional .whi-story-statement > .whi-shell,
.whi-visual-route-emotional .whi-story-cta > .whi-shell {
    position: relative;
    z-index: 1;
}

.whi-visual-route-emotional .whi-story-section > .whi-shell::before {
    position: absolute;
    top: -4rem;
    bottom: -4rem;
    left: clamp(-2.6rem, -4vw, -1.2rem);
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(31, 134, 200, 0.34), transparent);
    content: "";
    pointer-events: none;
}

.whi-visual-route-emotional .whi-story-section:nth-of-type(even),
.whi-visual-route-emotional .whi-system-section,
.whi-visual-route-emotional .whi-question-section,
.whi-visual-route-emotional .whi-impact-section {
    background:
        linear-gradient(180deg, rgba(243, 248, 253, 0.78), rgba(255, 255, 255, 0.94)),
        var(--whi-color-surface-alt, #f3f8fd);
}

.whi-visual-route-emotional .whi-documentary-visual.has-section-image,
.whi-visual-route-emotional .whi-statement-visual,
.whi-visual-route-emotional .whi-story-cta-visual {
    clip-path: polygon(0 3%, 100% 0, 100% 95%, 0 100%);
    box-shadow: 0 38px 86px rgba(13, 79, 139, 0.18);
}

.whi-visual-route-emotional .whi-story-copy-panel {
    border-left: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 253, 0.82)),
        #ffffff;
    box-shadow: 0 28px 78px rgba(13, 79, 139, 0.11);
}

.whi-visual-route-emotional .whi-story-copy-panel::before {
    width: 140px;
    height: 140px;
    opacity: 0.45;
}

.whi-visual-route-emotional .whi-story-copy-panel::after {
    position: absolute;
    top: 1.3rem;
    bottom: 1.3rem;
    left: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--whi-color-secondary, #1f86c8), var(--whi-color-accent, #69c7e8));
    content: "";
}

.whi-visual-route-emotional .whi-system-card,
.whi-visual-route-emotional .whi-question-grid article,
.whi-visual-route-emotional .whi-team-grid article,
.whi-visual-route-emotional .whi-testimonial-card,
.whi-visual-route-emotional .whi-collaborator-card,
.whi-visual-route-emotional .whi-program-card {
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(13, 79, 139, 0.09);
}

.whi-visual-route-emotional .whi-system-card:nth-child(even),
.whi-visual-route-emotional .whi-question-grid article:nth-child(even),
.whi-visual-route-emotional .whi-team-grid article:nth-child(even) {
    transform: translateY(0.85rem);
}

.whi-visual-route-emotional .whi-stat-grid article {
    padding-block: 2rem;
}

.whi-visual-route-emotional .whi-story-cta {
    margin-top: -1px;
    background:
        radial-gradient(ellipse at 18% 22%, rgba(105, 199, 232, 0.18), transparent 24rem),
        linear-gradient(135deg, #051f3b, #0b426f);
}

.whi-visual-route-emotional .whi-story-cta::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        repeating-radial-gradient(ellipse at 88% 0%, rgba(105, 199, 232, 0.18) 0 1px, transparent 1px 20px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%);
    content: "";
    opacity: 0.76;
    pointer-events: none;
}

/* Model-molded direction: clean WHI flow with split hero, waves and section continuity. */
.whi-visual-route-emotional .whi-story-hero.has-image {
    display: block;
    min-height: 0;
    padding: clamp(3rem, 7vw, 6.4rem) 0 clamp(5.5rem, 8vw, 7.5rem);
    background: #ffffff;
    color: var(--whi-color-ink, #102033);
}

.whi-visual-route-emotional .whi-story-hero.has-image::before {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 0;
    width: min(58vw, 920px);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 28%, rgba(255, 255, 255, 0)),
        var(--whi-story-hero-image) center / cover no-repeat;
    content: "";
    opacity: 1;
    pointer-events: none;
}

.whi-visual-route-emotional .whi-story-hero.has-image::after {
    z-index: 0;
    height: 156px;
    background:
        radial-gradient(130% 95% at 0% 0%, transparent 45%, #ffffff 45.5% 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 70%);
    opacity: 1;
}

.whi-visual-route-emotional .whi-story-hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    align-content: center;
    width: min(calc(100% - 2rem), var(--whi-wide-width, 1200px));
    min-height: clamp(420px, 56vw, 680px);
    margin-inline: auto;
    padding: 0;
    isolation: isolate;
}

.whi-visual-route-emotional .whi-story-hero-inner::before {
    position: absolute;
    top: 50%;
    left: clamp(-1.5rem, -3vw, -0.75rem);
    z-index: 0;
    width: min(650px, 58vw);
    height: min(520px, 78%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9) 76%, rgba(255, 255, 255, 0));
    content: "";
    pointer-events: none;
    transform: translateY(-50%);
}

.whi-visual-route-emotional .whi-story-hero-inner::after {
    position: absolute;
    left: clamp(4rem, 18vw, 20rem);
    bottom: -3.8rem;
    width: min(560px, 48vw);
    height: 118px;
    border-bottom: 2px solid rgba(31, 134, 200, 0.5);
    border-left: 2px solid rgba(31, 134, 200, 0.34);
    border-bottom-left-radius: 100% 100%;
    content: "";
    pointer-events: none;
}

.whi-visual-route-emotional .whi-story-hero-inner > * {
    position: relative;
    z-index: 2;
}

.whi-visual-route-emotional .whi-story-hero .whi-eyebrow {
    color: var(--whi-color-secondary, #1f86c8) !important;
    opacity: 1;
}

.whi-visual-route-emotional .whi-story-hero h1 {
    max-width: 520px;
    color: var(--whi-color-ink, #102033) !important;
    font-size: clamp(3rem, 5.6vw, 5.35rem);
    line-height: 0.98;
    opacity: 1;
    text-shadow: none;
}

.whi-visual-route-emotional .whi-story-lede {
    max-width: 520px;
    color: var(--whi-color-muted, #5c7187) !important;
    opacity: 1;
    text-shadow: none;
}

.whi-visual-route-emotional .whi-story-hero .whi-hero-actions,
.whi-visual-route-emotional .whi-story-hero .whi-button {
    opacity: 1;
}

.whi-visual-route-emotional .whi-story-hero .whi-button-ghost {
    background: #ffffff;
    color: var(--whi-color-primary, #0d4f8b);
}

.whi-visual-route-emotional .whi-story-section,
.whi-visual-route-emotional .whi-story-statement {
    margin-top: -1px;
    padding-block: clamp(4.5rem, 8vw, 8.5rem);
    background: #ffffff;
}

.whi-visual-route-emotional .whi-story-section:not(.whi-story-cta)::before,
.whi-visual-route-emotional .whi-story-statement::before {
    background:
        radial-gradient(120% 90% at 0% 50%, rgba(243, 248, 253, 0.9) 0 42%, transparent 42.5%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 253, 0.5));
    opacity: 1;
}

.whi-visual-route-emotional .whi-story-section::after,
.whi-visual-route-emotional .whi-story-statement::after {
    left: 0;
    right: 0;
    bottom: -1px;
    height: 112px;
    background: radial-gradient(140% 110% at 100% 0%, transparent 46%, #ffffff 46.5% 100%);
    transform: none;
}

.whi-visual-route-emotional .whi-story-section > .whi-shell::before {
    top: -5rem;
    bottom: -5rem;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(31, 134, 200, 0.42), rgba(31, 134, 200, 0.12), transparent);
    transform: translateX(-50%);
}

.whi-visual-route-emotional .whi-story-section > .whi-shell::after {
    position: absolute;
    top: calc(50% - 0.4rem);
    left: 50%;
    z-index: 4;
    width: 0.8rem;
    height: 0.8rem;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: var(--whi-color-secondary, #1f86c8);
    box-shadow: 0 0 0 7px rgba(105, 199, 232, 0.16);
    content: "";
    transform: translate(-50%, -50%);
}

.whi-visual-route-emotional .whi-documentary-block .whi-story-split,
.whi-visual-route-emotional .whi-story-index-3.whi-documentary-block .whi-story-split,
.whi-visual-route-emotional .whi-story-index-6.whi-documentary-block .whi-story-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.82fr);
    gap: clamp(3rem, 8vw, 7rem);
}

.whi-visual-route-emotional .whi-documentary-block:nth-of-type(odd) .whi-documentary-visual {
    order: 2;
}

.whi-visual-route-emotional .whi-documentary-block:nth-of-type(odd) .whi-story-copy-panel {
    order: 1;
}

.whi-visual-route-emotional .whi-documentary-visual.has-section-image,
.whi-visual-route-emotional .whi-statement-visual,
.whi-visual-route-emotional .whi-story-cta-visual {
    clip-path: ellipse(78% 62% at 54% 50%);
    min-height: clamp(360px, 43vw, 620px);
    box-shadow: 0 28px 76px rgba(13, 79, 139, 0.12);
}

.whi-visual-route-emotional .whi-story-copy-panel {
    padding: clamp(1.5rem, 4vw, 3rem);
    background: transparent;
    box-shadow: none;
}

.whi-visual-route-emotional .whi-story-copy-panel::before {
    inset: -1.4rem auto auto -1.2rem;
    width: 150px;
    height: 150px;
    opacity: 0.28;
}

.whi-visual-route-emotional .whi-story-copy-panel::after {
    top: 0;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--whi-color-secondary, #1f86c8);
}

.whi-visual-route-emotional .whi-system-grid,
.whi-visual-route-emotional .whi-question-grid,
.whi-visual-route-emotional .whi-stat-grid,
.whi-visual-route-emotional .whi-team-grid,
.whi-visual-route-emotional .whi-program-grid {
    position: relative;
    z-index: 1;
}

.whi-visual-route-emotional .whi-system-card,
.whi-visual-route-emotional .whi-question-grid article,
.whi-visual-route-emotional .whi-program-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
        #ffffff;
    border-color: rgba(216, 230, 242, 0.72);
}

.whi-visual-route-emotional .whi-impact-section {
    background:
        linear-gradient(90deg, #ffffff 0 45%, transparent 45%),
        radial-gradient(120% 95% at 82% 50%, rgba(13, 79, 139, 0.07), rgba(243, 248, 253, 0.9) 0 48%, #ffffff 49%);
}

.whi-visual-route-emotional .whi-story-cta {
    padding-block: clamp(4rem, 7vw, 6.5rem);
    background:
        linear-gradient(90deg, rgba(5, 31, 59, 0.96), rgba(5, 31, 59, 0.88)),
        radial-gradient(90% 140% at 100% 50%, rgba(31, 134, 200, 0.34), transparent 58%),
        #051f3b;
}

.whi-visual-route-emotional .whi-story-cta::after {
    position: absolute;
    inset: -1px 0 auto;
    z-index: 0;
    height: 120px;
    background: radial-gradient(130% 100% at 0% 100%, #ffffff 0 46%, transparent 46.5%);
    content: "";
    pointer-events: none;
}

/* Robust narrative hero: real split layout, no overlay can wash out copy. */
.whi-visual-route-emotional .whi-story-hero.has-image {
    display: block;
    min-height: 0;
    padding: clamp(2.8rem, 6vw, 5.8rem) 0 clamp(4rem, 7vw, 6.5rem);
    background: #ffffff !important;
    color: var(--whi-color-ink, #102033);
}

.whi-visual-route-emotional .whi-story-hero.has-image::before,
.whi-visual-route-emotional .whi-story-hero.has-image::after {
    display: none !important;
}

.whi-visual-route-emotional .whi-story-hero.has-image .whi-story-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    width: min(calc(100% - 2rem), var(--whi-wide-width, 1200px));
    min-height: clamp(430px, 54vw, 680px);
    margin-inline: auto;
    padding: 0;
}

.whi-visual-route-emotional .whi-story-hero-copy {
    position: relative;
    z-index: 3;
    max-width: 560px;
    padding: clamp(1rem, 2vw, 1.8rem) 0;
    color: var(--whi-color-ink, #102033);
}

.whi-visual-route-emotional .whi-story-hero-copy::before {
    position: absolute;
    inset: -1.25rem -2rem -1.25rem -1.25rem;
    z-index: -1;
    background: #ffffff;
    content: "";
    pointer-events: none;
}

.whi-visual-route-emotional .whi-story-hero-copy .whi-eyebrow {
    color: var(--whi-color-secondary, #1f86c8) !important;
    opacity: 1 !important;
}

.whi-visual-route-emotional .whi-story-hero-copy h1 {
    max-width: 560px;
    color: var(--whi-color-ink, #102033) !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.whi-visual-route-emotional .whi-story-hero-copy .whi-story-lede {
    max-width: 540px;
    color: var(--whi-color-muted, #5c7187) !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.whi-story-hero-media {
    position: relative;
    z-index: 1;
    min-height: clamp(360px, 43vw, 620px);
    margin: 0;
    overflow: hidden;
    background: var(--whi-color-surface-alt, #f3f8fd);
    clip-path: ellipse(82% 63% at 56% 50%);
}

.whi-story-hero-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.whi-visual-route-emotional .whi-story-hero.has-image .whi-story-hero-inner::before {
    display: none !important;
}

.whi-visual-route-emotional .whi-story-hero.has-image .whi-story-hero-inner::after {
    z-index: 2;
    left: clamp(4rem, 18vw, 20rem);
    bottom: clamp(-4.2rem, -5vw, -2.4rem);
    width: min(520px, 46vw);
}

.whi-text-link {
    display: inline-flex;
    margin-top: 0.8rem;
    color: var(--whi-color-primary, #0d4f8b);
    font-weight: 850;
}

.whi-page-layout,
.whi-loop-layout {
    padding: clamp(2rem, 6vw, 5rem) 0;
}

.whi-home-section {
    padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.whi-eyebrow {
    margin: 0 0 0.85rem;
    color: var(--whi-color-secondary, #1f86c8);
    font-size: 0.88rem;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.35;
}

.whi-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: var(--whi-button-radius, 999px);
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.whi-button:hover,
.whi-button:focus {
    text-decoration: none;
    transform: translateY(-2px);
}

.whi-button-primary {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: var(--whi-color-primary, #0d4f8b);
    box-shadow: 0 16px 34px rgba(5, 31, 59, 0.18);
}

.whi-button-primary:hover,
.whi-button-primary:focus {
    background: var(--whi-color-accent, #69c7e8);
    border-color: var(--whi-color-accent, #69c7e8);
    color: var(--whi-color-ink, #102033);
    box-shadow: 0 22px 44px rgba(5, 31, 59, 0.22);
}

.whi-button-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.62);
    color: #ffffff;
}

.whi-button-ghost:hover,
.whi-button-ghost:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    color: #ffffff;
}

.whi-button-outline {
    background: #ffffff;
    border: 1px solid var(--whi-color-primary, #0d4f8b);
    color: var(--whi-color-primary, #0d4f8b);
}

.whi-button-outline:hover,
.whi-button-outline:focus {
    background: var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
}

.whi-home-hero {
    position: relative;
    overflow: hidden;
    background: #062a4f;
    color: #ffffff;
    isolation: isolate;
}

.whi-home-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
    background-size: 42px 42px, 100% 100%;
    content: "";
    opacity: 0.55;
}

.whi-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.8fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    min-height: 680px;
    padding: clamp(4rem, 9vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
}

.whi-hero-copy {
    max-width: 720px;
}

.whi-hero-copy .whi-eyebrow {
    color: var(--whi-color-accent, #69c7e8);
}

.whi-hero-copy h1 {
    color: #ffffff;
    font-size: 4rem;
    max-width: 760px;
    text-transform: none;
}

.whi-hero-lede {
    max-width: 650px;
    color: #d9ebf8;
    font-size: 1.12rem;
    line-height: 1.75;
}

.whi-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.whi-hero-visual {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(105, 199, 232, 0.2), rgba(255, 255, 255, 0.04)),
        #0b3d73;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}

.whi-hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
}

.whi-hero-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 42, 79, 0.1), rgba(6, 42, 79, 0.76));
    content: "";
}

.whi-brand-panel {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 430px;
    padding: 2rem;
    text-align: center;
}

.whi-brand-panel span {
    display: block;
    color: #ffffff;
    font-size: 5rem;
    font-weight: 850;
    line-height: 1;
}

.whi-brand-panel strong {
    color: #d9ebf8;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.whi-hero-badges {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem;
}

.whi-hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.whi-split {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.whi-split-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.whi-home-intro {
    background: #ffffff;
}

.whi-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.whi-feature-card,
.whi-program-card,
.whi-method-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: var(--whi-radius, 16px);
    box-shadow: 0 24px 55px rgba(16, 32, 51, 0.08);
}

.whi-feature-card {
    min-height: 190px;
    padding: 1.35rem;
}

.whi-feature-card::before,
.whi-program-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: var(--whi-radius, 16px) 0 0 var(--whi-radius, 16px);
    background: var(--whi-color-secondary, #1f86c8);
    content: "";
}

.whi-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--whi-color-surface-alt, #f3f8fd);
    color: var(--whi-color-primary, #0d4f8b);
    font-size: 0.78rem;
    font-weight: 850;
}

.whi-feature-card h3,
.whi-program-card h3,
.whi-process-grid h3 {
    font-size: 1.18rem;
}

.whi-feature-card p,
.whi-program-card p,
.whi-process-grid p {
    margin-bottom: 0;
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.95rem;
}

.whi-section-heading {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.whi-section-heading-with-actions {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    max-width: none;
    text-align: left;
}

.whi-section-heading-with-actions > div:first-child {
    max-width: 760px;
    min-width: 0;
}

.whi-carousel-controls {
    display: flex;
    flex: 0 0 auto;
    gap: 0.55rem;
}

.whi-icon-button {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: 999px;
    background: #ffffff;
    color: var(--whi-color-primary, #0d4f8b);
    box-shadow: 0 14px 30px rgba(16, 32, 51, 0.08);
}

.whi-icon-button:hover,
.whi-icon-button:focus {
    background: var(--whi-color-primary, #0d4f8b);
    border-color: var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
}

.whi-carousel-shell {
    position: relative;
}

.whi-carousel-track {
    display: flex;
    gap: 1rem;
    margin: 0;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0.35rem 0.2rem 1.35rem;
    scroll-padding-inline: 0.2rem;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--whi-color-secondary, #1f86c8) var(--whi-color-surface-alt, #f3f8fd);
}

.whi-carousel-track::-webkit-scrollbar {
    height: 10px;
}

.whi-carousel-track::-webkit-scrollbar-track {
    background: var(--whi-color-surface-alt, #f3f8fd);
}

.whi-carousel-track::-webkit-scrollbar-thumb {
    background: var(--whi-color-secondary, #1f86c8);
    border-radius: 999px;
}

.whi-carousel-card,
.whi-team-grid.whi-carousel-track article {
    flex: 0 0 min(420px, calc(100% - 1rem));
    scroll-snap-align: start;
}

.whi-layer-card,
.whi-system-card,
.whi-question-grid article,
.whi-team-grid article {
    overflow: hidden;
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.whi-layer-card::before,
.whi-system-card::after,
.whi-question-grid article::after,
.whi-team-grid article::after {
    position: absolute;
    inset: -35% -20% auto auto;
    width: 210px;
    height: 210px;
    background:
        repeating-radial-gradient(ellipse at center, rgba(31, 134, 200, 0.28) 0 1px, transparent 1px 13px);
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: rotate(18deg) translate(18px, -18px);
    transition:
        opacity 220ms ease,
        transform 260ms ease;
}

.whi-layer-card {
    position: relative;
    min-height: 300px;
    padding: 1.55rem;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    background:
        linear-gradient(180deg, #ffffff, rgba(243, 248, 253, 0.82));
    box-shadow: 0 24px 55px rgba(16, 32, 51, 0.07);
}

.whi-layer-card::after {
    position: absolute;
    inset: auto 1.2rem 1.2rem 1.2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--whi-color-secondary, #1f86c8), transparent);
    content: "";
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 260ms ease;
}

.whi-layer-card:hover,
.whi-layer-card:focus-within,
.whi-system-card:hover,
.whi-system-card:focus-within,
.whi-question-grid article:hover,
.whi-question-grid article:focus-within,
.whi-team-grid article:hover,
.whi-team-grid article:focus-within {
    border-color: color-mix(in srgb, var(--whi-color-secondary, #1f86c8) 54%, var(--whi-color-border, #d8e6f2));
    box-shadow: 0 30px 70px rgba(13, 79, 139, 0.16);
    transform: translateY(-6px);
}

.whi-layer-card:hover::before,
.whi-layer-card:focus-within::before,
.whi-system-card:hover::after,
.whi-system-card:focus-within::after,
.whi-question-grid article:hover::after,
.whi-question-grid article:focus-within::after,
.whi-team-grid article:hover::after,
.whi-team-grid article:focus-within::after {
    opacity: 1;
    transform: rotate(18deg) translate(0, 0);
}

.whi-layer-card:hover::after,
.whi-layer-card:focus-within::after {
    transform: scaleX(1);
}

.whi-card-meta {
    display: inline-flex;
    margin-bottom: 1.2rem;
    color: var(--whi-color-secondary, #1f86c8);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0;
}

.whi-layer-card h3 {
    position: relative;
    max-width: 340px;
    font-size: 1.45rem;
}

.whi-layer-card p {
    position: relative;
    color: var(--whi-color-muted, #5c7187);
}

.whi-layer-card small {
    position: absolute;
    right: 1.2rem;
    bottom: 1.35rem;
    max-width: calc(100% - 2.4rem);
    color: var(--whi-color-primary, #0d4f8b);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.whi-programs {
    background: var(--whi-color-surface-alt, #f3f8fd);
}

.whi-program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.whi-program-card {
    min-height: 260px;
    padding: 1.6rem;
}

.whi-program-line {
    display: block;
    width: 64px;
    height: 2px;
    margin-bottom: 1.4rem;
    background: var(--whi-color-secondary, #1f86c8);
}

.whi-program-card a {
    display: inline-flex;
    margin-top: 1.2rem;
    font-weight: 800;
}

.whi-process {
    background: #ffffff;
}

.whi-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: 24px;
    background: var(--whi-color-border, #d8e6f2);
}

.whi-process-grid article {
    min-height: 260px;
    background: #ffffff;
    padding: 1.5rem;
}

.whi-process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    background: #062a4f;
    color: #ffffff;
    font-weight: 850;
}

.whi-home-band {
    background: #062a4f;
    color: #ffffff;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.whi-home-band .whi-eyebrow {
    color: var(--whi-color-accent, #69c7e8);
}

.whi-home-band h2 {
    color: #ffffff;
    margin-bottom: 0;
}

.whi-home-band p {
    color: #d9ebf8;
}

.whi-band-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.whi-method {
    background: #ffffff;
}

.whi-method-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.whi-method-card ul {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    list-style: none;
}

.whi-method-card li {
    position: relative;
    padding-left: 1.65rem;
    color: var(--whi-color-muted, #5c7187);
}

.whi-method-card li::before {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 0.72rem;
    height: 0.72rem;
    border: 2px solid var(--whi-color-secondary, #1f86c8);
    border-radius: 999px;
    content: "";
}

.whi-original-content {
    background: var(--whi-color-surface-alt, #f3f8fd);
}

.whi-page-layout > .whi-entry,
.whi-page-layout > .comments-area,
.whi-not-found,
.no-results {
    max-width: var(--whi-content-width, 760px);
    margin-inline: auto;
}

.entry-header {
    margin-bottom: clamp(1.35rem, 4vw, 2.5rem);
}

.entry-title {
    margin-bottom: 0.4rem;
}

.entry-meta,
.entry-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.92rem;
}

.entry-footer {
    margin-top: 1.5rem;
}

.whi-entry-media {
    margin: 0 0 clamp(1.5rem, 4vw, 3rem);
}

.whi-entry-media img {
    width: 100%;
    border-radius: var(--whi-radius, 16px);
}

.entry-content > * {
    max-width: var(--whi-content-width, 760px);
    margin-left: auto;
    margin-right: auto;
}

.entry-content > .alignwide {
    max-width: var(--whi-wide-width, 1180px);
}

.entry-content > .alignfull {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.entry-content::after {
    display: table;
    clear: both;
    content: "";
}

.wp-block-cover,
.wp-block-group.has-background {
    padding: clamp(2rem, 6vw, 5rem);
}

.wp-block-cover {
    min-height: min(72vh, 720px);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    border-color: var(--whi-color-primary, #0d4f8b);
    color: var(--whi-color-primary, #0d4f8b);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
}

.wp-block-quote,
.wp-block-pullquote {
    border-color: var(--whi-color-secondary, #1f86c8);
}

.wp-block-separator {
    border: 0;
    border-top: 1px solid var(--whi-color-border, #d8e6f2);
}

.wp-block-kadence-rowlayout,
.kt-row-layout-inner {
    border-radius: inherit;
}

.whi-archive-header {
    max-width: var(--whi-content-width, 760px);
    margin: 0 auto clamp(1.5rem, 4vw, 3rem);
}

.whi-resources-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7.5rem) 0;
    background: #051f3b;
    color: #ffffff;
    isolation: isolate;
}

.whi-contact-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    background: #051f3b;
    color: #ffffff;
    isolation: isolate;
}

.whi-contact-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 82% 28%, rgba(105, 199, 232, 0.2), transparent 24rem),
        repeating-radial-gradient(ellipse at 72% 78%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 22px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 100%);
    background-size: auto, auto, 52px 52px;
    content: "";
    opacity: 0.78;
}

.whi-contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
}

.whi-contact-hero .whi-eyebrow,
.whi-contact-hero h1 {
    color: #ffffff;
}

.whi-contact-hero .whi-eyebrow {
    color: var(--whi-color-accent, #69c7e8);
}

.whi-contact-hero h1 {
    max-width: 920px;
    font-size: 4rem;
}

.whi-contact-hero p {
    max-width: 700px;
    color: #d9ebf8;
    font-size: 1.08rem;
}

.whi-contact-minimal {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 9vw, 8rem) 0;
    background:
        radial-gradient(circle at 82% 12%, rgba(105, 199, 232, 0.18), transparent 22rem),
        linear-gradient(180deg, #ffffff, var(--whi-color-surface-alt, #f3f8fd));
}

.whi-contact-minimal::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 79, 139, 0.06) 0 1px, transparent 1px 100%);
    background-size: 56px 56px;
    content: "";
    opacity: 0.5;
    pointer-events: none;
}

.whi-contact-minimal-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.85fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
}

.whi-contact-minimal-copy {
    max-width: 660px;
    padding-top: clamp(0rem, 4vw, 2.5rem);
}

.whi-contact-minimal-copy h1 {
    font-size: 4rem;
}

.whi-contact-minimal-copy p {
    color: var(--whi-color-muted, #5c7187);
    font-size: 1.12rem;
}

.whi-contact-route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
}

.whi-contact-route {
    position: relative;
    display: grid;
    gap: 0.46rem;
    min-height: 150px;
    overflow: hidden;
    border: 1px solid rgba(13, 79, 139, 0.16);
    background: rgba(255, 255, 255, 0.78);
    color: var(--whi-color-ink, #102033);
    padding: 1.15rem;
    text-decoration: none;
    transition:
        border-color 200ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.whi-contact-route::before {
    display: block;
    width: 54px;
    height: 2px;
    background: var(--whi-color-secondary, #1f86c8);
    content: "";
    transform-origin: left center;
    transition: transform 220ms ease;
}

.whi-contact-route span {
    color: var(--whi-color-primary, #0d4f8b);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.whi-contact-route strong {
    font-size: 1rem;
    line-height: 1.25;
}

.whi-contact-route small {
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.86rem;
    line-height: 1.5;
}

.whi-contact-route:hover,
.whi-contact-route:focus {
    border-color: rgba(31, 134, 200, 0.42);
    box-shadow: 0 18px 38px rgba(13, 79, 139, 0.12);
    text-decoration: none;
    transform: translateY(-4px);
}

.whi-contact-route:hover::before,
.whi-contact-route:focus::before {
    transform: scaleX(1.65);
}

.whi-contact-minimal .whi-contact-form-card {
    background: #ffffff;
}

.whi-contact-note,
.whi-contact-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    background: #ffffff;
    box-shadow: 0 24px 55px rgba(16, 32, 51, 0.08);
}

.whi-contact-note {
    padding: 1.35rem;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.whi-contact-note::before,
.whi-contact-card::before {
    position: absolute;
    inset: auto -55px -95px auto;
    width: 210px;
    height: 210px;
    background: repeating-radial-gradient(ellipse at center, rgba(31, 134, 200, 0.2) 0 1px, transparent 1px 16px);
    content: "";
    opacity: 0.6;
}

.whi-contact-note span {
    position: relative;
    display: block;
    margin-bottom: 0.75rem;
    color: var(--whi-color-accent, #69c7e8);
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
}

.whi-contact-note p {
    position: relative;
    margin-bottom: 0;
    color: #ffffff;
}

.whi-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.whi-contact-grid .whi-layer-card {
    min-height: 330px;
}

.whi-contact-form-section {
    background: var(--whi-color-surface-alt, #f3f8fd);
}

.whi-contact-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.whi-contact-form-grid > div:first-child p {
    color: var(--whi-color-muted, #5c7187);
}

.whi-contact-card {
    padding: clamp(1.35rem, 4vw, 2.2rem);
}

.whi-contact-card > * {
    position: relative;
}

.whi-contact-card h3 {
    font-size: 1.65rem;
}

.whi-contact-card p,
.whi-contact-card .entry-content {
    color: var(--whi-color-muted, #5c7187);
}

.whi-contact-card .entry-content > * {
    max-width: none;
}

.whi-contact-form-card {
    min-height: 0;
}

.whi-contact-clean-hero .whi-contact-note {
    align-self: end;
}

.whi-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.whi-contact-form-card > * {
    position: relative;
}

.whi-contact-form-card form,
.whi-contact-inline-form {
    display: grid;
    gap: 1rem;
}

.whi-contact-inline-form .whi-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.whi-contact-inline-form-compact {
    gap: 0.82rem;
}

.whi-contact-inline-form-compact .whi-form-row {
    grid-template-columns: 1fr;
    gap: 0.82rem;
}

.whi-form-field {
    display: grid;
    gap: 0.42rem;
}

.whi-form-field span,
.whi-contact-form-card label,
.whi-contact-form-card legend,
.whi-contact-form-card .gfield_label {
    color: var(--whi-color-ink, #102033);
    font-size: 0.9rem;
    font-weight: 800;
}

.whi-form-field input,
.whi-form-field textarea,
.whi-form-field select,
.whi-contact-form-card input[type="text"],
.whi-contact-form-card input[type="email"],
.whi-contact-form-card input[type="tel"],
.whi-contact-form-card input[type="url"],
.whi-contact-form-card input[type="number"],
.whi-contact-form-card select,
.whi-contact-form-card textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(13, 79, 139, 0.18);
    border-radius: 12px;
    background: #ffffff;
    color: var(--whi-color-ink, #102033);
    box-shadow: inset 0 1px 0 rgba(16, 32, 51, 0.03);
}

.whi-form-field textarea,
.whi-contact-form-card textarea {
    min-height: 150px;
    resize: vertical;
}

.whi-form-field input:focus,
.whi-form-field textarea:focus,
.whi-form-field select:focus,
.whi-contact-form-card input:focus,
.whi-contact-form-card textarea:focus,
.whi-contact-form-card select:focus {
    border-color: var(--whi-color-secondary, #1f86c8);
    outline: 3px solid rgba(31, 134, 200, 0.16);
    outline-offset: 0;
}

.whi-form-required {
    color: var(--whi-color-secondary, #1f86c8);
}

.whi-form-help,
.whi-contact-form-card .gform_required_legend,
.whi-contact-form-card .gfield_description {
    margin: 0;
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.86rem;
}

.whi-form-check {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: var(--whi-color-ink, #102033);
    font-size: 0.85rem;
    font-weight: 650;
}

.whi-form-check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 0.12rem;
}

.whi-form-hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.whi-form-message {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: 12px;
    background: #ffffff;
    color: var(--whi-color-ink, #102033);
    font-weight: 700;
}

.whi-form-message-success {
    border-color: rgba(31, 134, 200, 0.28);
    background: #edf7fc;
}

.whi-form-message-error {
    border-color: rgba(13, 79, 139, 0.28);
    background: #f3f8fd;
}

.whi-contact-form-card .gform_wrapper {
    margin: 0;
}

.whi-contact-form-card .gform_fields {
    display: grid;
    gap: 1rem;
}

.whi-contact-form-card input[type="submit"],
.whi-contact-form-card button,
.whi-contact-form-card .gform_button {
    width: fit-content;
    min-width: 180px;
    border-radius: 999px;
    background: var(--whi-color-primary, #0d4f8b);
    border-color: var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
}

.whi-contact-form-card input[type="submit"]:hover,
.whi-contact-form-card button:hover,
.whi-contact-form-card .gform_button:hover {
    background: #051f3b;
    border-color: #051f3b;
}

.whi-contact-form-card input[type="submit"]:disabled,
.whi-contact-form-card button:disabled {
    cursor: progress;
    opacity: 0.68;
    transform: none;
}

.whi-resources-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        repeating-radial-gradient(ellipse at 88% 18%, rgba(105, 199, 232, 0.2) 0 1px, transparent 1px 20px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 100%);
    background-size: auto, 48px 48px;
    content: "";
    opacity: 0.7;
}

.whi-resources-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
}

.whi-resources-hero .whi-eyebrow {
    color: var(--whi-color-accent, #69c7e8);
}

.whi-resources-hero h1 {
    max-width: 880px;
    color: #ffffff;
    font-size: 4rem;
}

.whi-resources-hero p {
    max-width: 700px;
    color: #d9ebf8;
    font-size: 1.08rem;
}

.whi-resources-panel {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.whi-resources-panel::before {
    position: absolute;
    inset: auto -30px -80px auto;
    width: 190px;
    height: 190px;
    background: repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 15px);
    content: "";
    opacity: 0.6;
}

.whi-resources-panel > span {
    position: relative;
    display: block;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 850;
}

.whi-topic-pills {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.whi-topic-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: #ffffff;
    padding: 0.36rem 0.72rem;
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

.whi-topic-pills a:hover,
.whi-topic-pills a:focus {
    background: #ffffff;
    color: var(--whi-color-primary, #0d4f8b);
}

.whi-resources-layout {
    display: grid;
    gap: 1.15rem;
}

.whi-resource-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.whi-resource-card {
    flex: 1 1 300px;
    max-width: 360px;
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    background: #ffffff;
    box-shadow: 0 24px 55px rgba(16, 32, 51, 0.07);
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.whi-resource-card::before {
    position: absolute;
    inset: -60px -60px auto auto;
    z-index: 2;
    width: 230px;
    height: 230px;
    background: repeating-radial-gradient(ellipse at center, rgba(31, 134, 200, 0.23) 0 1px, transparent 1px 15px);
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: rotate(24deg) translate(26px, -26px);
    transition:
        opacity 220ms ease,
        transform 280ms ease;
}

.whi-resource-card-link {
    position: relative;
    display: grid;
    grid-template-rows: 190px 1fr;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.whi-resource-card-link::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 31, 59, 0.02), rgba(5, 31, 59, 0.2)),
        rgba(255, 255, 255, 0.36);
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: scale(0.985);
    transition:
        opacity 220ms ease,
        transform 260ms ease;
}

.whi-resource-card-link:hover,
.whi-resource-card-link:focus {
    text-decoration: none;
}

.whi-resource-visual {
    position: relative;
    overflow: hidden;
    background: var(--whi-color-surface-alt, #f3f8fd);
}

.whi-resource-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        filter 260ms ease,
        transform 320ms ease;
}

.whi-resource-abstract {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(13, 79, 139, 0.1), rgba(105, 199, 232, 0.18)),
        repeating-radial-gradient(ellipse at center, rgba(13, 79, 139, 0.16) 0 1px, transparent 1px 18px);
}

.whi-resource-abstract span {
    display: inline-grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(13, 79, 139, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--whi-color-primary, #0d4f8b);
    font-weight: 850;
    text-transform: uppercase;
}

.whi-resource-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 150px;
    padding: 1.25rem;
}

.whi-resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.whi-resource-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: 999px;
    color: var(--whi-color-muted, #5c7187);
    padding: 0.22rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
}

.whi-resource-card .entry-title {
    margin-bottom: 0;
    font-size: 1.32rem;
}

.whi-resource-card .entry-title,
.whi-resource-card .entry-title a {
    color: var(--whi-color-ink, #102033);
}

.whi-resource-excerpt {
    display: block;
    margin-top: 0.76rem;
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.94rem;
    line-height: 1.58;
}

.whi-resource-action {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 148px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(5, 31, 59, 0.18);
    color: var(--whi-color-primary, #0d4f8b);
    padding: 0.58rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 850;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translate(-50%, -34%) scale(0.96);
    transition:
        opacity 220ms ease,
        transform 260ms ease;
}

.whi-resource-card-featured {
    flex-basis: 100%;
    max-width: none;
    min-height: 420px;
    width: 100%;
}

.whi-resource-card-featured .whi-resource-card-link {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
    grid-template-rows: none;
}

.whi-resource-card-featured .whi-resource-visual {
    min-height: 420px;
}

.whi-resource-card-featured .whi-resource-body {
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.whi-resource-card-featured .entry-title {
    max-width: 680px;
    font-size: 2.2rem;
}

.whi-resource-card:hover,
.whi-resource-card:focus-within {
    border-color: color-mix(in srgb, var(--whi-color-secondary, #1f86c8) 54%, var(--whi-color-border, #d8e6f2));
    box-shadow: 0 32px 75px rgba(13, 79, 139, 0.15);
    transform: translateY(-7px);
}

.whi-resource-card:hover::before,
.whi-resource-card:focus-within::before {
    opacity: 1;
    transform: rotate(24deg) translate(0, 0);
}

.whi-resource-card:hover .whi-resource-card-link::after,
.whi-resource-card:focus-within .whi-resource-card-link::after,
.whi-resource-card:hover .whi-resource-action,
.whi-resource-card:focus-within .whi-resource-action {
    opacity: 1;
}

.whi-resource-card:hover .whi-resource-card-link::after,
.whi-resource-card:focus-within .whi-resource-card-link::after {
    transform: scale(1);
}

.whi-resource-card:hover .whi-resource-action,
.whi-resource-card:focus-within .whi-resource-action {
    transform: translate(-50%, -50%) scale(1);
}

.whi-resource-card:hover .whi-resource-visual img,
.whi-resource-card:focus-within .whi-resource-visual img {
    filter: saturate(1.04) contrast(1.04);
    transform: scale(1.045);
}

.whi-post-list {
    display: grid;
    gap: 1rem;
    max-width: 920px;
    margin-inline: auto;
}

.whi-post-summary {
    display: grid;
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--whi-color-border, #d8e6f2);
}

.whi-post-summary .whi-entry-media {
    margin: 0;
}

.whi-post-summary .entry-header {
    margin-bottom: 0.7rem;
}

.whi-post-summary .entry-title {
    font-size: 1.35rem;
}

.whi-post-summary .entry-content p:last-child,
.whi-post-summary .entry-footer {
    margin-bottom: 0;
}

.whi-single-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
    padding-top: clamp(2rem, 5vw, 4.5rem);
    padding-bottom: clamp(3rem, 7vw, 6rem);
}

.whi-single-news-main {
    min-width: 0;
}

.whi-entry {
    max-width: none;
}

.whi-entry .entry-header {
    max-width: 880px;
    margin-bottom: clamp(1.5rem, 4vw, 2.7rem);
}

.whi-entry-meta-rich {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.1rem;
}

.whi-entry-meta-rich > span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: 999px;
    color: var(--whi-color-muted, #5c7187);
    padding: 0.24rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 800;
}

.whi-entry-lede {
    max-width: 780px;
    margin-top: 1rem;
    color: var(--whi-color-muted, #5c7187);
    font-size: 1.12rem;
    line-height: 1.75;
}

.whi-author-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    max-width: 780px;
    margin-top: clamp(2rem, 5vw, 3.5rem);
    padding: 1.2rem;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(16, 32, 51, 0.06);
}

.whi-author-avatar img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 999px;
}

.whi-author-card span {
    display: block;
    color: var(--whi-color-secondary, #1f86c8);
    font-size: 0.72rem;
    font-weight: 850;
}

.whi-author-card h2 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.whi-author-card p {
    margin-bottom: 0;
    color: var(--whi-color-muted, #5c7187);
}

.whi-news-sidebar {
    position: sticky;
    top: 96px;
    align-self: stretch;
    display: grid;
    gap: 1rem;
    align-content: start;
    max-height: calc(100vh - 112px);
    min-height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: 1px;
}

.admin-bar .whi-news-sidebar {
    top: 128px;
    max-height: calc(100vh - 144px);
}

.whi-news-side-card {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    background: #ffffff;
    box-shadow: 0 22px 48px rgba(16, 32, 51, 0.07);
}

.whi-news-side-card::after {
    position: absolute;
    right: -74px;
    bottom: -92px;
    width: 190px;
    height: 190px;
    background: repeating-radial-gradient(ellipse at center, rgba(31, 134, 200, 0.18) 0 1px, transparent 1px 15px);
    content: "";
    opacity: 0.55;
    pointer-events: none;
}

.whi-news-side-card > * {
    position: relative;
    z-index: 1;
}

.whi-news-side-card h2 {
    font-size: 1.3rem;
}

.whi-news-side-card p {
    color: var(--whi-color-muted, #5c7187);
}

.whi-news-side-sticky-group {
    display: grid;
    gap: 1rem;
}

.whi-news-facts {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
}

.whi-news-facts div {
    display: grid;
    gap: 0.16rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--whi-color-border, #d8e6f2);
}

.whi-news-facts div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.whi-news-facts dt {
    color: var(--whi-color-muted, #5c7187);
    font-size: 0.78rem;
    font-weight: 850;
}

.whi-news-facts dd {
    margin: 0;
    color: var(--whi-color-ink, #102033);
    font-weight: 750;
}

.whi-news-side-form {
    background: var(--whi-color-surface-alt, #f3f8fd);
}

.whi-news-side-form .whi-button {
    width: 100%;
}

.whi-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.whi-social-link {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: 999px;
    background: #ffffff;
    color: var(--whi-color-primary, #0d4f8b);
    transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.whi-social-link svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.whi-social-link-linkedin svg {
    fill: currentColor;
    stroke: none;
}

.whi-social-link-youtube path {
    fill: currentColor;
    stroke: none;
}

.whi-social-link:hover,
.whi-social-link:focus {
    border-color: var(--whi-color-primary, #0d4f8b);
    background: var(--whi-color-primary, #0d4f8b);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.navigation.pagination,
.post-navigation {
    max-width: 920px;
    margin: 2rem auto 0;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
}

.page-numbers,
.post-navigation a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid var(--whi-color-border, #d8e6f2);
    border-radius: var(--whi-button-radius, 999px);
    color: var(--whi-color-ink, #102033);
    padding: 0.45rem 0.85rem;
}

.page-numbers.current,
.page-numbers:hover,
.post-navigation a:hover {
    background: var(--whi-color-surface-alt, #f3f8fd);
    color: var(--whi-color-primary, #0d4f8b);
    text-decoration: none;
}

.post-navigation {
    max-width: 780px;
    margin-left: 0;
    margin-right: 0;
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    min-width: 0;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation a {
    display: grid;
    gap: 0.18rem;
    min-height: 0;
    height: 100%;
    border-radius: 14px;
    padding: 0.72rem 0.9rem;
    line-height: 1.35;
}

.post-navigation .nav-subtitle {
    color: var(--whi-color-secondary, #1f86c8);
    font-size: 0.76rem;
    font-weight: 850;
}

.post-navigation .nav-title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--whi-color-ink, #102033);
    font-size: 0.9rem;
    font-weight: 750;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.search-form {
    display: flex;
    gap: 0.7rem;
}

.search-form label {
    flex: 1;
}

.comments-area {
    margin-top: clamp(2rem, 5vw, 4rem);
    padding-top: 2rem;
    border-top: 1px solid var(--whi-color-border, #d8e6f2);
}

.comment-list {
    margin-left: 0;
    list-style: none;
}

.comment-body {
    padding: 1rem 0;
    border-bottom: 1px solid var(--whi-color-border, #d8e6f2);
}

.whi-site-footer {
    background: #051f3b;
    border-top: 1px solid #164a7a;
    color: #d9ebf8;
}

.whi-site-footer a,
.whi-site-footer .whi-footer-title {
    color: #ffffff;
}

.whi-site-footer .widget-title,
.whi-site-footer h1,
.whi-site-footer h2,
.whi-site-footer h3,
.whi-site-footer h4,
.whi-site-footer h5,
.whi-site-footer h6 {
    color: #ffffff;
}

.whi-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(220px, 0.7fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.whi-footer-title {
    display: inline-flex;
    margin-bottom: 0.6rem;
}

.widget-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.whi-footer-support {
    display: grid;
    gap: 0.55rem;
}

.whi-footer-logo .custom-logo-link {
    display: inline-flex;
}

.whi-footer-logo .custom-logo {
    max-height: 58px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.75);
}

.whi-footer-logo-text {
    color: #ffffff;
    font-size: 1.2rem;
}

.whi-footer-support h2,
.whi-footer-links h2 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.whi-footer-support p {
    max-width: 420px;
    margin: 0;
    color: #d9ebf8;
}

.whi-footer-links {
    display: grid;
    gap: 0.72rem;
    align-content: start;
}

.whi-footer-links a {
    width: fit-content;
    color: #d9ebf8;
    text-decoration: none;
}

.whi-footer-links a:hover,
.whi-footer-links a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.whi-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.9rem;
}

.whi-footer-bottom p {
    margin: 0;
}

.whi-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 860px) {
    .admin-bar .whi-site-header {
        top: 32px;
    }

    .whi-header-inner {
        min-height: 68px;
    }

    .whi-story-hero {
        min-height: 68vh;
    }

    .whi-story-hero-inner {
        margin-left: auto;
        padding: 4rem 0;
    }

    .whi-story-hero h1,
    .whi-story-statement h2,
    .whi-story-cta h2 {
        font-size: 3rem;
    }

    .whi-story-split,
    .whi-statement-grid,
    .whi-story-cta-grid,
    .whi-system-grid,
    .whi-question-grid,
    .whi-stat-grid,
    .whi-logo-row,
    .whi-quote-grid,
    .whi-program-grid-two,
    .whi-collaborator-grid,
    .whi-resources-hero-grid,
    .whi-contact-hero-grid,
    .whi-contact-grid,
    .whi-contact-form-grid,
    .whi-contact-minimal-inner,
    .whi-contact-inline-form .whi-form-row,
    .whi-single-news-layout,
    .whi-footer-grid,
    .post-navigation .nav-links,
    .whi-resource-card-featured .whi-resource-card-link {
        grid-template-columns: 1fr;
    }

    .whi-news-side-sticky-group {
        position: relative;
        top: auto;
    }

    .whi-news-sidebar {
        position: relative;
        top: auto;
        max-height: none;
        overflow: visible;
    }

    .whi-team-grid:not(.whi-carousel-track) {
        grid-template-columns: 1fr;
    }

    .whi-system-card,
    .whi-question-grid article {
        grid-column: 1 / -1;
    }

    .whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card,
    .whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card:nth-child(1),
    .whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card:nth-child(2),
    .whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card:nth-child(3),
    .whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-card:nth-child(4) {
        min-height: 230px;
    }

    .whi-testimonial-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .whi-collaborator-grid {
        grid-template-columns: 1fr;
    }

    .whi-section-heading-with-actions {
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .whi-documentary-visual {
        min-height: 320px;
    }

    .whi-statement-visual,
    .whi-story-cta-visual {
        min-height: 340px;
    }

    .whi-visual-route-emotional .whi-story-section > .whi-shell::before {
        display: none;
    }

    .whi-visual-route-emotional .whi-story-section > .whi-shell::after {
        display: none;
    }

    .whi-visual-route-emotional .whi-story-hero.has-image {
        padding: 3.2rem 0 4.2rem;
        background: #ffffff;
    }

    .whi-visual-route-emotional .whi-story-hero.has-image::before {
        display: none;
    }

    .whi-visual-route-emotional .whi-story-hero-inner {
        min-height: 0;
    }

    .whi-visual-route-emotional .whi-story-hero.has-image .whi-story-hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .whi-story-hero-media {
        min-height: 320px;
        clip-path: none;
    }

    .whi-visual-route-emotional .whi-story-hero-inner::after {
        display: none;
    }

    .whi-visual-route-emotional .whi-story-hero-inner::before {
        left: -1rem;
        width: min(720px, calc(100% + 2rem));
        height: calc(100% + 2rem);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.94) 86%, rgba(255, 255, 255, 0));
    }

    .whi-visual-route-emotional .whi-story-hero h1,
    .whi-visual-route-emotional .whi-story-lede {
        max-width: 680px;
    }

    .whi-visual-route-emotional .whi-documentary-block:nth-of-type(odd) .whi-documentary-visual,
    .whi-visual-route-emotional .whi-documentary-block:nth-of-type(odd) .whi-story-copy-panel {
        order: initial;
    }

    .whi-visual-route-emotional .whi-system-card:nth-child(even),
    .whi-visual-route-emotional .whi-question-grid article:nth-child(even),
    .whi-visual-route-emotional .whi-team-grid article:nth-child(even) {
        transform: none;
    }

    .whi-visual-route-emotional .whi-documentary-visual.has-section-image,
    .whi-visual-route-emotional .whi-statement-visual,
    .whi-visual-route-emotional .whi-story-cta-visual {
        clip-path: none;
    }

    .whi-hero-grid,
    .whi-split,
    .whi-split-reverse,
    .whi-band-grid {
        grid-template-columns: 1fr;
    }

    .whi-hero-grid {
        min-height: 0;
        padding: 3.4rem 0 4rem;
    }

    .whi-hero-copy h1 {
        font-size: 3rem;
    }

    .whi-hero-visual {
        min-height: 360px;
    }

    .whi-brand-panel {
        min-height: 360px;
    }

    .whi-program-grid,
    .whi-process-grid {
        grid-template-columns: 1fr;
    }

    .whi-resource-grid {
        display: flex;
    }

    .whi-resources-hero h1 {
        font-size: 3rem;
    }

    .whi-contact-hero h1 {
        font-size: 3rem;
    }

    .whi-resource-card-featured .whi-resource-visual {
        min-height: 300px;
    }

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

    .whi-process-grid article {
        min-height: 0;
    }

    .whi-nav-toggle {
        display: inline-flex;
    }

    .whi-primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding: 1rem;
        background: #ffffff;
        border-bottom: 1px solid var(--whi-color-border, #d8e6f2);
        box-shadow: 0 20px 40px rgba(16, 32, 51, 0.12);
    }

    .whi-primary-nav.is-open {
        display: flex;
    }

    .whi-primary-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
    }

    .whi-primary-nav a {
        justify-content: space-between;
    }

    .whi-primary-nav .whi-header-cta {
        justify-content: center;
        width: 100%;
    }

    .whi-primary-nav .sub-menu {
        position: static;
        display: block;
        min-width: 0;
        border: 0;
        box-shadow: none;
        padding: 0.1rem 0 0.1rem 1rem;
    }

    .whi-header-language {
        padding-left: 0;
    }

    .whi-post-summary {
        grid-template-columns: 1fr;
    }

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

    .search-form {
        flex-direction: column;
    }
}

@media screen and (max-width: 782px) {
    .admin-bar .whi-site-header {
        top: 46px;
    }
}

@media (max-width: 520px) {
    .whi-shell {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        width: min(calc(100% - 1rem), 380px);
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.72rem;
    }

    h3 {
        font-size: 1.28rem;
    }

    .whi-home-section {
        padding: 3rem 0;
    }

    .whi-story-section,
    .whi-story-statement,
    .whi-story-cta {
        padding: 3.25rem 0;
    }

    .whi-story-hero {
        min-height: 0;
    }

    .whi-story-hero h1,
    .whi-story-statement h2,
    .whi-story-cta h2 {
        font-size: 2.28rem;
    }

    .whi-story-lede,
    .whi-story-cta p {
        font-size: 1rem;
    }

    .whi-story-copy-panel {
        padding: 1.25rem;
    }

    .whi-documentary-visual.has-section-image,
    .whi-statement-visual,
    .whi-story-cta-visual {
        min-height: 280px;
    }

    .whi-evidence-list li,
    .whi-program-card li {
        gap: 0.62rem;
    }

    .whi-story-page-home.whi-story-index-4.whi-system-section .whi-system-grid {
        grid-template-columns: 1fr;
    }

    .whi-visual-route-emotional .whi-story-hero.has-image {
        padding-bottom: 3.5rem;
        background: #ffffff;
    }

    .whi-visual-route-emotional .whi-story-hero.has-image::before {
        display: none;
    }

    .whi-story-hero-media {
        min-height: 240px;
    }

    .whi-stat-grid strong {
        font-size: 3rem;
    }

    .whi-hero-copy h1 {
        font-size: 2.35rem;
    }

    .whi-hero-lede {
        font-size: 1rem;
    }

    .whi-hero-actions,
    .whi-hero-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .whi-button,
    .whi-hero-badges span {
        width: 100%;
    }

    .whi-feature-grid {
        grid-template-columns: 1fr;
    }

    .whi-carousel-controls {
        width: 100%;
    }

    .whi-icon-button {
        flex: 0 0 46px;
    }

    .whi-carousel-card,
    .whi-team-grid.whi-carousel-track article,
    .whi-testimonial-card {
        flex-basis: calc(100% - 0.4rem);
    }

    .whi-collaborator-card {
        grid-template-columns: 72px 1fr;
        padding: 1rem;
    }

    .whi-collaborator-photo {
        width: 72px;
        height: 92px;
    }

    .whi-resource-grid {
        display: flex;
    }

    .whi-resource-card {
        flex-basis: 100%;
        max-width: none;
    }

    .whi-resources-hero h1 {
        font-size: 2.35rem;
    }

    .whi-contact-hero h1 {
        font-size: 2.35rem;
    }

    .whi-contact-minimal-copy h1 {
        font-size: 2.35rem;
    }

    .whi-contact-route-grid {
        grid-template-columns: 1fr;
    }

    .whi-contact-form-card input[type="submit"],
    .whi-contact-form-card button,
    .whi-contact-form-card .gform_button {
        width: 100%;
    }

    .whi-resources-hero p,
    .whi-contact-hero p {
        font-size: 1rem;
    }

    .whi-resource-card {
        min-height: 0;
    }

    .whi-team-grid {
        grid-template-columns: 1fr;
    }

    .whi-resource-card-link {
        grid-template-rows: 175px auto;
    }

    .whi-resource-body {
        min-height: 0;
    }

    .whi-resource-action {
        position: static;
        display: inline-flex;
        margin-top: 1rem;
        opacity: 1;
        transform: none;
    }

    .whi-resource-card:hover .whi-resource-action,
    .whi-resource-card:focus-within .whi-resource-action {
        transform: none;
    }

    .whi-resource-card-link::after {
        display: none;
    }

    .whi-hero-visual,
    .whi-brand-panel {
        min-height: 300px;
    }

    .whi-brand-panel span {
        font-size: 3.8rem;
    }

    .entry-content > .alignfull {
        width: calc(100% + 1rem);
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .wp-block-cover,
    .wp-block-group.has-background {
        padding: 1.5rem;
    }

    .nav-links,
    .whi-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Final hero reset: keep narrative page headers readable above all visual routes. */
.whi-story-hero,
.whi-story-hero.has-image,
.whi-visual-route-emotional .whi-story-hero,
.whi-visual-route-emotional .whi-story-hero.has-image {
    position: relative !important;
    display: block !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    background-image: none !important;
    color: #102033 !important;
    isolation: isolate;
}

.whi-story-hero::before,
.whi-story-hero::after,
.whi-story-hero.no-image::after,
.whi-story-hero.has-image::before,
.whi-story-hero.has-image::after,
.whi-visual-route-emotional .whi-story-hero::before,
.whi-visual-route-emotional .whi-story-hero::after,
.whi-visual-route-emotional .whi-story-hero.has-image::before,
.whi-visual-route-emotional .whi-story-hero.has-image::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

.whi-story-hero .whi-story-hero-inner,
.whi-visual-route-emotional .whi-story-hero .whi-story-hero-inner,
.whi-visual-route-emotional .whi-story-hero.has-image .whi-story-hero-inner {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr) !important;
    gap: clamp(2.25rem, 6vw, 5rem) !important;
    align-items: center !important;
    width: min(calc(100% - 2rem), var(--whi-wide-width, 1200px)) !important;
    min-height: clamp(440px, 54vw, 680px) !important;
    margin-inline: auto !important;
    padding: clamp(3rem, 6vw, 5.8rem) 0 clamp(4rem, 7vw, 6.5rem) !important;
    color: #102033 !important;
}

.whi-story-hero .whi-story-hero-inner::before,
.whi-story-hero .whi-story-hero-inner::after,
.whi-visual-route-emotional .whi-story-hero .whi-story-hero-inner::before,
.whi-visual-route-emotional .whi-story-hero .whi-story-hero-inner::after {
    display: none !important;
    content: none !important;
}

.whi-story-hero-copy,
.whi-story-hero-copy *,
.whi-story-hero .whi-story-hero-copy,
.whi-story-hero .whi-story-hero-copy * {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
}

.whi-story-hero-copy,
.whi-story-hero .whi-story-hero-copy {
    position: relative !important;
    z-index: 3 !important;
    max-width: 580px !important;
    padding: clamp(1rem, 2vw, 1.8rem) 0 !important;
    color: #102033 !important;
}

.whi-story-hero-copy::before,
.whi-story-hero .whi-story-hero-copy::before {
    position: absolute !important;
    inset: -1.2rem -1.8rem -1.2rem -1.2rem !important;
    z-index: -1 !important;
    display: block !important;
    border-left: 3px solid #1f86c8 !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9) 78%, rgba(255, 255, 255, 0)) !important;
    content: "" !important;
    pointer-events: none !important;
}

.whi-story-hero .whi-eyebrow,
.whi-story-hero-copy .whi-eyebrow,
.whi-visual-route-emotional .whi-story-hero .whi-eyebrow {
    color: #1f86c8 !important;
}

.whi-story-hero h1,
.whi-story-hero-copy h1,
.whi-visual-route-emotional .whi-story-hero h1 {
    max-width: 580px !important;
    color: #102033 !important;
    font-size: clamp(3.05rem, 5.6vw, 5.1rem) !important;
    line-height: 1.02 !important;
}

.whi-story-hero .whi-story-lede,
.whi-story-hero-copy .whi-story-lede,
.whi-visual-route-emotional .whi-story-hero .whi-story-lede {
    max-width: 540px !important;
    color: #425f78 !important;
}

.whi-story-hero-media,
.whi-story-hero .whi-story-hero-media {
    position: relative !important;
    z-index: 2 !important;
    min-height: clamp(360px, 43vw, 620px) !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 0 0 0 68px !important;
    background: #f3f8fd !important;
    clip-path: none !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    box-shadow: 0 28px 74px rgba(13, 79, 139, 0.14) !important;
}

.whi-story-hero-media img,
.whi-story-hero .whi-story-hero-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: inherit !important;
    object-fit: cover !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

@media (max-width: 900px) {
    .whi-story-hero .whi-story-hero-inner,
    .whi-visual-route-emotional .whi-story-hero .whi-story-hero-inner,
    .whi-visual-route-emotional .whi-story-hero.has-image .whi-story-hero-inner {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
    }

    .whi-story-hero h1,
    .whi-story-hero-copy h1,
    .whi-visual-route-emotional .whi-story-hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.7rem) !important;
    }

    .whi-story-hero-copy::before,
    .whi-story-hero .whi-story-hero-copy::before {
        inset: -0.9rem -1rem !important;
        background: #ffffff !important;
    }

    .whi-story-hero-media,
    .whi-story-hero .whi-story-hero-media {
        min-height: 300px !important;
        border-radius: 0 0 0 34px !important;
    }
}

/* Narrative hero v2: avoids the legacy story-hero stacking context that washed out page headers. */
.whi-narrative-hero,
.whi-narrative-hero.has-image,
.whi-narrative-hero.no-image {
    position: relative;
    display: block;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 6.8rem) 0 clamp(4.4rem, 7vw, 7rem);
    background: #ffffff;
    color: #102033;
}

.whi-narrative-hero::before,
.whi-narrative-hero::after,
.whi-narrative-hero *::before,
.whi-narrative-hero *::after {
    display: none !important;
    content: none !important;
}

.whi-narrative-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
    width: min(calc(100% - 2rem), var(--whi-wide-width, 1200px));
    min-height: clamp(440px, 52vw, 660px);
    margin-inline: auto;
}

.whi-narrative-hero.no-image .whi-narrative-hero-inner {
    grid-template-columns: minmax(0, 760px);
    justify-content: start;
}

.whi-narrative-hero-copy {
    position: relative;
    z-index: 3;
    max-width: 590px;
    padding: clamp(1.35rem, 3vw, 2rem);
    border-left: 4px solid #1f86c8;
    background: #ffffff;
    color: #102033;
    box-shadow: 0 22px 68px rgba(13, 79, 139, 0.09);
}

.whi-narrative-hero-copy .whi-eyebrow {
    color: #1f86c8 !important;
    -webkit-text-fill-color: #1f86c8;
}

.whi-narrative-hero-copy h1 {
    max-width: 590px;
    margin-bottom: 1.3rem;
    color: #001f3d !important;
    -webkit-text-fill-color: #001f3d;
    font-size: clamp(2.95rem, 4.8vw, 4.45rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.02;
    opacity: 1;
    text-shadow: none;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.whi-narrative-hero-copy .whi-story-lede {
    max-width: 540px;
    color: #193b5b !important;
    -webkit-text-fill-color: #193b5b;
    font-size: clamp(1.05rem, 1.45vw, 1.24rem);
    line-height: 1.8;
    opacity: 1;
    text-shadow: none;
}

.whi-narrative-hero .whi-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.whi-narrative-hero .whi-button-ghost {
    border-color: #d8e6f2;
    background: #ffffff;
    color: #0d4f8b;
    -webkit-text-fill-color: #0d4f8b;
    box-shadow: 0 14px 38px rgba(13, 79, 139, 0.08);
}

.whi-narrative-hero .whi-button-ghost:hover,
.whi-narrative-hero .whi-button-ghost:focus {
    border-color: #1f86c8;
    background: #eef8ff;
    color: #0d4f8b;
    -webkit-text-fill-color: #0d4f8b;
}

.whi-narrative-hero-media {
    position: relative;
    z-index: 1;
    min-height: clamp(360px, 42vw, 600px);
    margin: 0;
    overflow: hidden;
    border-radius: 0 0 0 68px;
    background: #f3f8fd;
    box-shadow: 0 28px 74px rgba(13, 79, 139, 0.14);
}

.whi-narrative-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.whi-editable-story-content > * {
    margin-block-start: 0;
    margin-block-end: 0;
}

.whi-editable-story-content .wp-block-group,
.whi-editable-story-content .wp-block-image {
    margin-block-start: 0;
    margin-block-end: 0;
}

.wp-block-image.whi-documentary-visual,
.wp-block-image.whi-statement-visual,
.wp-block-image.whi-story-cta-visual,
.wp-block-image.whi-recognition-visual {
    position: relative;
    overflow: hidden;
}

.wp-block-image.whi-documentary-visual img,
.wp-block-image.whi-statement-visual img,
.wp-block-image.whi-story-cta-visual img,
.wp-block-image.whi-recognition-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.wp-block-image.whi-documentary-visual.has-section-image,
.wp-block-image.whi-statement-visual.has-section-image,
.wp-block-image.whi-story-cta-visual.has-section-image,
.wp-block-image.whi-recognition-visual.has-section-image {
    background-image: none !important;
}

@media (max-width: 900px) {
    .whi-narrative-hero {
        padding: 3rem 0 4rem;
    }

    .whi-narrative-hero-inner,
    .whi-narrative-hero.no-image .whi-narrative-hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .whi-narrative-hero-copy {
        max-width: none;
        padding: 1.25rem;
    }

    .whi-narrative-hero-copy h1 {
        font-size: clamp(2.45rem, 12vw, 3.75rem);
    }

    .whi-narrative-hero .whi-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .whi-narrative-hero-media {
        min-height: 300px;
        border-radius: 0 0 0 34px;
    }
}

/* Dynamic video-like hero used only on Home, Quienes somos and Bienestar Mental. */
.whi-dynamic-hero {
    min-height: clamp(600px, 78svh, 760px);
    padding: clamp(3.6rem, 6vw, 5.8rem) 0;
    background: #061f3a;
    color: #ffffff;
}

.whi-dynamic-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.74;
    filter: saturate(1.08) contrast(1.04);
    transform: translate3d(0, var(--whi-hero-parallax, 0px), 0) scale(1.06);
    transform-origin: 50% 50%;
    pointer-events: none;
}

.whi-dynamic-hero::before {
    position: absolute;
    inset: -7%;
    z-index: 0;
    display: block !important;
    background:
        linear-gradient(90deg, rgba(3, 18, 36, 0.78) 0%, rgba(3, 18, 36, 0.58) 42%, rgba(3, 18, 36, 0.2) 72%, rgba(3, 18, 36, 0.48) 100%),
        var(--whi-story-hero-image) center / cover no-repeat;
    content: "" !important;
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.04);
    transform-origin: 50% 50%;
    animation: whiDynamicHeroPan 18s ease-in-out infinite alternate;
}

.whi-dynamic-hero.has-video::before {
    opacity: 0.32;
    animation: whiDynamicHeroPan 24s ease-in-out infinite alternate;
}

.whi-dynamic-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block !important;
    background:
        radial-gradient(circle at 16% 22%, rgba(105, 199, 232, 0.28), transparent 22rem),
        linear-gradient(115deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 58px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.1));
    background-size: auto, 58px 58px, auto;
    content: "" !important;
    opacity: 0.72;
    pointer-events: none;
    animation: whiDynamicLightDrift 12s ease-in-out infinite alternate;
}

.whi-dynamic-hero.has-video::after {
    background:
        radial-gradient(circle at 16% 22%, rgba(105, 199, 232, 0.28), transparent 22rem),
        linear-gradient(90deg, rgba(2, 17, 34, 0.72) 0%, rgba(2, 17, 34, 0.48) 42%, rgba(2, 17, 34, 0.2) 74%, rgba(2, 17, 34, 0.48) 100%),
        linear-gradient(115deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 58px);
    opacity: 0.9;
}

.whi-dynamic-hero .whi-narrative-hero-inner {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
    min-height: clamp(520px, 64svh, 660px);
}

.whi-dynamic-hero .whi-narrative-hero-copy {
    max-width: 760px;
    padding: clamp(1.45rem, 3.4vw, 2.45rem);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-left: 4px solid #69c7e8;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 253, 0.9)),
        #ffffff;
    box-shadow: 0 34px 90px rgba(1, 20, 42, 0.28);
}

.whi-dynamic-hero .whi-narrative-hero-copy h1 {
    max-width: 700px;
    color: #001f3d !important;
    -webkit-text-fill-color: #001f3d;
    font-size: clamp(3.15rem, 5.25vw, 5.1rem);
}

.whi-dynamic-hero .whi-narrative-hero-copy .whi-story-lede {
    max-width: 660px;
    color: #173b5c !important;
    -webkit-text-fill-color: #173b5c;
}

.whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-copy {
    max-width: 720px;
}

.whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-copy h1 {
    max-width: 660px;
    font-size: clamp(2.65rem, 4.08vw, 3.95rem);
    line-height: 1.04;
}

.whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-copy .whi-story-lede {
    max-width: 630px;
    font-size: clamp(1rem, 1.28vw, 1.12rem);
}

.whi-dynamic-hero .whi-narrative-hero-media {
    display: none;
}

.whi-dynamic-hero .whi-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 720px);
    gap: 0.8rem;
    margin-top: clamp(1.4rem, 3vw, 2rem);
    padding: 0.35rem;
    border: 1px solid rgba(216, 230, 242, 0.82);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 255, 0.88), rgba(255, 255, 255, 0.94));
    background-size: 220% 100%;
    box-shadow: 0 20px 54px rgba(13, 79, 139, 0.14);
    animation: whiDynamicCtaFlow 6s ease-in-out infinite alternate;
}

.whi-dynamic-hero .whi-hero-actions .whi-button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
}

.whi-dynamic-hero .whi-button-primary {
    box-shadow: 0 16px 34px rgba(13, 79, 139, 0.24);
}

.whi-dynamic-hero .whi-button-ghost {
    border-color: rgba(216, 230, 242, 0.95);
}

.whi-dynamic-hero.whi-story-page-sobre {
    min-height: clamp(620px, 84svh, 800px);
    background: #061f3a;
}

.whi-dynamic-hero.whi-story-page-sobre::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(238, 248, 255, 0.48) 55%, rgba(6, 31, 58, 0.22) 78%, rgba(6, 31, 58, 0.5) 100%),
        var(--whi-story-hero-image) center / cover no-repeat;
    filter: saturate(1.04) contrast(1.03);
}

.whi-dynamic-hero.whi-story-page-sobre::after {
    background:
        radial-gradient(circle at 78% 34%, rgba(105, 199, 232, 0.22), transparent 18rem),
        repeating-radial-gradient(circle at 12% 84%, rgba(31, 134, 200, 0.16) 0 1px, transparent 1px 18px);
    opacity: 0.62;
}

.whi-dynamic-hero.whi-story-page-sobre .whi-narrative-hero-inner {
    grid-template-columns: minmax(0, 560px) minmax(220px, 1fr);
    min-height: clamp(520px, 64svh, 680px);
}

.whi-dynamic-hero.whi-story-page-sobre .whi-narrative-hero-copy {
    max-width: 560px;
    border: 1px solid rgba(216, 230, 242, 0.88);
    border-left: 4px solid var(--whi-color-secondary, #1f86c8);
    border-radius: 0 42px 42px 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 253, 0.9)),
        #ffffff;
    box-shadow: 0 30px 88px rgba(5, 31, 59, 0.16);
}

.whi-dynamic-hero.whi-story-page-sobre .whi-narrative-hero-copy h1 {
    max-width: 540px;
    font-size: clamp(2.8rem, 4.7vw, 4.75rem);
}

.whi-dynamic-hero.whi-story-page-sobre .whi-narrative-hero-copy .whi-story-lede {
    max-width: 520px;
}

.whi-story-page-sobre.whi-story-index-2.whi-steps-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(105, 199, 232, 0.14), transparent 22rem),
        linear-gradient(180deg, #ffffff, rgba(243, 248, 253, 0.76));
}

.whi-story-page-sobre.whi-story-index-2 .whi-process-grid {
    --whi-sobre-step-gap: clamp(1.25rem, 3vw, 2.2rem);
    gap: var(--whi-sobre-step-gap);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.whi-story-page-sobre.whi-story-index-2 .whi-process-grid article {
    position: relative;
    min-height: 310px;
    border: 1px solid rgba(216, 230, 242, 0.95);
    border-radius: 6px 34px 6px 34px;
    background:
        linear-gradient(180deg, #ffffff, rgba(243, 248, 253, 0.88));
    box-shadow: 0 24px 64px rgba(13, 79, 139, 0.09);
}

.whi-story-page-sobre.whi-story-index-2 .whi-process-grid article:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: calc(0px - var(--whi-sobre-step-gap));
    width: var(--whi-sobre-step-gap);
    height: 1px;
    background: linear-gradient(90deg, rgba(31, 134, 200, 0.18), rgba(31, 134, 200, 0.7));
    content: "";
}

.whi-story-page-sobre.whi-story-index-2 .whi-process-grid article:not(:last-child)::before {
    position: absolute;
    top: calc(50% - 4px);
    right: calc(0px - var(--whi-sobre-step-gap) - 1px);
    width: 8px;
    height: 8px;
    border-top: 1px solid rgba(31, 134, 200, 0.72);
    border-right: 1px solid rgba(31, 134, 200, 0.72);
    content: "";
    transform: rotate(45deg);
}

.whi-story-page-sobre.whi-story-index-2 .whi-process-grid span {
    background: var(--whi-color-primary, #0d4f8b);
    box-shadow: 0 12px 30px rgba(13, 79, 139, 0.18);
}

.whi-story-page-sobre.whi-story-index-4 .whi-system-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.whi-story-page-sobre.whi-story-index-4 .whi-system-card,
.whi-story-page-sobre.whi-story-index-4 .whi-system-card:nth-child(1),
.whi-story-page-sobre.whi-story-index-4 .whi-system-card:nth-child(2),
.whi-story-page-sobre.whi-story-index-4 .whi-system-card:nth-child(3),
.whi-story-page-sobre.whi-story-index-4 .whi-system-card:nth-child(4) {
    display: flex;
    grid-column: auto !important;
    flex-direction: column;
    min-height: 300px;
}

@keyframes whiDynamicHeroPan {
    0% {
        background-position: 48% 48%;
        transform: scale(1.04);
    }

    50% {
        background-position: 56% 42%;
        transform: scale(1.09);
    }

    100% {
        background-position: 44% 54%;
        transform: scale(1.06);
    }
}

@keyframes whiDynamicLightDrift {
    0% {
        opacity: 0.56;
        transform: translate3d(-1.5%, 0, 0);
    }

    100% {
        opacity: 0.82;
        transform: translate3d(1.5%, 0, 0);
    }
}

@keyframes whiDynamicCtaFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@media (max-width: 900px) {
    .whi-dynamic-hero {
        min-height: auto;
        padding: 2.8rem 0 3.4rem;
    }

    .whi-dynamic-hero::before {
        inset: -4%;
        background:
            linear-gradient(180deg, rgba(3, 18, 36, 0.36), rgba(3, 18, 36, 0.14) 42%, rgba(3, 18, 36, 0.42)),
            var(--whi-story-hero-image) center / cover no-repeat;
    }

    .whi-dynamic-hero .whi-narrative-hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .whi-dynamic-hero .whi-narrative-hero-copy {
        max-width: none;
        padding: 1.3rem;
    }

    .whi-dynamic-hero .whi-narrative-hero-copy h1 {
        font-size: clamp(2.55rem, 12vw, 3.65rem);
    }

    .whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-copy h1 {
        font-size: clamp(2.25rem, 10vw, 2.85rem);
        line-height: 1.06;
    }

    .whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-copy .whi-story-lede {
        font-size: 1.02rem;
        line-height: 1.68;
    }

    .whi-dynamic-hero .whi-hero-actions {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .whi-dynamic-hero.whi-story-page-sobre {
        min-height: auto;
    }

    .whi-dynamic-hero.whi-story-page-sobre::before {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74) 48%, rgba(6, 31, 58, 0.28)),
            var(--whi-story-hero-image) center / cover no-repeat;
    }

    .whi-dynamic-hero.whi-story-page-sobre .whi-narrative-hero-inner {
        grid-template-columns: 1fr;
    }

    .whi-dynamic-hero.whi-story-page-sobre .whi-narrative-hero-copy {
        border-radius: 0 28px 28px 0;
    }

    .whi-story-page-sobre.whi-story-index-2 .whi-process-grid {
        gap: 1.35rem;
    }

    .whi-story-page-sobre.whi-story-index-2 .whi-process-grid article:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -1.35rem;
        left: 50%;
        width: 1px;
        height: 1.35rem;
        background: linear-gradient(180deg, rgba(31, 134, 200, 0.18), rgba(31, 134, 200, 0.7));
    }

    .whi-story-page-sobre.whi-story-index-2 .whi-process-grid article:not(:last-child)::before {
        top: auto;
        right: auto;
        bottom: -1.38rem;
        left: calc(50% - 4px);
        transform: rotate(135deg);
    }

    .whi-story-page-sobre.whi-story-index-4 .whi-system-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Equal card system with configurable SVG icons. */
.whi-system-grid,
.whi-question-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)) !important;
    align-items: stretch;
}

.whi-system-card,
.whi-system-card:nth-child(1),
.whi-system-card:nth-child(2),
.whi-system-card:nth-child(3),
.whi-system-card:nth-child(4),
.whi-question-grid article,
.whi-question-grid article:nth-child(3n + 1),
.whi-question-grid article:nth-child(3n + 2),
.whi-question-grid article:nth-child(2) {
    display: flex;
    grid-column: auto !important;
    flex-direction: column;
    min-height: clamp(260px, 22vw, 310px);
    height: 100%;
    padding: clamp(1.25rem, 2vw, 1.55rem);
}

.whi-program-grid-two {
    align-items: stretch;
}

.whi-program-grid-two .whi-program-card {
    display: flex;
    flex-direction: column;
    min-height: clamp(320px, 30vw, 390px);
    height: 100%;
}

.whi-visual-route-emotional .whi-system-card:nth-child(even),
.whi-visual-route-emotional .whi-question-grid article:nth-child(even),
.whi-visual-route-emotional .whi-team-grid article:nth-child(even) {
    transform: none;
}

.whi-visual-route-emotional .whi-system-card:hover,
.whi-visual-route-emotional .whi-system-card:focus-within,
.whi-visual-route-emotional .whi-question-grid article:hover,
.whi-visual-route-emotional .whi-question-grid article:focus-within,
.whi-visual-route-emotional .whi-team-grid article:hover,
.whi-visual-route-emotional .whi-team-grid article:focus-within {
    transform: translateY(-6px);
}

.whi-card-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    margin-bottom: 1rem;
    border: 1px solid rgba(216, 230, 242, 0.92);
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 22%, rgba(105, 199, 232, 0.36), transparent 42%),
        linear-gradient(180deg, #ffffff, #eef8ff);
    color: #0d4f8b;
    box-shadow: 0 14px 34px rgba(13, 79, 139, 0.1);
}

.whi-card-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.whi-system-card h3,
.whi-question-grid h3,
.whi-program-card h2,
.whi-layer-card h3 {
    position: relative;
    z-index: 1;
}

.whi-system-card p,
.whi-question-grid p,
.whi-program-card p,
.whi-layer-card p {
    position: relative;
    z-index: 1;
}

.whi-system-card .whi-card-icon,
.whi-question-grid article .whi-card-icon,
.whi-layer-card .whi-card-icon,
.whi-program-card .whi-card-icon {
    flex: 0 0 auto;
}

.whi-split-cards .whi-program-card:first-child .whi-card-icon {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: none;
}

@media (max-width: 900px) {
    .whi-system-grid,
    .whi-question-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .whi-system-card,
    .whi-system-card:nth-child(1),
    .whi-system-card:nth-child(2),
    .whi-system-card:nth-child(3),
    .whi-system-card:nth-child(4),
    .whi-question-grid article,
    .whi-question-grid article:nth-child(3n + 1),
    .whi-question-grid article:nth-child(3n + 2),
    .whi-question-grid article:nth-child(2) {
        min-height: 250px;
    }
}

@media (max-width: 620px) {
    .whi-system-grid,
    .whi-question-grid {
        grid-template-columns: 1fr !important;
    }
}

html.whi-js .whi-reveal {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 700ms ease,
        filter 760ms ease,
        transform 760ms cubic-bezier(0.2, 0.72, 0.18, 1);
    transition-delay: var(--whi-reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

html.whi-js .whi-reveal.whi-reveal-media {
    transform: translate3d(0, 38px, 0) scale(0.985);
}

html.whi-js .whi-reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
}

.whi-system-card,
.whi-question-grid article,
.whi-layer-card,
.whi-program-card,
.whi-testimonial-card,
.whi-collaborator-card {
    transition:
        border-color 260ms ease,
        box-shadow 320ms ease,
        transform 320ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.whi-system-card:hover,
.whi-system-card:focus-within,
.whi-question-grid article:hover,
.whi-question-grid article:focus-within,
.whi-layer-card:hover,
.whi-layer-card:focus-within,
.whi-program-card:hover,
.whi-program-card:focus-within,
.whi-testimonial-card:hover,
.whi-testimonial-card:focus-within,
.whi-collaborator-card:hover,
.whi-collaborator-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(31, 134, 200, 0.42);
    box-shadow: 0 28px 70px rgba(13, 79, 139, 0.13);
}

/* Client proposal alignment: emotional home and salutogenesis method map. */
.whi-dynamic-hero.whi-story-page-home {
    min-height: clamp(680px, 92svh, 900px);
    padding: clamp(4.5rem, 7vw, 6.4rem) 0 clamp(3.8rem, 6vw, 5rem);
    background: #07131b;
}

.whi-dynamic-hero.whi-story-page-home::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 12, 20, 0.88) 0%, rgba(3, 12, 20, 0.72) 35%, rgba(3, 12, 20, 0.28) 66%, rgba(3, 12, 20, 0.68) 100%),
        radial-gradient(circle at 38% 40%, rgba(230, 167, 96, 0.18), transparent 26rem),
        var(--whi-story-hero-image) center / cover no-repeat;
    filter: saturate(0.92) contrast(1.06) brightness(0.72);
    opacity: 1;
}

.whi-dynamic-hero.whi-story-page-home::after {
    background:
        radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.12), transparent 22rem),
        repeating-radial-gradient(circle at 84% 28%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(4, 13, 22, 0.16));
    opacity: 0.68;
}

.whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-inner {
    grid-template-columns: minmax(0, 620px) 1fr;
    min-height: clamp(520px, 68svh, 720px);
}

.whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-copy {
    max-width: 620px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-copy .whi-eyebrow {
    color: #cfe9fb !important;
    -webkit-text-fill-color: #cfe9fb;
}

.whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-copy h1 {
    max-width: 620px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
    text-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
}

.whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-copy .whi-story-lede {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.86) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.86);
}

.whi-dynamic-hero.whi-story-page-home .whi-hero-actions {
    display: flex;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
}

.whi-dynamic-hero.whi-story-page-home .whi-hero-actions .whi-button {
    width: auto;
    min-width: 172px;
}

.whi-dynamic-hero.whi-story-page-home .whi-button-primary {
    background: #ffffff;
    color: #061f3a;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.whi-dynamic-hero.whi-story-page-home .whi-button-ghost {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.whi-profile-gateway-panel {
    position: relative;
    z-index: 3;
    width: min(100%, 560px);
    justify-self: end;
}

.whi-profile-gateway {
    display: grid;
    gap: clamp(0.9rem, 1.6vw, 1.2rem);
}

.whi-profile-card {
    position: relative;
    display: block;
    min-height: clamp(190px, 20vw, 245px);
    overflow: hidden;
    border: 1px solid rgba(216, 230, 242, 0.42);
    border-radius: 8px 42px 8px 42px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 255, 0.86)),
        rgba(255, 255, 255, 0.92);
    color: #102033;
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.24);
    text-decoration: none;
    transform: translateZ(0);
    transition:
        border-color 260ms ease,
        box-shadow 320ms ease,
        transform 320ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.whi-profile-card:hover,
.whi-profile-card:focus {
    border-color: rgba(105, 199, 232, 0.78);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
    text-decoration: none;
    transform: translateY(-6px);
}

.whi-profile-card-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76) 58%, rgba(255, 255, 255, 0.28)),
        var(--whi-profile-image, none) center / cover no-repeat;
    opacity: 0.96;
    transition: transform 520ms ease, opacity 320ms ease;
}

.whi-profile-card:hover .whi-profile-card-bg,
.whi-profile-card:focus .whi-profile-card-bg {
    transform: scale(1.035);
}

.whi-profile-card-primary {
    min-height: clamp(220px, 23vw, 290px);
    border-color: rgba(255, 255, 255, 0.54);
}

.whi-profile-card:not(.whi-profile-card-primary) {
    background:
        linear-gradient(135deg, rgba(5, 31, 59, 0.88), rgba(13, 79, 139, 0.78)),
        rgba(5, 31, 59, 0.86);
    color: #ffffff;
}

.whi-profile-card:not(.whi-profile-card-primary) .whi-profile-card-bg {
    background:
        linear-gradient(90deg, rgba(5, 31, 59, 0.94), rgba(13, 79, 139, 0.8) 58%, rgba(31, 134, 200, 0.36)),
        var(--whi-profile-image, none) center / cover no-repeat;
}

.whi-profile-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
    padding: clamp(1.25rem, 2.4vw, 1.75rem);
}

.whi-profile-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.whi-profile-card .whi-card-icon {
    margin: 0;
}

.whi-profile-card:not(.whi-profile-card-primary) .whi-card-icon {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: none;
}

.whi-profile-card:not(.whi-profile-card-primary) .whi-card-meta {
    color: rgba(255, 255, 255, 0.78);
}

.whi-profile-card-title {
    display: block;
    max-width: 460px;
    color: inherit;
    font-size: clamp(1.55rem, 2.8vw, 2.45rem);
    font-weight: 850;
    line-height: 1.04;
}

.whi-profile-card-excerpt,
.whi-profile-card-body {
    display: block;
    max-width: 430px;
    color: color-mix(in srgb, currentColor 74%, transparent);
    font-size: 0.98rem;
    line-height: 1.58;
}

.whi-profile-card-body {
    margin-top: -0.35rem;
}

.whi-profile-card-action {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    min-height: 38px;
    border-bottom: 1px solid currentColor;
    color: inherit;
    font-size: 0.86rem;
    font-weight: 850;
}

.whi-profile-card-action::after {
    margin-left: 0.55rem;
    content: "\2192";
    transition: transform 220ms ease;
}

.whi-profile-card:hover .whi-profile-card-action::after,
.whi-profile-card:focus .whi-profile-card-action::after {
    transform: translateX(4px);
}

.whi-recognition-grid-has-visual {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.9fr) minmax(250px, 0.72fr);
    align-items: center;
}

.whi-recognition-visual {
    min-height: clamp(260px, 26vw, 350px);
    border-radius: 42px 8px 42px 8px;
    background-color: #eaf4fb;
    background-position: center;
    background-size: cover;
    box-shadow: 0 24px 70px rgba(13, 79, 139, 0.16);
}

.whi-salutogenesis-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 48%, rgba(105, 199, 232, 0.12), transparent 24rem),
        #ffffff;
}

.whi-salutogenesis-map {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(150px, auto));
    gap: clamp(1.8rem, 5vw, 4.6rem);
    align-items: center;
    min-height: clamp(520px, 56vw, 650px);
    margin-top: clamp(2rem, 5vw, 4rem);
}

.whi-salutogenesis-map::before {
    position: absolute;
    inset: 8% 18%;
    border-radius: 999px;
    background:
        repeating-radial-gradient(circle at center, rgba(13, 79, 139, 0.15) 0 1px, transparent 1px 22px);
    content: "";
    opacity: 0.58;
    pointer-events: none;
}

.whi-salutogenesis-map::after {
    position: absolute;
    inset: 50% 8% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 79, 139, 0.22), transparent);
    content: "";
    pointer-events: none;
}

.whi-salutogenesis-center {
    position: relative;
    z-index: 2;
    display: grid;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    justify-self: center;
    place-items: center;
    width: clamp(190px, 20vw, 250px);
    min-height: clamp(190px, 20vw, 250px);
    padding: 1.35rem;
    border: 1px solid rgba(105, 199, 232, 0.48);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 24%, rgba(105, 199, 232, 0.25), transparent 48%),
        #0d4f8b;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 32px 90px rgba(13, 79, 139, 0.22);
}

.whi-salutogenesis-center::before,
.whi-salutogenesis-center::after {
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(13, 79, 139, 0.18);
    border-radius: 50%;
    content: "";
}

.whi-salutogenesis-center::after {
    inset: -36px;
    opacity: 0.52;
}

.whi-salutogenesis-center span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    margin-bottom: 0.45rem;
}

.whi-salutogenesis-center svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.whi-salutogenesis-center h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.whi-salutogenesis-center p {
    max-width: 170px;
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    line-height: 1.45;
}

.whi-salutogenesis-node {
    position: relative;
    z-index: 3;
    max-width: 310px;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.76);
}

.whi-salutogenesis-node-1,
.whi-salutogenesis-node-3 {
    justify-self: end;
    text-align: right;
}

.whi-salutogenesis-node-2,
.whi-salutogenesis-node-4 {
    justify-self: start;
}

.whi-salutogenesis-node-1 {
    grid-column: 1;
    grid-row: 1;
}

.whi-salutogenesis-node-2 {
    grid-column: 3;
    grid-row: 1;
}

.whi-salutogenesis-node-3 {
    grid-column: 1;
    grid-row: 2;
}

.whi-salutogenesis-node-4 {
    grid-column: 3;
    grid-row: 2;
}

.whi-salutogenesis-node .whi-card-icon {
    margin-bottom: 0.8rem;
}

.whi-salutogenesis-node-1 .whi-card-icon,
.whi-salutogenesis-node-3 .whi-card-icon {
    margin-left: auto;
}

.whi-salutogenesis-node h3 {
    margin: 0 0 0.45rem;
    color: #102033;
    font-size: 1.02rem;
}

.whi-salutogenesis-node p {
    margin: 0;
    color: #5c7187;
    font-size: 0.94rem;
    line-height: 1.65;
}

.whi-story-page-home.whi-story-index-5.whi-credibility {
    background: #ffffff;
    text-align: center;
}

.whi-story-page-home.whi-story-index-5 .whi-logo-row {
    grid-template-columns: repeat(6, minmax(110px, 1fr));
    align-items: center;
}

.whi-story-page-home.whi-story-index-5 .whi-logo-row span {
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #102033;
    font-weight: 800;
}

.whi-story-page-home.whi-story-index-7.whi-story-cta {
    overflow: hidden;
    background: #061f3a;
    color: #ffffff;
}

.whi-story-page-home.whi-story-index-7 .whi-story-cta-grid {
    position: relative;
    display: block;
    min-height: clamp(360px, 42vw, 520px);
    padding: clamp(3rem, 7vw, 5.4rem) 0;
}

.whi-story-page-home.whi-story-index-7 .whi-story-cta-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
    border-radius: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.38;
    filter: saturate(0.88) contrast(1.08) brightness(0.72);
}

.whi-story-page-home.whi-story-index-7 .whi-story-cta-grid::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 18, 36, 0.92), rgba(3, 18, 36, 0.72) 45%, rgba(3, 18, 36, 0.3)),
        repeating-radial-gradient(circle at 88% 35%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 18px);
    content: "";
    pointer-events: none;
}

.whi-story-page-home.whi-story-index-7 .whi-story-cta-copy {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.whi-story-page-home.whi-story-index-7 h2,
.whi-story-page-home.whi-story-index-7 p {
    color: #ffffff;
}

.whi-story-page-home.whi-story-index-7 .whi-button-primary {
    background: #ffffff;
    color: #061f3a;
}

.whi-skillzu-hero {
    min-height: clamp(620px, 84svh, 820px);
    background: #061f3a;
}

.whi-skillzu-hero::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 18, 36, 0.86) 0%, rgba(3, 18, 36, 0.7) 42%, rgba(3, 18, 36, 0.22) 72%, rgba(3, 18, 36, 0.58) 100%),
        radial-gradient(circle at 20% 30%, rgba(105, 199, 232, 0.22), transparent 24rem),
        var(--whi-story-hero-image) center / cover no-repeat;
    filter: saturate(1.02) contrast(1.04) brightness(0.78);
    opacity: 1;
}

.whi-skillzu-hero::after {
    background:
        repeating-radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(4, 13, 22, 0.16));
    opacity: 0.74;
}

.whi-skillzu-hero .whi-narrative-hero-inner {
    grid-template-columns: minmax(0, 700px) 1fr;
    min-height: clamp(500px, 64svh, 680px);
}

.whi-skillzu-hero .whi-narrative-hero-copy {
    max-width: 700px;
    padding: clamp(1.35rem, 3vw, 2.2rem);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 4px solid var(--whi-color-accent, #69c7e8);
    background: rgba(5, 31, 59, 0.34);
    color: #ffffff;
    backdrop-filter: blur(14px);
    box-shadow: 0 34px 90px rgba(1, 20, 42, 0.28);
}

.whi-skillzu-hero .whi-narrative-hero-copy .whi-eyebrow,
.whi-skillzu-hero .whi-narrative-hero-copy h1,
.whi-skillzu-hero .whi-narrative-hero-copy .whi-story-lede {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.whi-skillzu-hero .whi-narrative-hero-copy h1 {
    max-width: 680px;
    font-size: clamp(3rem, 5.2vw, 5rem);
}

.whi-skillzu-hero .whi-narrative-hero-copy .whi-story-lede {
    max-width: 620px;
    opacity: 0.88;
}

.whi-skillzu-hero .whi-hero-actions {
    display: flex;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
}

.whi-skillzu-hero .whi-hero-actions .whi-button {
    width: auto;
    min-width: 170px;
}

.whi-skillzu-hero .whi-button-primary {
    background: #ffffff;
    color: #061f3a;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.whi-skillzu-hero .whi-button-ghost {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.whi-skillzu-body {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(105, 199, 232, 0.16), transparent 24rem),
        linear-gradient(180deg, #ffffff, rgba(243, 248, 253, 0.9));
}

.whi-skillzu-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.whi-skillzu-grid.no-content {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
}

.whi-skillzu-content {
    min-width: 0;
    padding: clamp(1.5rem, 4vw, 3.2rem);
    border-left: 4px solid var(--whi-color-secondary, #1f86c8);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
    box-shadow: 0 24px 70px rgba(13, 79, 139, 0.09);
}

.whi-skillzu-content .entry-content > *:first-child {
    margin-top: 0;
}

.whi-skillzu-content .entry-content h2,
.whi-skillzu-content .entry-content h3 {
    max-width: 780px;
}

.whi-skillzu-content .entry-content p,
.whi-skillzu-content .entry-content li {
    color: var(--whi-color-muted, #5c7187);
    font-size: clamp(1rem, 1.28vw, 1.1rem);
    line-height: 1.82;
}

.whi-skillzu-content .entry-content a {
    font-weight: 800;
}

.whi-skillzu-form-card {
    position: sticky;
    top: calc(92px + 1rem);
    overflow: hidden;
    border-radius: 8px 34px 8px 34px;
}

.admin-bar .whi-skillzu-form-card {
    top: calc(124px + 1rem);
}

@media (max-width: 900px) {
    .whi-dynamic-hero.whi-story-page-home {
        min-height: auto;
        padding: 4rem 0;
    }

    .whi-dynamic-hero.whi-story-page-home .whi-narrative-hero-inner,
    .whi-recognition-grid-has-visual,
    .whi-skillzu-hero .whi-narrative-hero-inner,
    .whi-skillzu-grid {
        grid-template-columns: 1fr;
    }

    .whi-profile-gateway-panel {
        width: 100%;
        justify-self: stretch;
    }

    .whi-dynamic-hero.whi-story-page-home .whi-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .whi-dynamic-hero.whi-story-page-home .whi-hero-actions .whi-button {
        width: 100%;
    }

    .whi-profile-card,
    .whi-profile-card-primary {
        min-height: 210px;
    }

    .whi-profile-card-title {
        font-size: clamp(1.45rem, 8vw, 2.2rem);
    }

    .whi-skillzu-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .whi-skillzu-hero .whi-narrative-hero-copy h1 {
        font-size: clamp(2.4rem, 10vw, 3.4rem);
    }

    .whi-skillzu-hero .whi-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .whi-skillzu-hero .whi-hero-actions .whi-button {
        width: 100%;
    }

    .whi-skillzu-content {
        padding: 1.35rem;
    }

    .whi-skillzu-form-card {
        position: relative;
        top: auto;
    }

    .whi-salutogenesis-map {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .whi-salutogenesis-map::before,
    .whi-salutogenesis-map::after {
        display: none;
    }

    .whi-salutogenesis-center {
        position: relative;
        top: auto;
        left: auto;
        order: -1;
        margin: 1rem auto 2rem;
        transform: none;
    }

    .whi-salutogenesis-node,
    .whi-salutogenesis-node-1,
    .whi-salutogenesis-node-2,
    .whi-salutogenesis-node-3,
    .whi-salutogenesis-node-4 {
        max-width: none;
        text-align: left;
    }

    .whi-salutogenesis-node-1 .whi-card-icon,
    .whi-salutogenesis-node-3 .whi-card-icon {
        margin-left: 0;
    }

    .whi-story-page-home.whi-story-index-5 .whi-logo-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    html.whi-js .whi-reveal,
    html.whi-js .whi-reveal.whi-reveal-media {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .whi-dynamic-hero-video {
        transform: none !important;
    }
}
