/* ========================================================================
   WHC Featured-Image Cinematic Hero
   ======================================================================== */

.whc-fih,
.whc-fih *,
.whc-fih *::before,
.whc-fih *::after {
    box-sizing: border-box;
}

.whc-fih {
    --whc-fih-navy: #001e42;
    --whc-fih-ink: #071b27;
    --whc-fih-white: #ffffff;
    --whc-fih-muted-light: rgba(255,255,255,0.84);
    --whc-fih-muted-dark: #4d5d6b;
    --whc-fih-accent: #e68f91;
    --whc-fih-accent-rgb: 230, 143, 145;
    --whc-fih-accent-deep: #c96f73;
    --whc-fih-accent-soft: #ffd0ca;
    --whc-fih-gold: #f4c675;
    --whc-fih-gold-rgb: 244, 198, 117;
    --whc-fih-parallax-x: 0px;
    --whc-fih-parallax-y: 0px;
    --whc-fih-label-x: 0px;
    --whc-fih-label-y: 0px;
    --whc-fih-image-zoom: 1.02;
    --whc-fih-image-zoom-cinematic-end: 1.055;
    --whc-fih-image-zoom-subtle-end: 1.038;
    --whc-fih-image-zoom-mobile: 1.06;
    --whc-fih-image-zoom-mobile-cinematic-end: 1.105;
    --whc-fih-image-zoom-mobile-subtle-end: 1.082;
    --whc-fih-labels-top-mobile: 110px;
    position: relative;
    top: -1px;
    isolation: isolate;
    width: 100%;
    max-width: none;
    margin: 0 0 -1px;
    overflow: hidden;
    color: var(--whc-fih-white);
    background: #0b2832;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
}

.whc-fih--height-immersive {
    min-height: clamp(740px, 88svh, 940px);
}

.whc-fih--height-standard {
    min-height: clamp(650px, 76svh, 820px);
}

.whc-fih--height-compact {
    min-height: clamp(570px, 68svh, 720px);
}

/* Accent moods. The featured image remains the emotional scene. */
.whc-fih--accent-gold {
    --whc-fih-accent: #e1b35f;
    --whc-fih-accent-rgb: 225, 179, 95;
    --whc-fih-accent-deep: #bf8d35;
    --whc-fih-accent-soft: #ffe0a0;
    --whc-fih-gold: #f4c675;
    --whc-fih-gold-rgb: 244, 198, 117;
}

.whc-fih--accent-sage {
    --whc-fih-accent: #98b99c;
    --whc-fih-accent-rgb: 152, 185, 156;
    --whc-fih-accent-deep: #719478;
    --whc-fih-accent-soft: #d4e8d7;
    --whc-fih-gold: #f0c987;
    --whc-fih-gold-rgb: 240, 201, 135;
}

.whc-fih--accent-blue {
    --whc-fih-accent: #75b9d6;
    --whc-fih-accent-rgb: 117, 185, 214;
    --whc-fih-accent-deep: #4d97b8;
    --whc-fih-accent-soft: #c8e8f4;
    --whc-fih-gold: #f0c987;
    --whc-fih-gold-rgb: 240, 201, 135;
}

.whc-fih--accent-pearl {
    --whc-fih-accent: #e8d9d3;
    --whc-fih-accent-rgb: 232, 217, 211;
    --whc-fih-accent-deep: #b99b92;
    --whc-fih-accent-soft: #fff4ef;
    --whc-fih-gold: #f0c987;
    --whc-fih-gold-rgb: 240, 201, 135;
}

/* ------------------------------------------------------------------------
   Image and atmosphere
   ------------------------------------------------------------------------ */

.whc-fih__media,
.whc-fih__image-stage,
.whc-fih__image-vignette,
.whc-fih__light-sweep,
.whc-fih__overlay {
    position: absolute;
    inset: 0;
}

.whc-fih__media {
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 70% 24%, rgba(var(--whc-fih-accent-rgb), 0.18), transparent 30%),
        linear-gradient(135deg, #183f4c 0%, #0b2530 52%, #05141b 100%);
}

.whc-fih__image-stage {
    inset: -2.25%;
    transform: translate3d(var(--whc-fih-parallax-x), var(--whc-fih-parallax-y), 0);
    will-change: transform;
    transition: transform 340ms cubic-bezier(.22,.61,.36,1);
}

.whc-fih__image,
.whc-fih__image-fallback {
    display: block;
    width: 100%;
    height: 100%;
}

.whc-fih__image {
    object-fit: cover;
    object-position: var(--whc-fih-image-position, 50% 50%);
    transform: scale(var(--whc-fih-image-zoom, 1.02));
    transform-origin: center;
    user-select: none;
    -webkit-user-drag: none;
    backface-visibility: hidden;
}

.whc-fih__image-fallback {
    background:
        radial-gradient(circle at 66% 24%, rgba(var(--whc-fih-accent-rgb), 0.38), transparent 27%),
        radial-gradient(circle at 62% 66%, rgba(var(--whc-fih-gold-rgb), 0.18), transparent 24%),
        linear-gradient(135deg, #17424f 0%, #0a2934 48%, #04151d 100%);
}

.whc-fih--motion-cinematic .whc-fih__image {
    animation: whcFIHImageCinematic 10.5s cubic-bezier(.2,.65,.25,1) 0.05s both;
}

.whc-fih--motion-subtle .whc-fih__image {
    animation: whcFIHImageSubtle 9.5s ease-out 0.05s both;
}

.whc-fih--motion-none .whc-fih__image {
    animation: none;
    transform: scale(var(--whc-fih-image-zoom, 1.02));
}

.whc-fih__image-vignette {
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 42%, transparent 24%, rgba(0, 13, 18, 0.10) 62%, rgba(0, 13, 18, 0.36) 100%),
        linear-gradient(180deg, rgba(1, 15, 20, 0.15) 0%, transparent 30%, rgba(1, 15, 20, 0.14) 66%, rgba(1, 15, 20, 0.48) 100%);
}

.whc-fih__light-sweep {
    z-index: 2;
    left: -60%;
    width: 52%;
    opacity: 0;
    transform: skewX(-13deg) translate3d(0,0,0);
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.02) 20%,
        rgba(var(--whc-fih-gold-rgb),0.14) 49%,
        rgba(255,255,255,0.05) 66%,
        transparent 100%
    );
    mix-blend-mode: screen;
}

.whc-fih--motion-cinematic .whc-fih__light-sweep,
.whc-fih--motion-subtle .whc-fih__light-sweep {
    animation: whcFIHLightSweep 7.8s cubic-bezier(.22,.61,.36,1) 0.8s 1 both;
}

.whc-fih__mote {
    position: absolute;
    z-index: 3;
    display: block;
    width: var(--whc-fih-mote-size, 22px);
    height: var(--whc-fih-mote-size, 22px);
    border-radius: 50%;
    opacity: 0;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.95) 0%,
        rgba(var(--whc-fih-gold-rgb),0.72) 13%,
        rgba(var(--whc-fih-gold-rgb),0.28) 34%,
        transparent 72%
    );
    box-shadow: 0 0 28px rgba(var(--whc-fih-gold-rgb),0.18);
    pointer-events: none;
}

.whc-fih__mote--1 { --whc-fih-mote-size: 17px; left: 57%; top: 66%; animation-delay: 0.9s; }
.whc-fih__mote--2 { --whc-fih-mote-size: 25px; left: 73%; top: 73%; animation-delay: 3.2s; }
.whc-fih__mote--3 { --whc-fih-mote-size: 13px; left: 84%; top: 40%; animation-delay: 5.4s; }

.whc-fih--motion-cinematic .whc-fih__mote {
    animation-name: whcFIHMoteRise;
    animation-duration: 10.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.whc-fih--motion-subtle .whc-fih__mote {
    animation-name: whcFIHMoteGlow;
    animation-duration: 7s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.whc-fih--motion-none .whc-fih__mote {
    display: none;
}

/* ------------------------------------------------------------------------
   Readability overlays
   ------------------------------------------------------------------------ */

.whc-fih__overlay {
    z-index: 2;
    pointer-events: none;
}

.whc-fih--overlay-dark-left .whc-fih__overlay {
    background:
        linear-gradient(90deg, rgba(2,21,29,0.94) 0%, rgba(2,21,29,0.80) 30%, rgba(2,21,29,0.44) 52%, rgba(2,21,29,0.12) 76%, rgba(2,21,29,0.06) 100%),
        linear-gradient(0deg, rgba(1,16,22,0.70) 0%, transparent 43%);
}

.whc-fih--overlay-dark-right .whc-fih__overlay {
    background:
        linear-gradient(270deg, rgba(2,21,29,0.94) 0%, rgba(2,21,29,0.80) 30%, rgba(2,21,29,0.44) 52%, rgba(2,21,29,0.12) 76%, rgba(2,21,29,0.06) 100%),
        linear-gradient(0deg, rgba(1,16,22,0.70) 0%, transparent 43%);
}

.whc-fih--overlay-dark-full .whc-fih__overlay {
    background:
        linear-gradient(90deg, rgba(2,21,29,0.72), rgba(2,21,29,0.48), rgba(2,21,29,0.66)),
        linear-gradient(0deg, rgba(1,16,22,0.66) 0%, transparent 48%);
}

.whc-fih--overlay-light-left .whc-fih__overlay {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 31%, rgba(255,255,255,0.52) 54%, rgba(255,255,255,0.10) 78%, transparent 100%),
        linear-gradient(0deg, rgba(255,255,255,0.72) 0%, transparent 42%);
}

.whc-fih--overlay-light-right .whc-fih__overlay {
    background:
        linear-gradient(270deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 31%, rgba(255,255,255,0.52) 54%, rgba(255,255,255,0.10) 78%, transparent 100%),
        linear-gradient(0deg, rgba(255,255,255,0.72) 0%, transparent 42%);
}

.whc-fih--overlay-light-full .whc-fih__overlay {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58), rgba(255,255,255,0.78)),
        linear-gradient(0deg, rgba(255,255,255,0.74) 0%, transparent 46%);
}

.whc-fih--overlay-balanced .whc-fih__overlay {
    background:
        linear-gradient(90deg, rgba(2,21,29,0.62) 0%, rgba(2,21,29,0.24) 43%, rgba(2,21,29,0.20) 67%, rgba(2,21,29,0.40) 100%),
        linear-gradient(0deg, rgba(1,16,22,0.82) 0%, rgba(1,16,22,0.26) 42%, transparent 70%);
}

/* ------------------------------------------------------------------------
   Main conversion content
   ------------------------------------------------------------------------ */

.whc-fih__inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: inherit;
    padding: clamp(56px, 6.2vw, 96px) clamp(34px, 5vw, 80px) clamp(108px, 10vw, 132px);
}

.whc-fih__content {
    width: min(55%, 680px);
    color: inherit;
}

.whc-fih--content-left .whc-fih__content {
    margin-right: auto;
    text-align: left;
}

.whc-fih--content-right .whc-fih__content {
    margin-left: auto;
    text-align: left;
}

.whc-fih--content-center .whc-fih__inner {
    justify-content: center;
}

.whc-fih--content-center .whc-fih__content {
    width: min(82%, 820px);
    text-align: center;
}

.whc-fih--tone-light {
    color: #ffffff;
}

.whc-fih--tone-dark {
    color: var(--whc-fih-ink);
}

.whc-fih__eyebrow {
    margin: 0 0 22px;
    color: var(--whc-fih-accent-soft);
    font-size: clamp(0.76rem, 0.95vw, 0.91rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18);
    animation: whcFIHContentIn 0.52s ease-out 0.02s both;
}

.whc-fih--tone-dark .whc-fih__eyebrow {
    color: var(--whc-fih-accent-deep);
    text-shadow: none;
}

.whc-fih__title {
    max-width: 13ch;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: var(--whc-display-font, Georgia, 'Times New Roman', serif);
    font-size: clamp(3rem, 5.15vw, 5.35rem);
    font-weight: 400;
    line-height: 0.99;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 3px 24px rgba(0,0,0,0.22);
    animation: whcFIHContentIn 0.58s ease-out 0.08s both;
}

.whc-fih--tone-dark .whc-fih__title {
    text-shadow: none;
}

.whc-fih--long-title .whc-fih__title {
    max-width: 15ch;
    font-size: clamp(2.65rem, 4.45vw, 4.55rem);
    line-height: 1.02;
}

.whc-fih--content-center .whc-fih__title {
    max-width: 15ch;
    margin-inline: auto;
}

.whc-fih__title-rule {
    display: block;
    width: 54px;
    height: 2px;
    margin: 28px 0 27px;
    background: linear-gradient(90deg, var(--whc-fih-accent), var(--whc-fih-accent-soft));
    border-radius: 99px;
    box-shadow: 0 0 20px rgba(var(--whc-fih-accent-rgb),0.26);
    transform-origin: left;
    animation: whcFIHRuleIn 0.58s ease-out 0.18s both;
}

.whc-fih--content-center .whc-fih__title-rule {
    margin-inline: auto;
    transform-origin: center;
}

.whc-fih__tagline {
    max-width: 48ch;
    margin: 0;
    color: var(--whc-fih-muted-light);
    font-size: clamp(1rem, 1.35vw, 1.28rem);
    font-weight: 430;
    line-height: 1.65;
    text-shadow: 0 2px 18px rgba(0,0,0,0.24);
    text-wrap: pretty;
    animation: whcFIHContentIn 0.58s ease-out 0.20s both;
}

.whc-fih--tone-dark .whc-fih__tagline {
    color: var(--whc-fih-muted-dark);
    text-shadow: none;
}

.whc-fih--content-center .whc-fih__tagline {
    margin-inline: auto;
}

.whc-fih__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    animation: whcFIHContentIn 0.58s ease-out 0.29s both;
}

.whc-fih--content-center .whc-fih__actions {
    justify-content: center;
}

.whc-fih__action {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 15px 24px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: inherit;
    font-size: clamp(0.91rem, 1vw, 1rem);
    font-weight: 650;
    line-height: 1.25;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.whc-fih__action--primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--whc-fih-accent) 0%, var(--whc-fih-accent-deep) 100%);
    border-color: rgba(255,255,255,0.20);
    box-shadow: 0 14px 34px rgba(0,0,0,0.20), 0 0 26px rgba(var(--whc-fih-accent-rgb),0.14);
}

.whc-fih__action--primary::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -40%;
    bottom: -40%;
    left: -46%;
    width: 28%;
    opacity: 0;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
    animation: whcFIHButtonSheen 1.15s ease-out 1.35s 1 both;
}

.whc-fih__action--secondary {
    color: #ffffff !important;
    background: rgba(2,21,29,0.24);
    border-color: rgba(255,255,255,0.56);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.whc-fih--tone-dark .whc-fih__action--secondary {
    color: var(--whc-fih-ink) !important;
    background: rgba(255,255,255,0.58);
    border-color: rgba(0,30,66,0.32);
}

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

.whc-fih__action--primary:hover {
    box-shadow: 0 18px 38px rgba(0,0,0,0.25), 0 0 30px rgba(var(--whc-fih-accent-rgb),0.20);
}

.whc-fih__action--secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.84);
}

.whc-fih--tone-dark .whc-fih__action--secondary:hover {
    background: rgba(255,255,255,0.82);
    border-color: rgba(0,30,66,0.48);
}

.whc-fih__action:focus-visible,
.whc-fih__label-link:focus-visible {
    outline: 3px solid rgba(var(--whc-fih-accent-rgb),0.60);
    outline-offset: 4px;
}

.whc-fih__action-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    transition: transform 220ms ease;
}

.whc-fih__action:hover .whc-fih__action-icon {
    transform: translateX(3px);
}

/* ------------------------------------------------------------------------
   Trust evidence
   ------------------------------------------------------------------------ */

.whc-fih__proofs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 700px);
    margin: 38px 0 0;
    padding: 52px 0 0 !important;
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.20);
    animation: whcFIHContentIn 0.58s ease-out 0.40s both;
}

.whc-fih--tone-dark .whc-fih__proofs {
    border-top-color: rgba(0,30,66,0.16);
}

.whc-fih--content-center .whc-fih__proofs {
    margin-inline: auto;
}

.whc-fih__proof {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 11px;
    align-items: center;
    min-width: 0;
    padding: 0 18px;
    color: inherit;
    border-right: 1px solid rgba(255,255,255,0.16);
}

.whc-fih__proof:first-child {
    padding-left: 0;
}

.whc-fih__proof:last-child {
    padding-right: 0;
    border-right: none;
}

.whc-fih--tone-dark .whc-fih__proof {
    border-right-color: rgba(0,30,66,0.14);
}

.whc-fih__proof-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--whc-fih-gold);
}

.whc-fih__proof-icon {
    width: 29px;
    height: 29px;
}

.whc-fih__proof-copy {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.whc-fih__proof-copy strong,
.whc-fih__proof-copy span {
    display: block;
}

.whc-fih__proof-copy strong {
    color: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.whc-fih__proof-copy span {
    margin-top: 0;
    color: var(--whc-fih-muted-light);
    font-size: 0.76rem;
    line-height: 1.4;
}

.whc-fih--tone-dark .whc-fih__proof-copy span {
    color: var(--whc-fih-muted-dark);
}

/* ------------------------------------------------------------------------
   Page-specific health labels
   ------------------------------------------------------------------------ */

.whc-fih__labels-wrap {
    position: absolute;
    z-index: 6;
    top: 18%;
    width: min(23vw, 270px);
    transform: translate3d(var(--whc-fih-label-x), var(--whc-fih-label-y), 0);
    transition: transform 360ms cubic-bezier(.22,.61,.36,1);
    pointer-events: none;
}

.whc-fih--labels-right .whc-fih__labels-wrap {
    right: clamp(22px, 4vw, 62px);
}

.whc-fih--labels-left .whc-fih__labels-wrap {
    left: clamp(22px, 4vw, 62px);
}

.whc-fih--labels-hidden .whc-fih__labels-wrap {
    display: none;
}

.whc-fih__labels-glow {
    position: absolute;
    z-index: -1;
    top: 4%;
    left: 20%;
    width: 72%;
    height: 88%;
    opacity: 0.42;
    background: radial-gradient(ellipse, rgba(var(--whc-fih-gold-rgb),0.18), transparent 68%);
    animation: whcFIHLabelGlow 8.5s ease-in-out 1.4s infinite;
}

.whc-fih__labels {
    display: flex;
    flex-direction: column;
    gap: clamp(13px, 1.6vw, 24px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.whc-fih__label {
    --whc-fih-label-intro-delay: 0.34s;
    --whc-fih-label-float-duration: 12.8s;
    --whc-fih-label-float-delay: 1.45s;
    --whc-fih-label-x1: 6px;
    --whc-fih-label-y1: -3px;
    --whc-fih-label-r1: 0.68deg;
    --whc-fih-label-x2: 2px;
    --whc-fih-label-y2: -6px;
    --whc-fih-label-r2: -0.38deg;
    --whc-fih-label-x3: -4px;
    --whc-fih-label-y3: -2px;
    --whc-fih-label-r3: 0.30deg;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateX(18px) translateY(5px);
    animation: whcFIHLabelIn 0.64s cubic-bezier(.22,1,.36,1) var(--whc-fih-label-intro-delay) both;
    pointer-events: auto;
}

.whc-fih--labels-left .whc-fih__label {
    transform: translateX(-18px) translateY(5px);
    animation-name: whcFIHLabelInLeft;
}

.whc-fih__label-float {
    position: relative;
    display: block;
    width: 100%;
    transform-origin: 50% 50%;
    animation: whcFIHLabelFloatArc var(--whc-fih-label-float-duration) cubic-bezier(.45,.05,.55,.95) var(--whc-fih-label-float-delay) infinite;
    will-change: transform;
}

.whc-fih__label--1 {
    --whc-fih-label-intro-delay: 0.34s;
    --whc-fih-label-float-duration: 12.8s;
    --whc-fih-label-float-delay: 1.45s;
}

.whc-fih__label--2 {
    --whc-fih-label-intro-delay: 0.47s;
    --whc-fih-label-float-duration: 14.6s;
    --whc-fih-label-float-delay: 1.70s;
    --whc-fih-label-x1: -6px;
    --whc-fih-label-y1: 3px;
    --whc-fih-label-r1: -0.68deg;
    --whc-fih-label-x2: -2px;
    --whc-fih-label-y2: 6px;
    --whc-fih-label-r2: 0.38deg;
    --whc-fih-label-x3: 4px;
    --whc-fih-label-y3: 2px;
    --whc-fih-label-r3: -0.28deg;
}

.whc-fih__label--3 {
    --whc-fih-label-intro-delay: 0.60s;
    --whc-fih-label-float-duration: 11.9s;
    --whc-fih-label-float-delay: 1.95s;
    --whc-fih-label-x1: 5px;
    --whc-fih-label-y1: 4px;
    --whc-fih-label-r1: 0.58deg;
    --whc-fih-label-x2: -1px;
    --whc-fih-label-y2: 7px;
    --whc-fih-label-r2: -0.46deg;
    --whc-fih-label-x3: -5px;
    --whc-fih-label-y3: 1px;
    --whc-fih-label-r3: 0.30deg;
}

.whc-fih__label--4 {
    --whc-fih-label-intro-delay: 0.73s;
    --whc-fih-label-float-duration: 15.4s;
    --whc-fih-label-float-delay: 2.20s;
    --whc-fih-label-x1: -5px;
    --whc-fih-label-y1: -4px;
    --whc-fih-label-r1: -0.58deg;
    --whc-fih-label-x2: 2px;
    --whc-fih-label-y2: -7px;
    --whc-fih-label-r2: 0.38deg;
    --whc-fih-label-x3: 6px;
    --whc-fih-label-y3: -1px;
    --whc-fih-label-r3: -0.25deg;
}

.whc-fih__label--5 {
    --whc-fih-label-intro-delay: 0.86s;
    --whc-fih-label-float-duration: 13.7s;
    --whc-fih-label-float-delay: 2.45s;
    --whc-fih-label-x1: 7px;
    --whc-fih-label-y1: 2px;
    --whc-fih-label-r1: 0.72deg;
    --whc-fih-label-x2: 3px;
    --whc-fih-label-y2: 6px;
    --whc-fih-label-r2: -0.42deg;
    --whc-fih-label-x3: -4px;
    --whc-fih-label-y3: 4px;
    --whc-fih-label-r3: 0.26deg;
}

/* The subtle setting keeps the same organic path with about half the travel. */
.whc-fih--motion-subtle .whc-fih__label--1 {
    --whc-fih-label-float-duration: 15.5s;
    --whc-fih-label-x1: 3px; --whc-fih-label-y1: -2px; --whc-fih-label-r1: 0.30deg;
    --whc-fih-label-x2: 1px; --whc-fih-label-y2: -3px; --whc-fih-label-r2: -0.18deg;
    --whc-fih-label-x3: -2px; --whc-fih-label-y3: -1px; --whc-fih-label-r3: 0.14deg;
}

.whc-fih--motion-subtle .whc-fih__label--2 {
    --whc-fih-label-float-duration: 17s;
    --whc-fih-label-x1: -3px; --whc-fih-label-y1: 2px; --whc-fih-label-r1: -0.30deg;
    --whc-fih-label-x2: -1px; --whc-fih-label-y2: 3px; --whc-fih-label-r2: 0.18deg;
    --whc-fih-label-x3: 2px; --whc-fih-label-y3: 1px; --whc-fih-label-r3: -0.14deg;
}

.whc-fih--motion-subtle .whc-fih__label--3 {
    --whc-fih-label-float-duration: 14.8s;
    --whc-fih-label-x1: 3px; --whc-fih-label-y1: 2px; --whc-fih-label-r1: 0.26deg;
    --whc-fih-label-x2: 0px; --whc-fih-label-y2: 4px; --whc-fih-label-r2: -0.20deg;
    --whc-fih-label-x3: -2px; --whc-fih-label-y3: 1px; --whc-fih-label-r3: 0.12deg;
}

.whc-fih--motion-subtle .whc-fih__label--4 {
    --whc-fih-label-float-duration: 18s;
    --whc-fih-label-x1: -3px; --whc-fih-label-y1: -2px; --whc-fih-label-r1: -0.26deg;
    --whc-fih-label-x2: 1px; --whc-fih-label-y2: -4px; --whc-fih-label-r2: 0.18deg;
    --whc-fih-label-x3: 3px; --whc-fih-label-y3: -1px; --whc-fih-label-r3: -0.12deg;
}

.whc-fih--motion-subtle .whc-fih__label--5 {
    --whc-fih-label-float-duration: 16.3s;
    --whc-fih-label-x1: 3px; --whc-fih-label-y1: 1px; --whc-fih-label-r1: 0.30deg;
    --whc-fih-label-x2: 2px; --whc-fih-label-y2: 3px; --whc-fih-label-r2: -0.18deg;
    --whc-fih-label-x3: -2px; --whc-fih-label-y3: 2px; --whc-fih-label-r3: 0.12deg;
}

.whc-fih--labels-right .whc-fih__label--2,
.whc-fih--labels-right .whc-fih__label--4 {
    margin-left: -12%;
}

.whc-fih--labels-right .whc-fih__label--3 {
    margin-left: 5%;
}

.whc-fih--labels-left .whc-fih__label--2,
.whc-fih--labels-left .whc-fih__label--4 {
    margin-left: 12%;
}

.whc-fih--labels-left .whc-fih__label--3 {
    margin-left: -5%;
}

.whc-fih__label-node {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: -7px;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--whc-fih-gold);
    box-shadow: 0 0 0 5px rgba(var(--whc-fih-gold-rgb),0.08), 0 0 19px rgba(var(--whc-fih-gold-rgb),0.86);
    animation: whcFIHNodePulse 4.8s ease-in-out infinite;
    pointer-events: none;
}

.whc-fih--labels-left .whc-fih__label-node {
    right: -7px;
    left: auto;
}

.whc-fih__label-inner {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 54px;
    padding: 12px 18px;
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.08) 100%);
    border: 1px solid rgba(255,255,255,0.34);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.18);
    font-family: inherit;
    font-size: clamp(0.84rem, 1.05vw, 1rem);
    font-weight: 520;
    line-height: 1.25;
    text-align: left;
    text-decoration: none !important;
}

button.whc-fih__label-inner {
    cursor: pointer;
}

.whc-fih__label-link {
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.whc-fih__label-link:hover,
.whc-fih__label-link:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255,255,255,0.23) 0%, rgba(255,255,255,0.12) 100%);
    border-color: rgba(255,255,255,0.54);
}

.whc-fih__label:hover .whc-fih__label-float,
.whc-fih__label:focus-within .whc-fih__label-float,
.whc-fih__label:hover .whc-fih__label-node,
.whc-fih__label:focus-within .whc-fih__label-node {
    animation-play-state: paused;
}

.whc-fih__label-icon {
    width: 22px;
    height: 22px;
    color: var(--whc-fih-accent-soft);
    flex: 0 0 auto;
}

.whc-fih__label-text {
    min-width: 0;
}

.whc-fih--motion-none .whc-fih__label {
    opacity: 1;
    transform: none;
    animation: none;
}

.whc-fih--motion-none .whc-fih__label-float,
.whc-fih--motion-none .whc-fih__label-node {
    animation: none;
    will-change: auto;
}

/* ------------------------------------------------------------------------
   Scroll prompt
   ------------------------------------------------------------------------ */

.whc-fih__scroll {
    position: absolute;
    z-index: 7;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.whc-fih__action--scroll {
    flex-direction: column-reverse;
    gap: 7px;
    min-height: auto;
    padding: 4px 10px;
    color: rgba(255,255,255,0.86) !important;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.34);
    animation: whcFIHScrollIn 0.8s ease-out 1.1s both;
}

.whc-fih--tone-dark .whc-fih__action--scroll {
    color: rgba(0,30,66,0.76) !important;
    text-shadow: none;
}

.whc-fih__action--scroll .whc-fih__action-icon {
    width: 24px;
    height: 24px;
    animation: whcFIHScrollBob 2.7s ease-in-out 2s infinite;
}

.whc-fih__action--scroll:hover {
    transform: none;
    opacity: 1;
}

.whc-fih__action--scroll:hover .whc-fih__action-icon {
    transform: translateY(3px);
}

/* ------------------------------------------------------------------------
   Pause and no-image safeguards
   ------------------------------------------------------------------------ */

.whc-fih.is-paused .whc-fih__image,
.whc-fih.is-paused .whc-fih__light-sweep,
.whc-fih.is-paused .whc-fih__mote,
.whc-fih.is-paused .whc-fih__labels-glow,
.whc-fih.is-paused .whc-fih__label,
.whc-fih.is-paused .whc-fih__label-float,
.whc-fih.is-paused .whc-fih__label-node,
.whc-fih.is-paused .whc-fih__action--scroll .whc-fih__action-icon {
    animation-play-state: paused !important;
}

.whc-fih--no-image .whc-fih__image-vignette {
    opacity: 0.68;
}

/* ------------------------------------------------------------------------
   Responsive behaviour
   ------------------------------------------------------------------------ */

@media (max-width: 1180px) {
    .whc-fih__content {
        width: min(59%, 640px);
    }

    .whc-fih__labels-wrap {
        width: min(24vw, 240px);
    }

    .whc-fih__title {
        font-size: clamp(2.8rem, 5.3vw, 4.7rem);
    }

    .whc-fih__proof {
        padding-inline: 13px;
    }
}

@media (max-width: 940px) {
    .whc-fih__inner {
        padding-inline: 34px;
    }

    .whc-fih__content {
        width: min(64%, 610px);
    }

    .whc-fih__labels-wrap {
        top: 15%;
        width: 230px;
    }

    .whc-fih__label-inner {
        min-height: 48px;
        padding: 10px 15px;
        font-size: 0.86rem;
    }

    .whc-fih__label-icon {
        width: 19px;
        height: 19px;
    }
}

@media (max-width: 767px) {
    .whc-fih {
        border-radius: 0;
    }

    .whc-fih--height-immersive {
        min-height: max(920px, 108svh);
    }

    .whc-fih--height-standard {
        min-height: max(820px, 98svh);
    }

    .whc-fih--height-compact {
        min-height: max(720px, 88svh);
    }

    .whc-fih__image {
        object-position: var(--whc-fih-image-position-mobile, 50% 42%);
        transform: scale(var(--whc-fih-image-zoom-mobile, 1.06));
    }

    .whc-fih__image-stage {
        inset: -1.6%;
        transform: none !important;
        transition: none;
    }

    .whc-fih--motion-cinematic .whc-fih__image {
        animation: whcFIHImageMobileCinematic 11s cubic-bezier(.2,.65,.25,1) 0.05s both;
    }

    .whc-fih--motion-subtle .whc-fih__image {
        animation: whcFIHImageMobileSubtle 10s ease-out 0.05s both;
    }

    .whc-fih--motion-none .whc-fih__image {
        animation: none;
        transform: scale(var(--whc-fih-image-zoom-mobile, 1.06));
    }

    .whc-fih__mote--1 { left: 46%; top: 35%; }
    .whc-fih__mote--2 { left: 73%; top: 46%; }
    .whc-fih__mote--3 { left: 86%; top: 27%; }

    .whc-fih--overlay-dark-left .whc-fih__overlay,
    .whc-fih--overlay-dark-right .whc-fih__overlay,
    .whc-fih--overlay-dark-full .whc-fih__overlay,
    .whc-fih--overlay-balanced .whc-fih__overlay {
        background:
            linear-gradient(0deg, rgba(1,16,22,0.98) 0%, rgba(1,16,22,0.94) 34%, rgba(1,16,22,0.70) 52%, rgba(1,16,22,0.20) 73%, rgba(1,16,22,0.08) 100%),
            linear-gradient(90deg, rgba(1,16,22,0.14), transparent 42%, rgba(1,16,22,0.12));
    }

    .whc-fih--overlay-light-left .whc-fih__overlay,
    .whc-fih--overlay-light-right .whc-fih__overlay,
    .whc-fih--overlay-light-full .whc-fih__overlay {
        background:
            linear-gradient(0deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.95) 35%, rgba(255,255,255,0.72) 53%, rgba(255,255,255,0.20) 74%, rgba(255,255,255,0.06) 100%),
            linear-gradient(90deg, rgba(255,255,255,0.10), transparent 45%, rgba(255,255,255,0.08));
    }

    .whc-fih__inner {
        align-items: flex-end;
        padding-right: 18px;
        padding-left: 18px;
    }

    .whc-fih--height-immersive .whc-fih__inner {
        padding-top: 420px;
        padding-bottom: 92px;
    }

    .whc-fih--height-standard .whc-fih__inner {
        padding-top: 340px;
        padding-bottom: 86px;
    }

    .whc-fih--height-compact .whc-fih__inner {
        padding-top: 270px;
        padding-bottom: 80px;
    }

    .whc-fih__content,
    .whc-fih--content-center .whc-fih__content,
    .whc-fih--content-left .whc-fih__content,
    .whc-fih--content-right .whc-fih__content {
        width: 100%;
        max-width: none;
        margin: 0;
        text-align: left;
    }

    .whc-fih--content-center .whc-fih__title,
    .whc-fih--content-center .whc-fih__tagline,
    .whc-fih--content-center .whc-fih__title-rule {
        margin-left: 0;
        margin-right: 0;
    }

    .whc-fih__eyebrow {
        margin-bottom: 12px;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
    }

    .whc-fih__title {
        max-width: 13ch;
        font-size: clamp(2.25rem, 10.4vw, 3.45rem);
        line-height: 1.02;
    }

    .whc-fih--long-title .whc-fih__title {
        max-width: 15ch;
        font-size: clamp(1.95rem, 8.7vw, 2.85rem);
        line-height: 1.04;
    }

    .whc-fih__title-rule {
        width: 42px;
        margin: 18px 0 17px;
    }

    .whc-fih__tagline {
        max-width: 42ch;
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .whc-fih__actions,
    .whc-fih--content-center .whc-fih__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 22px;
    }

    .whc-fih__action:not(.whc-fih__action--scroll) {
        width: 100%;
        min-height: 49px;
        padding: 13px 16px;
        border-radius: 5px;
        font-size: 0.86rem;
    }

    .whc-fih .whc-fih__proofs {
        grid-template-columns: repeat(3, minmax(0,1fr));
        width: 100%;
        margin-top: 24px;
        padding: 38px 0 0 !important;
    }

    .whc-fih__proof {
        display: flex;
        flex-direction: column;
        gap: 7px;
        align-items: center;
        justify-content: flex-start;
        padding: 0 8px;
        text-align: center;
    }

    .whc-fih__proof:first-child {
        padding-left: 0;
    }

    .whc-fih__proof:last-child {
        padding-right: 0;
    }

    .whc-fih__proof-icon-wrap {
        width: 28px;
        height: 28px;
    }

    .whc-fih__proof-icon {
        width: 24px;
        height: 24px;
    }

    .whc-fih__proof-copy strong {
        font-size: 0.59rem;
        line-height: 1.25;
        letter-spacing: 0.045em;
    }

    .whc-fih__proof-copy span {
        margin-top: 0;
        font-size: 0.58rem;
        line-height: 1.3;
    }

    .whc-fih__labels-wrap,
    .whc-fih--labels-left .whc-fih__labels-wrap,
    .whc-fih--labels-right .whc-fih__labels-wrap {
        top: var(--whc-fih-labels-top-mobile, 110px);
        width: min(47vw, 178px);
        transform: none !important;
        transition: none;
    }

    .whc-fih--labels-mobile-right .whc-fih__labels-wrap {
        right: 12px;
        left: auto;
        display: block;
    }

    .whc-fih--labels-mobile-left .whc-fih__labels-wrap {
        right: auto;
        left: 12px;
        display: block;
    }

    .whc-fih--labels-mobile-hidden .whc-fih__labels-wrap {
        display: none !important;
    }

    .whc-fih__labels {
        gap: 7px;
    }

    .whc-fih--labels-left .whc-fih__label,
    .whc-fih--labels-right .whc-fih__label,
    .whc-fih--labels-left .whc-fih__label--2,
    .whc-fih--labels-left .whc-fih__label--3,
    .whc-fih--labels-left .whc-fih__label--4,
    .whc-fih--labels-right .whc-fih__label--2,
    .whc-fih--labels-right .whc-fih__label--3,
    .whc-fih--labels-right .whc-fih__label--4 {
        margin-left: 0;
    }

    .whc-fih--labels-mobile-right .whc-fih__label {
        transform: translateX(15px) translateY(4px);
        animation-name: whcFIHLabelIn;
    }

    .whc-fih--labels-mobile-left .whc-fih__label {
        transform: translateX(-15px) translateY(4px);
        animation-name: whcFIHLabelInLeft;
    }

    /* Noticeable but calm mobile arcs: 3-5px travel and sub-degree tilt. */
    .whc-fih__label--1 {
        --whc-fih-label-x1: 4px; --whc-fih-label-y1: -2px; --whc-fih-label-r1: 0.48deg;
        --whc-fih-label-x2: 1px; --whc-fih-label-y2: -5px; --whc-fih-label-r2: -0.30deg;
        --whc-fih-label-x3: -3px; --whc-fih-label-y3: -1px; --whc-fih-label-r3: 0.22deg;
    }

    .whc-fih__label--2 {
        --whc-fih-label-x1: -4px; --whc-fih-label-y1: 2px; --whc-fih-label-r1: -0.48deg;
        --whc-fih-label-x2: -1px; --whc-fih-label-y2: 5px; --whc-fih-label-r2: 0.30deg;
        --whc-fih-label-x3: 3px; --whc-fih-label-y3: 1px; --whc-fih-label-r3: -0.22deg;
    }

    .whc-fih__label--3 {
        --whc-fih-label-x1: 3px; --whc-fih-label-y1: 3px; --whc-fih-label-r1: 0.42deg;
        --whc-fih-label-x2: 0px; --whc-fih-label-y2: 5px; --whc-fih-label-r2: -0.34deg;
        --whc-fih-label-x3: -4px; --whc-fih-label-y3: 1px; --whc-fih-label-r3: 0.20deg;
    }

    .whc-fih__label--4 {
        --whc-fih-label-x1: -3px; --whc-fih-label-y1: -3px; --whc-fih-label-r1: -0.42deg;
        --whc-fih-label-x2: 1px; --whc-fih-label-y2: -5px; --whc-fih-label-r2: 0.28deg;
        --whc-fih-label-x3: 4px; --whc-fih-label-y3: -1px; --whc-fih-label-r3: -0.20deg;
    }

    .whc-fih__label--5 {
        --whc-fih-label-x1: 4px; --whc-fih-label-y1: 2px; --whc-fih-label-r1: 0.50deg;
        --whc-fih-label-x2: 2px; --whc-fih-label-y2: 5px; --whc-fih-label-r2: -0.32deg;
        --whc-fih-label-x3: -3px; --whc-fih-label-y3: 3px; --whc-fih-label-r3: 0.20deg;
    }

    .whc-fih--motion-subtle .whc-fih__label {
        --whc-fih-label-x1: 2px;
        --whc-fih-label-y1: -1px;
        --whc-fih-label-r1: 0.20deg;
        --whc-fih-label-x2: 0px;
        --whc-fih-label-y2: -3px;
        --whc-fih-label-r2: -0.12deg;
        --whc-fih-label-x3: -2px;
        --whc-fih-label-y3: 1px;
        --whc-fih-label-r3: 0.10deg;
        --whc-fih-label-float-duration: 16s;
    }

    .whc-fih--labels-mobile-right .whc-fih__label-node {
        right: auto;
        left: -5px;
    }

    .whc-fih--labels-mobile-left .whc-fih__label-node {
        right: -5px;
        left: auto;
    }

    .whc-fih__label-node {
        width: 7px;
        height: 7px;
        box-shadow: 0 0 0 4px rgba(var(--whc-fih-gold-rgb),0.07), 0 0 15px rgba(var(--whc-fih-gold-rgb),0.78);
    }

    .whc-fih__label-inner {
        gap: 8px;
        min-height: 38px;
        padding: 8px 10px;
        border-radius: 999px;
        font-size: 0.69rem;
        box-shadow: 0 9px 22px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.14);
    }

    .whc-fih__label-icon {
        width: 14px;
        height: 14px;
    }

    .whc-fih__labels-glow {
        opacity: 0.32;
    }

    .whc-fih--labels-layout-mobile-compact .whc-fih__labels-wrap {
        width: min(calc(100vw - 24px), 340px);
    }

    .whc-fih--labels-layout-mobile-compact .whc-fih__labels {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .whc-fih--labels-layout-mobile-compact .whc-fih__label,
    .whc-fih--labels-layout-mobile-compact .whc-fih__label-float,
    .whc-fih--labels-layout-mobile-compact .whc-fih__label-inner {
        width: 100%;
    }

    .whc-fih--labels-layout-mobile-compact .whc-fih__label-inner {
        min-height: 40px;
        padding: 7px 9px;
        font-size: 0.64rem;
    }

    .whc-fih--labels-layout-mobile-compact .whc-fih__label-icon {
        width: 13px;
        height: 13px;
    }

    .whc-fih__scroll {
        bottom: 15px;
    }

    .whc-fih__action--scroll {
        font-size: 0.56rem;
    }

    .whc-fih__action--scroll .whc-fih__action-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 430px) {
    .whc-fih--height-immersive {
        min-height: max(900px, 108svh);
    }

    .whc-fih--height-standard {
        min-height: max(790px, 98svh);
    }

    .whc-fih--height-compact {
        min-height: max(690px, 88svh);
    }

    .whc-fih--height-immersive .whc-fih__inner {
        padding-top: 390px;
    }

    .whc-fih--height-standard .whc-fih__inner {
        padding-top: 315px;
    }

    .whc-fih--height-compact .whc-fih__inner {
        padding-top: 250px;
    }

    .whc-fih--labels-layout-mobile-stacked .whc-fih__labels-wrap {
        width: min(48vw, 166px);
    }

    .whc-fih--labels-layout-mobile-compact .whc-fih__labels-wrap {
        width: min(calc(100vw - 20px), 330px);
    }

    .whc-fih__title {
        font-size: clamp(2.1rem, 10.6vw, 3rem);
    }
}

/* ------------------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
    .whc-fih *,
    .whc-fih *::before,
    .whc-fih *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .whc-fih__image-stage,
    .whc-fih__labels-wrap {
        transform: none !important;
    }

    .whc-fih__image {
        transform: scale(var(--whc-fih-image-zoom, 1.02)) !important;
    }

    .whc-fih__eyebrow,
    .whc-fih__title,
    .whc-fih__title-rule,
    .whc-fih__tagline,
    .whc-fih__actions,
    .whc-fih__proofs,
    .whc-fih__label,
    .whc-fih__label-float,
    .whc-fih__label-node,
    .whc-fih__action--scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    .whc-fih__light-sweep,
    .whc-fih__mote {
        display: none !important;
    }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
    .whc-fih__image {
        transform: scale(var(--whc-fih-image-zoom-mobile, 1.06)) !important;
    }
}

/* ------------------------------------------------------------------------
   Keyframes
   ------------------------------------------------------------------------ */

@keyframes whcFIHImageCinematic {
    0% { transform: scale(var(--whc-fih-image-zoom, 1.02)) translate3d(0,0,0); }
    100% { transform: scale(var(--whc-fih-image-zoom-cinematic-end, 1.055)) translate3d(0,-0.55%,0); }
}

@keyframes whcFIHImageSubtle {
    0% { transform: scale(var(--whc-fih-image-zoom, 1.02)); }
    100% { transform: scale(var(--whc-fih-image-zoom-subtle-end, 1.038)); }
}

@keyframes whcFIHImageMobileCinematic {
    0% { transform: scale(var(--whc-fih-image-zoom-mobile, 1.06)) translate3d(0,0,0); }
    100% { transform: scale(var(--whc-fih-image-zoom-mobile-cinematic-end, 1.105)) translate3d(0,-0.35%,0); }
}

@keyframes whcFIHImageMobileSubtle {
    0% { transform: scale(var(--whc-fih-image-zoom-mobile, 1.06)); }
    100% { transform: scale(var(--whc-fih-image-zoom-mobile-subtle-end, 1.082)); }
}

@keyframes whcFIHLightSweep {
    0% { opacity: 0; transform: skewX(-13deg) translate3d(0,0,0); }
    16% { opacity: 0.42; }
    78% { opacity: 0.26; }
    100% { opacity: 0; transform: skewX(-13deg) translate3d(305%,0,0); }
}

@keyframes whcFIHMoteRise {
    0% { opacity: 0; transform: translate3d(0,30px,0) scale(0.62); }
    18% { opacity: 0.82; }
    54% { opacity: 0.52; transform: translate3d(7px,-12px,0) scale(1); }
    100% { opacity: 0; transform: translate3d(-5px,-76px,0) scale(1.14); }
}

@keyframes whcFIHMoteGlow {
    0%, 100% { opacity: 0.08; transform: scale(0.82); }
    50% { opacity: 0.52; transform: scale(1.10); }
}

@keyframes whcFIHContentIn {
    from { opacity: 0.76; transform: translateY(7px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes whcFIHRuleIn {
    from { opacity: 0.65; transform: scaleX(0.36); }
    to { opacity: 1; transform: scaleX(1); }
}

@keyframes whcFIHButtonSheen {
    0% { opacity: 0; transform: skewX(-18deg) translateX(0); }
    16% { opacity: 0.68; }
    78% { opacity: 0.28; }
    100% { opacity: 0; transform: skewX(-18deg) translateX(540%); }
}

@keyframes whcFIHLabelIn {
    from { opacity: 0; transform: translateX(18px) translateY(5px); }
    to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes whcFIHLabelInLeft {
    from { opacity: 0; transform: translateX(-18px) translateY(5px); }
    to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes whcFIHLabelFloatArc {
    0%, 100% {
        transform: translate3d(0,0,0) rotate(0deg);
    }
    24% {
        transform: translate3d(var(--whc-fih-label-x1), var(--whc-fih-label-y1), 0) rotate(var(--whc-fih-label-r1));
    }
    53% {
        transform: translate3d(var(--whc-fih-label-x2), var(--whc-fih-label-y2), 0) rotate(var(--whc-fih-label-r2));
    }
    79% {
        transform: translate3d(var(--whc-fih-label-x3), var(--whc-fih-label-y3), 0) rotate(var(--whc-fih-label-r3));
    }
}

@keyframes whcFIHLabelGlow {
    0%, 100% { opacity: 0.25; transform: scale(0.96); }
    50% { opacity: 0.48; transform: scale(1.05); }
}

@keyframes whcFIHNodePulse {
    0%, 100% { opacity: 0.72; transform: translateY(-50%) scale(0.92); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.14); }
}

@keyframes whcFIHScrollIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 0.86; transform: translateY(0); }
}

@keyframes whcFIHScrollBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}
