/*
 * Source-owned progressive enhancements for the published marketing pages.
 * The base HTML remains readable and navigable when this stylesheet or its
 * companion script is unavailable.
 */

.vh-published-section,
.vh-logo-marquee,
.vh-scroll-reveal,
.vh-page-toggle,
.vh-dot-grid {
    box-sizing: border-box;
    color: var(--vh-public-marketing-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* The static Plasmic export leaves its motion wrappers at opacity:0 and relies
   on React to reveal them. The MVC snapshot has no React runtime, so preserve
   the authored delay as inert metadata and keep the content readable. */
.vh-marketing-site .css-0[style*="opacity:0"],
.vh-marketing-site .css-0[style*="opacity: 0"] {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

.vh-published-section {
    width: min(100% - 2rem, 80rem);
    margin: clamp(4rem, 8vw, 8rem) auto;
    white-space: normal;
}

.vh-published-section *,
.vh-logo-marquee *,
.vh-scroll-reveal *,
.vh-page-toggle * {
    box-sizing: border-box;
}

.vh-published-section__heading {
    max-width: 48rem;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.vh-published-section__heading h2,
.vh-carousel__heading h2,
.vh-feature-tabs h2 {
    margin: 0;
    color: var(--vh-public-marketing-ink);
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.vh-published-kicker {
    margin: 0 0 .75rem;
    color: var(--vh-public-marketing-blue);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vh-published-component-marker {
    display: none;
}

/* PageToggle */
.vh-page-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 2rem auto;
    padding: .25rem;
    border: 0;
    border-radius: 999px;
    background: var(--vh-public-transparent);
    isolation: isolate;
}

.vh-page-toggle--dark {
    background: var(--vh-public-transparent);
}

.vh-page-toggle--dark a {
    color: color-mix(
        in srgb,
        var(--vh-public-on-primary) 68%,
        var(--vh-public-marketing-ink));
}

.vh-page-toggle a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 6.75rem;
    align-items: center;
    justify-content: center;
    padding: .375rem 1rem;
    border-radius: inherit;
    color: var(--vh-public-marketing-muted);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
}

.vh-page-toggle a:hover,
.vh-page-toggle a:focus-visible {
    color: var(--vh-public-marketing-blue);
}

.vh-page-toggle a.is-active {
    color: var(--vh-public-marketing-ink);
    background: var(--vh-public-transparent);
}

.vh-page-toggle--dark a.is-active { color: var(--vh-public-marketing-blue); }

.vh-page-toggle__pill {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    border: 1px solid color-mix(in srgb, var(--vh-public-marketing-blue) 12%, var(--vh-public-transparent));
    border-radius: 999px;
    background: color-mix(in srgb, var(--vh-public-marketing-blue) 8%, var(--vh-public-transparent));
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--vh-public-on-primary) 90%, var(--vh-public-transparent));
    pointer-events: none;
    opacity: 0;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), width .35s cubic-bezier(.34, 1.56, .64, 1), height .35s cubic-bezier(.34, 1.56, .64, 1), opacity .15s ease;
}

.vh-page-toggle--dark .vh-page-toggle__pill {
    border-color: color-mix(in srgb, var(--vh-public-on-primary) 8%, var(--vh-public-transparent));
    background: color-mix(in srgb, var(--vh-public-on-primary) 6%, var(--vh-public-transparent));
}

.vh-page-toggle__pill[data-vh-ready="true"] { opacity: 1; }

.vh-page-toggle__inner { display: inline-flex; align-items: center; gap: .4375rem; pointer-events: none; }
.vh-page-toggle__dot {
    display: inline-block;
    width: .375rem;
    height: .375rem;
    flex: none;
    border-radius: 50%;
    background: var(--vh-public-marketing-blue);
    animation: vh-toggle-pulse 2.4s ease-in-out infinite;
}

@keyframes vh-toggle-pulse {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--vh-public-marketing-blue) 45%, var(--vh-public-transparent)); }
    50% { box-shadow: 0 0 0 .25rem var(--vh-public-transparent); }
}

/* LogoMarquee */
.vh-logo-marquee {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    flex: none;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: var(--vh-public-transparent);
    white-space: normal;
}

.vh-logo-marquee::before,
.vh-logo-marquee::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: clamp(1.5rem, 8%, 7.5rem);
    content: "";
    pointer-events: none;
}
.vh-logo-marquee::before { left: 0; background: linear-gradient(to right, var(--vh-logo-fade), var(--vh-public-transparent)); }
.vh-logo-marquee::after { right: 0; background: linear-gradient(to left, var(--vh-logo-fade), var(--vh-public-transparent)); }

.vh-logo-marquee__viewport {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    outline-offset: .35rem;
    will-change: transform;
}

.vh-logo-marquee[data-vh-fade-out="false"] {
    --vh-logo-fade: var(--vh-public-transparent);
}

.vh-logo-marquee__track {
    display: flex;
    flex: none;
    width: max-content;
    min-width: 0;
    align-items: center;
    justify-content: flex-start;
    gap: var(--vh-logo-gap, 5.125rem);
    margin: 0;
    padding: 0 var(--vh-logo-gap, 5.125rem) 0 0;
    list-style: none;
}

.vh-logo-marquee[data-vh-gap="82"] { --vh-logo-gap: 5.125rem; }
.vh-logo-marquee[data-vh-gap="92"] { --vh-logo-gap: 5.75rem; }
.vh-logo-marquee__track img { display: block; width: auto; height: var(--vh-logo-height, 1.375rem); }
.vh-logo-marquee[data-vh-logo-height="22"] { --vh-logo-height: 1.375rem; }
.vh-logo-marquee[data-vh-logo-height="29"] { --vh-logo-height: 1.8125rem; }
.vh-logo-marquee[data-vh-fade-theme="light"] { --vh-logo-fade: var(--vh-public-marketing-surface); }
.vh-logo-marquee[data-vh-fade-theme="dark"] { --vh-logo-fade: var(--vh-public-marketing-ink); }
.vh-logo-marquee__track li {
    color: var(--vh-public-marketing-muted);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 850;
    letter-spacing: -.025em;
    white-space: nowrap;
    transition: color .2s ease, transform .2s ease;
}

.vh-logo-marquee[data-vh-pause-on-hover="true"] .vh-logo-marquee__viewport:hover .vh-logo-marquee__track,
.vh-logo-marquee[data-vh-pause-on-hover="true"] .vh-logo-marquee__viewport:focus-within .vh-logo-marquee__track {
    animation-play-state: paused;
}

.vh-logo-marquee[data-vh-scale-on-hover="true"] .vh-logo-marquee__track li:hover {
    color: var(--vh-public-marketing-blue);
    transform: scale(1.04);
}


/* FeatureSteps */
.vh-feature-steps {
    padding: clamp(2rem, 5vw, 5rem);
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: clamp(1.5rem, 4vw, 3rem);
    background: var(--vh-public-marketing-subtle);
    box-shadow: 0 1.5rem 4rem rgb(var(--vh-public-ink-rgb) / .08);
}

.vh-feature-steps--candidate {
    color: var(--vh-public-on-primary);
    background: var(--vh-public-marketing-ink);
}

.vh-feature-steps--candidate h2,
.vh-feature-steps--candidate h3 {
    color: var(--vh-public-on-primary);
}

.vh-feature-steps[data-vh-navbar-height="90"][data-vh-scroll-per-step="0.85"] .vh-feature-steps__list li {
    min-height: calc((100vh - 5.625rem) * .85);
}

.vh-feature-steps__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, .9fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
}

.vh-feature-steps__list {
    display: grid;
    gap: clamp(3rem, 10vh, 8rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.vh-feature-steps__list li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    min-height: 12rem;
    align-content: center;
    color: var(--vh-public-marketing-muted);
    transition: color .45s ease, opacity .45s ease, transform .55s ease;
}

.vh-interactions .vh-feature-steps__list li {
    opacity: .45;
    transform: translateY(1.5rem);
}

.vh-feature-steps__list li[data-vh-state="done"],
.vh-feature-steps__list li[data-vh-state="active"] {
    opacity: 1;
    transform: none;
}

.vh-feature-steps__list li[data-vh-state="active"] {
    color: var(--vh-public-marketing-ink);
}

.vh-feature-steps--candidate .vh-feature-steps__list li[data-vh-state="active"],
.vh-feature-steps--candidate .vh-feature-steps__list li[data-vh-state="done"] {
    color: var(--vh-public-on-primary);
}

.vh-feature-steps__number {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.375rem;
    color: var(--vh-public-black);
    background: var(--vh-feature-number-bg, var(--vh-component-accent));
    font-family: var(--font-body, sans-serif);
    font-size: .8125rem;
    font-weight: 700;
    line-height: 1;
    transition:
        opacity .45s cubic-bezier(.16, 1, .3, 1),
        transform .5s cubic-bezier(.34, 1.56, .64, 1);
}

.vh-feature-steps__title-wrap {
    margin-bottom: 1.125rem;
    overflow: hidden;
}

.vh-feature-steps .vh-feature-steps__title {
    margin: 0;
    color: var(--vh-public-marketing-ink);
    font-family: var(--font-headline, sans-serif);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -.025em;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1) .12s;
}

.vh-feature-steps .vh-feature-steps__description {
    max-width: 42ch;
    margin: 0;
    color: var(--vh-public-marketing-muted);
    font-family: var(--font-body, sans-serif);
    font-size: clamp(.875rem, 1.5vw, 1rem);
    line-height: 1.75;
    white-space: pre-wrap;
    transition:
        opacity .55s cubic-bezier(.16, 1, .3, 1) .24s,
        transform .55s cubic-bezier(.16, 1, .3, 1) .24s;
}

.vh-interactions .vh-feature-steps__number {
    opacity: 0;
    transform: scale(.4) translateY(.625rem);
}

.vh-interactions .vh-feature-steps__title {
    transform: translateY(110%);
}

.vh-interactions .vh-feature-steps__description {
    opacity: 0;
    transform: translateY(1.375rem);
}

.vh-feature-steps__list li[data-vh-state="active"] .vh-feature-steps__number {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.vh-feature-steps__list li[data-vh-state="active"] .vh-feature-steps__title {
    transform: translateY(0);
}

.vh-feature-steps__list li[data-vh-state="active"] .vh-feature-steps__description {
    opacity: 1;
    transform: translateY(0);
}

.vh-feature-steps__list li[data-vh-state="done"] .vh-feature-steps__number {
    opacity: 0;
    transform: scale(.8) translateY(-.625rem);
    transition: opacity .28s ease, transform .28s ease;
}

.vh-feature-steps__list li[data-vh-state="done"] .vh-feature-steps__title {
    transform: translateY(-110%);
    transition: transform .32s ease;
}

.vh-feature-steps__list li[data-vh-state="done"] .vh-feature-steps__description {
    opacity: 0;
    transform: translateY(-1.125rem);
    transition: opacity .28s ease, transform .28s ease;
}

.vh-feature-steps--candidate .vh-feature-steps__number,
.vh-feature-steps--candidate .vh-feature-steps__title {
    color: var(--vh-public-on-primary);
}

.vh-feature-steps--candidate .vh-feature-steps__description {
    color: rgb(var(--vh-public-on-primary-rgb) / .6);
}

.vh-feature-steps__visual {
    position: sticky;
    top: 6.625rem;
    display: grid;
    min-height: min(65vh, 36rem);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--vh-component-accent, var(--vh-public-marketing-blue)) 20%, var(--vh-public-marketing-border));
    border-radius: 2rem;
    background:
        radial-gradient(circle at 80% 10%, rgb(var(--vh-public-sky-rgb) / .38), var(--vh-public-transparent) 34%),
        linear-gradient(145deg, var(--vh-public-marketing-ink), color-mix(in srgb, var(--vh-public-marketing-ink) 78%, var(--vh-component-accent, var(--vh-public-marketing-blue))));
    box-shadow: 0 1.5rem 3.5rem rgb(var(--vh-public-ink-rgb) / .2);
}

.vh-feature-steps[data-vh-section-height="480"] .vh-feature-steps__visual > div {
    min-height: 30rem;
}

.vh-feature-steps__visual video,
.vh-feature-steps__visual img,
.vh-feature-steps__visual [data-vh-lottie-container] {
    width: 100%;
    max-height: 23rem;
    object-fit: contain;
}

.vh-feature-steps__lottie-fallback {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: min(80%, 22rem);
}

.vh-feature-steps__lottie-fallback span {
    min-height: 10rem;
    border-radius: 1rem;
    background: var(--vh-public-marketing-subtle);
    animation: vh-lottie-fallback 2.4s ease-in-out infinite alternate;
}

.vh-feature-steps__lottie-fallback span:nth-child(2) { animation-delay: -.8s; }
.vh-feature-steps__lottie-fallback span:nth-child(3) { animation-delay: -1.6s; }
@keyframes vh-lottie-fallback { to { transform: translateY(-1.5rem); } }

/* Author display rules otherwise win over the HTML hidden attribute after the
   real Lottie SVG mounts, leaving the three placeholder bars on screen. */
.vh-feature-steps__lottie-fallback[hidden] {
    display: none;
}

.vh-feature-steps__visual > div {
    grid-area: 1 / 1;
    display: grid;
    min-height: 100%;
    align-content: end;
    padding: clamp(2rem, 5vw, 4rem);
    color: var(--vh-public-on-primary);
    transition: opacity .45s ease, transform .55s ease;
}

.vh-interactions .vh-feature-steps__visual > div {
    opacity: 0;
    transform: translateY(1rem) scale(.985);
}

.vh-feature-steps__visual > div[aria-hidden="false"] {
    opacity: 1;
    transform: none;
}

.vh-feature-steps__visual span {
    margin-bottom: .75rem;
    color: color-mix(in srgb, var(--vh-public-on-primary) 70%, var(--vh-public-transparent));
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vh-feature-steps__visual strong {
    max-width: 13ch;
    font-size: clamp(2rem, 5vw, 4.25rem);
    line-height: .98;
    letter-spacing: -.05em;
}

/* ScrollRevealText */
.vh-scroll-reveal {
    width: 100%;
    margin: 0;
    padding: 0;
    white-space: normal;
}

.vh-scroll-reveal p {
    display: flex;
    width: 100%;
    max-width: 56.25rem;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .1em .28em;
    margin: 0 auto;
    padding: 0;
    color: var(--vh-public-marketing-ink);
    font-family: var(--font-headline, "Playfair Display", serif);
    font-size: 3.4375rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}

.vh-interactions .vh-scroll-reveal [data-vh-reveal-word] {
    color: color-mix(
        in srgb,
        var(--vh-reveal-color, var(--vh-public-marketing-ink)) calc(var(--vh-word-progress, 0) * 100%),
        var(--vh-reveal-dim, var(--vh-public-marketing-border)));
    transition: color .08s linear;
}

/* Carousels */
.vh-carousel__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vh-carousel__arrows {
    display: flex;
    gap: .75rem;
}

.vh-carousel__arrows button,
.vh-carousel__dots button {
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--vh-public-marketing-border);
    color: var(--vh-public-marketing-ink);
    background: var(--vh-public-marketing-surface);
    cursor: pointer;
}

.vh-carousel__arrows button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.vh-carousel__arrows button:hover,
.vh-carousel__arrows button:focus-visible {
    border-color: var(--vh-component-accent, var(--vh-public-marketing-blue));
    color: var(--vh-component-accent, var(--vh-public-marketing-blue));
    transform: translateY(-2px);
}

.vh-carousel__track {
    display: flex;
    gap: 1rem;
    padding: .5rem 0 1.25rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
}

.vh-carousel[data-vh-card-height="500px"] .vh-carousel__slide {
    min-height: 31.25rem;
}

.vh-carousel__slide img,
.vh-carousel__slide video {
    width: 100%;
    max-height: 24rem;
    object-fit: contain;
}

.vh-carousel__track.is-dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
    cursor: grabbing;
    user-select: none;
}

.vh-carousel__slide {
    display: grid;
    flex: 0 0 min(78vw, 27rem);
    min-height: var(--vh-carousel-card-height, 22rem);
    align-content: end;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid color-mix(in srgb, var(--vh-public-marketing-blue) 12%, var(--vh-public-marketing-border));
    border-radius: 1.5rem;
    color: var(--vh-public-marketing-ink);
    background: var(--vh-public-marketing-subtle);
    scroll-snap-align: start;
}

.vh-carousel__slide span {
    margin-bottom: .65rem;
    color: var(--vh-public-marketing-muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vh-carousel__slide strong {
    max-width: 13ch;
    font-size: clamp(1.6rem, 4vw, 2.75rem);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.vh-carousel__slide--blue { background: color-mix(in srgb, var(--vh-public-blue) 14%, var(--vh-public-marketing-surface)); }
.vh-carousel__slide--green { background: color-mix(in srgb, var(--vh-public-sky) 12%, var(--vh-public-marketing-surface)); }
.vh-carousel__slide--violet { background: color-mix(in srgb, var(--vh-public-marketing-blue) 8%, var(--vh-public-marketing-subtle)); }
.vh-carousel__slide--amber { background: color-mix(in srgb, var(--vh-public-marketing-muted) 9%, var(--vh-public-marketing-surface)); }
.vh-carousel__slide--navy { color: var(--vh-public-on-primary); background: var(--vh-public-marketing-ink); }
.vh-carousel__slide--navy span { color: color-mix(in srgb, var(--vh-public-on-primary) 72%, var(--vh-public-transparent)); }

.vh-carousel__dots {
    display: flex;
    justify-content: center;
    gap: .55rem;
    min-height: 1.5rem;
    margin-top: 1rem;
}

.vh-highlights-carousel .vh-carousel__dots {
    display: none;
}

.vh-carousel__dots button {
    width: .65rem;
    height: .65rem;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
}

.vh-carousel__dots button[aria-current="true"] {
    border-color: var(--vh-component-accent, var(--vh-public-marketing-blue));
    background: var(--vh-component-accent, var(--vh-public-marketing-blue));
    transform: scale(1.2);
}

.vh-highlights-carousel .vh-carousel__heading {
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.vh-highlights-carousel .vh-carousel__heading h2 {
    max-width: 46.875rem;
    flex: 1;
    padding-bottom: 3.5rem;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.vh-highlights-carousel .vh-carousel__track {
    padding-block: 0;
    scrollbar-width: none;
}

.vh-highlights-carousel .vh-carousel__track::-webkit-scrollbar {
    display: none;
}

.vh-highlights-carousel .vh-carousel__slide {
    display: flex;
    width: auto;
    min-height: 0;
    flex: 0 0 auto;
    flex-direction: column;
    gap: .875rem;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: var(--vh-public-transparent);
}

.vh-highlights-carousel__card {
    position: relative;
    display: flex;
    width: 100%;
    height: var(--vh-carousel-card-height, 23.75rem);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1.25rem;
}

.vh-highlights-carousel .vh-carousel__slide img,
.vh-highlights-carousel .vh-carousel__slide video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    max-height: none;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
}

.vh-highlights-carousel__caption {
    margin: 0;
    padding-inline: .25rem;
    overflow: hidden;
    color: var(--vh-public-marketing-muted);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vh-case-carousel__slide {
    min-height: 25rem;
    background:
        radial-gradient(circle at 100% 0, rgb(var(--vh-public-sky-rgb) / .25), var(--vh-public-transparent) 35%),
        var(--vh-public-marketing-subtle);
}

.vh-case-carousel__slide h3 {
    max-width: 18ch;
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    line-height: 1.08;
}

.vh-case-carousel__slide > p:not(.vh-published-kicker) {
    max-width: 44ch;
    color: var(--vh-public-marketing-muted);
    line-height: 1.65;
}

.vh-case-carousel__slide a {
    width: fit-content;
    margin-top: 1rem;
    padding: .75rem 1rem;
    border-radius: .65rem;
    color: var(--vh-public-on-primary);
    background: var(--vh-public-marketing-blue);
    font-weight: 750;
    text-decoration: none;
}

/* CircularGallery: accessible CSS 3D replacement for the legacy WebGL view. */
[data-vh-gallery-config] {
    width: 100%;
    min-width: 0;
    align-self: stretch;
    flex: 1 0 100%;
}

.vh-circular-gallery {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0;
    overflow: hidden;
}

.vh-circular-gallery__canvas {
    display: none;
}

.vh-circular-gallery[data-vh-gallery-renderer="webgl"]
    .vh-circular-gallery__canvas {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vh-circular-gallery [data-vh-gallery-track] {
    display: flex;
    height: 100%;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    perspective: 75rem;
    touch-action: pan-x pan-y pinch-zoom;
    cursor: grab;
}

.vh-interactions .vh-circular-gallery[data-vh-gallery-renderer="webgl"]
    [data-vh-gallery-track] {
    position: relative;
    z-index: 2;
    display: block;
    min-height: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.vh-circular-gallery [data-vh-gallery-track].is-dragging {
    cursor: grabbing;
    user-select: none;
}

.vh-circular-gallery [data-vh-gallery-item] {
    position: relative;
    flex: 0 0 min(68vw, 24rem);
    min-height: 25rem;
    scroll-snap-align: center;
    border-radius: var(--vh-gallery-radius, 5%);
}

.vh-interactions .vh-circular-gallery[data-vh-gallery-renderer="webgl"]
    [data-vh-gallery-item] {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: var(--vh-gallery-card-width);
    height: var(--vh-gallery-card-height);
    min-height: 0;
    overflow: visible;
    border: 0;
    background: var(--vh-public-transparent);
    box-shadow: none;
    opacity: var(--vh-gallery-opacity, 1);
    transform:
        translate(-50%, -50%)
        translate3d(var(--vh-gallery-x, 0px), var(--vh-gallery-y, 0px), 0)
        rotate(var(--vh-gallery-rotation, 0deg))
        scale(var(--vh-gallery-scale, 1));
    transition: none;
    will-change: transform;
    border-radius: var(--vh-gallery-radius, 5%);
}

.vh-circular-gallery[data-vh-gallery-renderer="webgl"]
    [data-vh-gallery-media] {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.vh-circular-gallery[data-vh-gallery-renderer="webgl"]
    .vh-circular-gallery__copy {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    width: max-content;
    max-width: none;
    padding: 0;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
}

.vh-circular-gallery[data-vh-gallery-typography="published"] [data-vh-gallery-item] {
    font-family: Outfit, var(--vh-public-font-body, sans-serif);
    font-size: .875rem;
    font-weight: 700;
}

.vh-circular-gallery[data-vh-gallery-text-theme="ink"] [data-vh-gallery-item] {
    color: var(--vh-public-marketing-ink);
}

.vh-circular-gallery[data-vh-gallery-clickable="false"] [data-vh-gallery-item] {
    cursor: grab;
}

.vh-circular-gallery [data-vh-gallery-item][aria-current="true"] {
    z-index: 2;
    opacity: 1;
}

.vh-circular-gallery [data-vh-gallery-prev],
.vh-circular-gallery [data-vh-gallery-next] {
    display: none;
}

.vh-interactions .vh-circular-gallery [data-vh-gallery-prev],
.vh-interactions .vh-circular-gallery [data-vh-gallery-next] {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: inline-grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 50%;
    color: var(--vh-public-marketing-ink);
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 .75rem 2rem rgb(var(--vh-public-ink-rgb) / .14);
    cursor: pointer;
    transform: translateY(-50%);
}

.vh-circular-gallery [data-vh-gallery-prev] { left: .5rem; }
.vh-circular-gallery [data-vh-gallery-next] { right: .5rem; }

.vh-marketing-story-dialog {
    width: min(90vw, 44rem);
    max-height: min(85dvh, 48rem);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 1.25rem;
    color: var(--vh-public-marketing-ink);
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 2rem 6rem rgb(var(--vh-public-ink-rgb) / .35);
}

.vh-marketing-story-dialog::backdrop {
    background: rgb(var(--vh-public-ink-rgb) / .62);
    backdrop-filter: blur(.2rem);
}

.vh-marketing-story-dialog__body {
    position: relative;
    padding: clamp(1.5rem, 5vw, 3rem);
}

.vh-marketing-story-dialog [data-vh-story-close] {
    position: sticky;
    top: 1rem;
    float: right;
    display: inline-grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 50%;
    color: var(--vh-public-marketing-ink);
    background: var(--vh-public-marketing-surface);
    cursor: pointer;
}

.vh-marketing-dialog-open {
    overflow: hidden;
}

/* CandidateStories: one source grid with three independently flowing columns. */
.vh-candidate-stories {
    overflow: hidden;
}

.vh-candidate-stories__columns {
    display: grid;
    max-height: 52rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    overflow: hidden;
    mask-image: linear-gradient(
        to bottom,
        var(--vh-public-transparent),
        black 7%,
        black 93%,
        var(--vh-public-transparent));
}

.vh-candidate-stories__column {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.vh-testimonials:hover .vh-testimonials__track,
.vh-testimonials:focus-within .vh-testimonials__track {
    animation-play-state: paused;
}

.vh-candidate-story-card {
    display: grid;
    gap: .8rem;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 1.25rem;
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 .75rem 2rem rgb(var(--vh-public-ink-rgb) / .07);
}

.vh-candidate-story-card > img {
    width: calc(100% + 2rem);
    max-width: none;
    aspect-ratio: 4 / 3;
    margin: -1rem -1rem .25rem;
    object-fit: cover;
}

.vh-candidate-story-card h3,
.vh-candidate-story-card p,
.vh-candidate-story-card blockquote {
    margin: 0;
}

.vh-candidate-story-card blockquote p,
.vh-candidate-story-card > p {
    color: var(--vh-public-marketing-muted);
    line-height: 1.6;
}

.vh-candidate-story-card button,
.vh-published-controls button,
.vh-candidate-story-dialog__content [data-vh-story-close] {
    width: fit-content;
    padding: .7rem .9rem;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: .65rem;
    color: var(--vh-public-marketing-blue);
    background: var(--vh-public-marketing-surface);
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

[data-vh-story-dialog] {
    width: min(90vw, 44rem);
    max-height: min(85dvh, 48rem);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 1.25rem;
    color: var(--vh-public-marketing-ink);
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 2rem 6rem rgb(var(--vh-public-ink-rgb) / .35);
}

[data-vh-story-dialog]::backdrop {
    background: rgb(var(--vh-public-ink-rgb) / .62);
    backdrop-filter: blur(.2rem);
}

.vh-candidate-story-dialog__content {
    display: grid;
    gap: 1rem;
    padding: clamp(1.5rem, 5vw, 3rem);
}

.vh-candidate-story-dialog__content [data-vh-story-close] {
    justify-self: end;
}

/* Testimonials and SenjaTestimonials share local, escaped snapshot content. */
.vh-testimonials {
    max-width: 100%;
    overflow: hidden;
}

.vh-testimonials__row {
    display: flex;
    margin-block: 1rem;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        var(--vh-public-transparent),
        black 5%,
        black 95%,
        var(--vh-public-transparent));
}

.vh-testimonials__track {
    display: flex;
    width: max-content;
    min-width: 100%;
    gap: 1rem;
    padding-inline: 1rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.vh-interactions .vh-testimonials__track {
    overflow: visible;
    animation: vh-testimonials-left 30s linear infinite alternate;
}

.vh-interactions .vh-testimonials__row[data-vh-testimonial-row-index="1"] .vh-testimonials__track {
    animation-name: vh-testimonials-right;
    animation-duration: 34.5s;
}

@keyframes vh-testimonials-left {
    to { transform: translateX(-12%); }
}

@keyframes vh-testimonials-right {
    from { transform: translateX(-12%); }
    to { transform: none; }
}

.vh-testimonial {
    flex: 0 0 min(78vw, 24rem);
    margin: 0;
    padding: 1.35rem;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 1rem;
    background: var(--vh-public-marketing-surface);
}

.vh-testimonial blockquote,
.vh-testimonial p {
    margin: 0;
}

.vh-testimonial blockquote p {
    color: var(--vh-public-marketing-ink);
    line-height: 1.65;
}

.vh-testimonial figcaption {
    display: grid;
    gap: .2rem;
    margin-top: 1rem;
    color: var(--vh-public-marketing-muted);
}

/* Published server feeds keep a stable grid when data is present. */
.vh-job-grid__items,
.vh-event-grid__items,
.vh-success-case-grid__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.vh-job-card,
.vh-event-card,
.vh-success-case {
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 1rem;
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 .75rem 2rem rgb(var(--vh-public-ink-rgb) / .06);
}

.vh-event-card > img,
.vh-success-case__image {
    width: calc(100% + 2.5rem);
    max-width: none;
    aspect-ratio: 16 / 9;
    margin: -1.25rem -1.25rem 1rem;
    object-fit: cover;
}

.vh-success-case__logo {
    width: auto;
    max-width: 8rem;
    height: 2.5rem;
    object-fit: contain;
}

.vh-job-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding: 0;
    list-style: none;
}

.vh-job-card li {
    padding: .3rem .55rem;
    border-radius: 999px;
    color: var(--vh-public-marketing-blue);
    background: var(--vh-public-marketing-subtle);
    font-size: .75rem;
}

/* VHTimeline */
.vh-timeline {
    position: relative;
    max-width: 72rem;
    padding: 5rem 1.5rem;
}

.vh-timeline__spine {
    position: absolute;
    z-index: 0;
    top: 5rem;
    bottom: 10rem;
    left: 50%;
    width: 2px;
    overflow: hidden;
    background: var(--vh-public-marketing-border);
}

.vh-timeline__spine span {
    display: block;
    width: 100%;
    height: calc(var(--vh-timeline-progress, 0) * 100%);
    background: linear-gradient(
        var(--vh-component-accent, var(--vh-public-marketing-blue)),
        var(--vh-public-sky));
}

.vh-timeline__entries {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vh-timeline__entries li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 4rem minmax(0, 1fr);
    align-items: start;
}

.vh-timeline__entries li::before {
    grid-column: 2;
    grid-row: 1;
    width: .75rem;
    height: .75rem;
    margin: 1.4rem auto 0;
    border: 3px solid var(--vh-public-marketing-surface);
    border-radius: 50%;
    outline: 2px solid var(--vh-public-marketing-border);
    background: var(--vh-public-marketing-border);
    content: "";
    transition: background .35s ease, outline-color .35s ease, transform .35s ease;
}

.vh-timeline__entries li.is-visible::before {
    outline-color: var(--vh-component-accent, var(--vh-public-marketing-blue));
    background: var(--vh-component-accent, var(--vh-public-marketing-blue));
    transform: scale(1.3);
}

.vh-timeline__entries article {
    grid-row: 1;
    margin-bottom: 2.75rem;
    padding: 1.45rem 1.5rem;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 1rem;
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 .75rem 2rem rgb(var(--vh-public-ink-rgb) / .06);
    transition: opacity .55s ease, transform .55s ease;
}

.vh-interactions .vh-timeline__entries article {
    opacity: 0;
    transform: translateX(2.25rem);
}

.vh-timeline__entries [data-vh-timeline-side="left"] article {
    grid-column: 1;
    margin-right: 1.75rem;
}

.vh-timeline__entries [data-vh-timeline-side="right"] article {
    grid-column: 3;
    margin-left: 1.75rem;
}

.vh-interactions .vh-timeline__entries [data-vh-timeline-side="left"] article {
    transform: translateX(-2.25rem);
}

.vh-timeline__entries li.is-visible article {
    opacity: 1;
    transform: none;
}

.vh-timeline__entries time {
    display: block;
    margin-bottom: .4rem;
    color: var(--vh-component-accent, var(--vh-public-marketing-blue));
    font-size: 1rem;
    font-weight: 850;
}

.vh-timeline__entries h3 {
    margin: 0 0 .65rem;
    font-size: 1.2rem;
}

.vh-timeline__entries p {
    margin: 0;
    color: var(--vh-public-marketing-muted);
    line-height: 1.65;
}

.vh-timeline__current article {
    grid-column: 1 / 4;
    width: min(100%, 48rem);
    margin: 2.5rem auto 0;
    padding: clamp(2rem, 5vw, 4rem);
    border-color: var(--vh-component-accent, var(--vh-public-marketing-blue));
    border-radius: 1.5rem;
    color: var(--vh-public-on-primary);
    background: var(--vh-public-marketing-ink);
}

.vh-timeline__current time {
    color: var(--vh-component-accent, var(--vh-public-marketing-blue));
    font-size: 1.15rem;
}

.vh-timeline__current article > span {
    display: inline-block;
    margin-bottom: .65rem;
    padding: .25rem .55rem;
    border-radius: 999px;
    color: var(--vh-public-on-primary);
    background: var(--vh-component-accent, var(--vh-public-marketing-blue));
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vh-timeline__current article > span i {
    display: inline-block;
    width: .45rem;
    height: .45rem;
    margin-right: .4rem;
    border-radius: 50%;
    background: currentColor;
    animation: vh-timeline-pulse 2.2s ease-out infinite;
}

.vh-timeline__current p { color: color-mix(in srgb, var(--vh-public-on-primary) 72%, var(--vh-public-transparent)); }

@keyframes vh-timeline-pulse {
    50% { opacity: .35; transform: scale(.7); }
}

/* Decorative DotGridBackground */
.vh-dot-grid {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--vh-public-transparent);
    touch-action: pan-y;
}

.vh-dot-grid canvas {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* PricingTable */
.vh-pricing-table {
    max-width: 86rem;
}

.vh-pricing-table__desktop {
    overflow-x: auto;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 1.25rem;
    box-shadow: 0 1rem 3rem rgb(var(--vh-public-ink-rgb) / .08);
}

.vh-pricing-table table {
    width: 100%;
    min-width: 64rem;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--vh-public-marketing-surface);
}

.vh-pricing-table th,
.vh-pricing-table td {
    width: 25%;
    padding: 1.1rem 1.25rem;
    border-right: 1px solid var(--vh-public-marketing-border);
    border-bottom: 1px solid var(--vh-public-marketing-border);
    color: var(--vh-public-marketing-muted);
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
}

.vh-pricing-table tr > :last-child { border-right: 0; }
.vh-pricing-table thead { position: sticky; top: 0; z-index: 1; }
.vh-pricing-table thead th { color: var(--vh-public-marketing-ink); background: var(--vh-public-marketing-surface); }
.vh-pricing-table thead th:not(.vh-pricing-table__heading-cell) { padding-block: 1.5rem; }
.vh-pricing-table__heading-cell { vertical-align: bottom !important; }
.vh-pricing-table__heading-cell h2 { margin: 0; font-size: clamp(1.25rem, 1.6vw, 2.75rem); line-height: 1.25; }
.vh-pricing-table__plan-name { display: block; margin-bottom: .25rem; color: var(--vh-public-marketing-muted); font-size: .6875rem; font-weight: 700; letter-spacing: .1em; }
.vh-pricing-table__plan-price { display: inline-block; color: var(--vh-component-accent, var(--vh-public-marketing-blue)); font-size: 1.625rem; line-height: 1.15; }
.vh-pricing-table [data-vh-price-period] { color: var(--vh-public-marketing-muted); font-size: .8125rem; font-weight: 400; }
.vh-pricing-table tbody th { color: var(--vh-public-marketing-ink); font-weight: 750; }
.vh-pricing-table__highlighted { background: color-mix(in srgb, var(--vh-component-accent, var(--vh-public-marketing-blue)) 6%, var(--vh-public-marketing-surface)) !important; }
.vh-pricing-table__bold-row > * { color: var(--vh-public-marketing-ink) !important; font-weight: 700 !important; }
.vh-pricing-table__value-title,
.vh-pricing-table__value-description { display: block; }
.vh-pricing-table__value-title { color: var(--vh-public-marketing-ink); font-size: .875rem; font-weight: 500; line-height: 1.4; }
.vh-pricing-table__value-description { margin-top: .2rem; color: var(--vh-public-marketing-muted); font-size: .875rem; line-height: 1.55; }
.vh-pricing-table__dash { color: var(--vh-public-marketing-border); font-size: 1.125rem; font-weight: 300; }
.vh-pricing-table tfoot td { border-bottom: 0; }
.vh-pricing-table tfoot a { margin: 0; }
.vh-pricing-table__cta {
    display: block;
    width: 100%;
    margin-top: .875rem;
    padding: .5625rem .875rem;
    border: .09375rem solid var(--vh-public-transparent);
    border-radius: .5rem;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    transition: opacity .15s ease, background .15s ease, color .15s ease;
}
.vh-pricing-table__cta--primary { color: var(--vh-public-on-primary); background: var(--vh-component-accent, var(--vh-public-marketing-blue)); }
.vh-pricing-table__cta--outline { border-color: var(--vh-component-accent, var(--vh-public-marketing-blue)); color: var(--vh-component-accent, var(--vh-public-marketing-blue)); background: var(--vh-public-transparent); }
.vh-pricing-table__cta--ghost { border-color: var(--vh-public-marketing-border); color: var(--vh-public-marketing-ink); background: var(--vh-public-transparent); }
.vh-pricing-table__cta:hover,
.vh-pricing-table__cta:focus-visible { opacity: .82; }
.vh-pricing-table__mobile { display: none; }

/* FAQ */
.vh-faq {
    display: grid;
    grid-template-columns: minmax(14rem, .75fr) minmax(0, 1.4fr);
    gap: clamp(2rem, 8vw, 8rem);
}

.vh-faq__items article {
    border-bottom: 1px solid var(--vh-public-marketing-border);
}

.vh-faq__items h3 {
    margin: 0;
}

.vh-faq__items button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    border: 0;
    color: var(--vh-public-marketing-ink);
    background: var(--vh-public-transparent);
    font: inherit;
    font-size: 1.05rem;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
}

.vh-faq__items button span {
    display: inline-grid;
    width: 1.75rem;
    height: 1.75rem;
    flex: none;
    place-items: center;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 50%;
    color: var(--vh-component-accent, var(--vh-public-marketing-blue));
    transition: transform .25s ease;
}

.vh-faq__items button[aria-expanded="true"] span { transform: rotate(45deg); }
.vh-faq__items [data-vh-faq-answer] { overflow: hidden; }
.vh-faq__items [data-vh-faq-answer] p { margin: 0 0 1.4rem; color: var(--vh-public-marketing-muted); line-height: 1.7; }

.vh-interactions .vh-faq__items [data-vh-faq-answer] {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows .3s ease, opacity .3s ease;
}

.vh-interactions .vh-faq__items [data-vh-faq-answer] > * { min-height: 0; }
.vh-interactions .vh-faq__items [data-vh-faq-answer][data-vh-expanded="true"] { grid-template-rows: 1fr; opacity: 1; }

/* FeatureTabs */
.vh-feature-tabs {
    display: grid;
    grid-template-columns: minmax(18rem, .8fr) minmax(24rem, 1.2fr);
    align-items: start;
    gap: clamp(2rem, 7vw, 6rem);
    padding: clamp(2rem, 6vw, 6rem);
    border-radius: clamp(1.5rem, 4vw, 3rem);
    color: var(--vh-public-on-primary);
    background: var(--vh-component-bg, var(--vh-public-marketing-ink));
}

.vh-feature-tabs h2 { color: var(--vh-public-on-primary); font-size: clamp(2rem, 4vw, 3.75rem); }
.vh-feature-tabs__intro > p:not(.vh-published-kicker) { color: color-mix(in srgb, var(--vh-public-on-primary) 68%, var(--vh-public-transparent)); line-height: 1.7; }
.vh-feature-tabs .vh-published-kicker {
    width: fit-content;
    padding: .25rem .625rem;
    border: 1px solid color-mix(in srgb, var(--vh-component-accent, var(--vh-public-marketing-blue)) 25%, var(--vh-public-transparent));
    border-radius: .375rem;
    color: var(--vh-component-accent, var(--vh-public-marketing-blue));
    background: color-mix(in srgb, var(--vh-component-accent, var(--vh-public-marketing-blue)) 12%, var(--vh-public-transparent));
}

.vh-feature-tabs__buttons {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin-top: 2rem;
}

.vh-feature-tabs__pill {
    position: absolute;
    z-index: 0;
    border-radius: .75rem;
    background: var(--vh-component-pill, color-mix(in srgb, var(--vh-public-on-primary) 10%, var(--vh-public-transparent)));
    pointer-events: none;
    opacity: 0;
    transition:
        top .35s cubic-bezier(.4, 0, .2, 1),
        left .35s cubic-bezier(.4, 0, .2, 1),
        width .35s cubic-bezier(.4, 0, .2, 1),
        height .35s cubic-bezier(.4, 0, .2, 1),
        opacity .2s ease;
}

.vh-feature-tabs__pill[data-vh-ready="true"] { opacity: 1; }

.vh-feature-tabs__buttons button {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: .5rem;
    min-height: 3rem;
    padding: .75rem;
    border: 1px solid color-mix(in srgb, var(--vh-public-on-primary) 14%, var(--vh-public-transparent));
    border-radius: .7rem;
    color: color-mix(in srgb, var(--vh-public-on-primary) 70%, var(--vh-public-transparent));
    background: var(--vh-public-transparent);
    font: inherit;
    font-weight: 700;
    text-align: left;
    white-space: normal;
    cursor: pointer;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.vh-feature-tabs__buttons img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}

.vh-feature-tabs__buttons button:hover,
.vh-feature-tabs__buttons button:focus-visible,
.vh-feature-tabs__buttons button[aria-selected="true"] {
    color: var(--vh-public-on-primary);
    background: var(--vh-public-transparent);
    transform: translateY(-1px);
}

.vh-feature-tabs__panels {
    display: grid;
    width: 100%;
    min-height: 0;
    aspect-ratio: 600 / 620;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--vh-public-on-primary) 15%, var(--vh-public-transparent));
    border-radius: 2rem;
    background:
        radial-gradient(circle at 75% 20%, rgb(var(--vh-public-sky-rgb) / .5), var(--vh-public-transparent) 35%),
        linear-gradient(145deg, var(--vh-component-card-from, color-mix(in srgb, var(--vh-public-marketing-blue) 45%, var(--vh-public-marketing-ink))), var(--vh-component-card-to, var(--vh-public-marketing-ink)));
}

.vh-feature-tabs__panels article {
    position: relative;
    display: grid;
    min-height: 0;
    height: 100%;
    align-content: end;
    padding: clamp(2rem, 6vw, 5rem);
    opacity: 1;
}

.vh-feature-tabs__panels article[hidden] { display: none; }

.vh-feature-tabs__background,
.vh-feature-tabs__foreground {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
}

.vh-feature-tabs__background {
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1);
}

.vh-feature-tabs__foreground {
    z-index: 1;
    object-fit: contain;
    padding: 2rem;
    transform: translateY(.875rem) scale(.97);
    transition:
        opacity .45s cubic-bezier(.4, 0, .2, 1),
        transform .45s cubic-bezier(.4, 0, .2, 1);
}

.vh-feature-tabs__panels article h3 { position: relative; z-index: 2; }

.vh-interactions .vh-feature-tabs__panels article { grid-area: 1 / 1; }
.vh-feature-tabs__panels article[data-vh-active="true"] .vh-feature-tabs__background { opacity: 1; }
.vh-feature-tabs__panels article[data-vh-active="true"] .vh-feature-tabs__foreground { opacity: 1; transform: none; }
.vh-feature-tabs__panels article > span { color: color-mix(in srgb, var(--vh-public-on-primary) 55%, var(--vh-public-transparent)); font-weight: 800; }
.vh-feature-tabs__panels h3 { max-width: 12ch; margin: .65rem 0; font-size: clamp(2rem, 5vw, 4rem); line-height: .98; letter-spacing: -.05em; }
.vh-feature-tabs__panels p { max-width: 34rem; margin: 0; color: color-mix(in srgb, var(--vh-public-on-primary) 72%, var(--vh-public-transparent)); line-height: 1.65; }

/* LatestBlog: data is fetched by the server-only bounded reader. */
.vh-published-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vh-published-heading h2 {
    max-width: 16ch;
    margin: .5rem 0 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.vh-published-heading > a,
.vh-latest-blog-card a {
    color: var(--vh-public-marketing-blue);
    font-weight: 750;
    text-underline-offset: .2rem;
}

.vh-published-eyebrow {
    color: var(--vh-public-marketing-blue);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.vh-latest-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.vh-latest-blog-card {
    overflow: hidden;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 1.1rem;
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 .75rem 2rem rgb(var(--vh-public-ink-rgb) / .06);
    transition: box-shadow .2s ease, transform .2s ease;
}

.vh-latest-blog-card:hover,
.vh-latest-blog-card:focus-within {
    box-shadow: 0 1rem 2.5rem rgb(var(--vh-public-ink-rgb) / .12);
    transform: translateY(-.2rem);
}

.vh-latest-blog-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.vh-latest-blog-card > div {
    padding: 1.25rem;
}

.vh-latest-blog-card time {
    color: var(--vh-public-marketing-muted);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.vh-latest-blog-card h3 {
    margin: .65rem 0 0;
    font-size: 1.2rem;
    line-height: 1.35;
}

.vh-published-note {
    padding: 1rem;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: .75rem;
    color: var(--vh-public-marketing-muted);
    background: var(--vh-public-marketing-subtle);
}

/* CandidateGrid and ProfileConstellation share the privacy-reviewed server feed. */
.vh-candidate-filter {
    display: flex;
    gap: .65rem;
    margin-bottom: 1.5rem;
    padding-bottom: .25rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.vh-candidate-filter button {
    flex: none;
    padding: .65rem .9rem;
    border: 1px solid var(--vh-public-marketing-border);
    border-radius: 999px;
    color: var(--vh-public-marketing-muted);
    background: var(--vh-public-marketing-surface);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.vh-candidate-filter button[aria-selected="true"] {
    border-color: var(--vh-public-marketing-blue);
    color: var(--vh-public-on-primary);
    background: var(--vh-public-marketing-blue);
}

.vh-candidate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.vh-candidate-card {
    position: relative;
    display: flex;
    overflow: visible;
    flex-direction: column;
    border: 1px solid var(--vh-candidate-card-border);
    border-radius: 14px;
    color: var(--vh-candidate-name);
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 1px 4px rgb(var(--vh-candidate-shadow-rgb) / .06);
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow .18s ease, transform .18s ease;
}

.vh-candidate-card__stretched-link {
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
}

.vh-candidate-card:hover,
.vh-candidate-card:focus-within {
    box-shadow: 0 8px 28px rgb(var(--vh-candidate-shadow-rgb) / .11);
    transform: translateY(-2px);
}

.vh-candidate-card > .vh-candidate-media {
    position: relative;
    display: grid;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 14px 14px 0 0;
    place-items: center;
    color: var(--vh-public-on-primary);
    background: var(--vh-candidate-skill-background);
    flex-shrink: 0;
}

.vh-candidate-card > .vh-candidate-media [data-vh-candidate-poster],
.vh-candidate-card > .vh-candidate-media img,
.vh-candidate-card > .vh-candidate-media video {
    width: 100%;
    height: 100%;
}

.vh-candidate-card > .vh-candidate-media img,
.vh-candidate-card > .vh-candidate-media video {
    display: block;
    object-fit: cover;
}

.vh-candidate-card > .vh-candidate-media img {
    object-position: center top;
}

.vh-candidate-card > .vh-candidate-media video:not([hidden]) {
    position: relative;
    z-index: 3;
}

.vh-candidate-card > .vh-candidate-media video[hidden],
.vh-candidate-card > .vh-candidate-media [data-vh-candidate-poster][hidden] {
    display: none;
}

.vh-candidate-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: var(--vh-public-marketing-blue);
    background: rgb(var(--vh-candidate-shadow-rgb) / .5);
    cursor: pointer;
    z-index: 3;
    transition: background-color .18s ease;
}

.vh-candidate-card__play[hidden] {
    display: none;
}

.vh-candidate-card__play > * {
    pointer-events: none;
}

.vh-candidate-card__play-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.vh-candidate-card__play svg {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 2px 6px rgb(var(--vh-candidate-shadow-rgb) / .25));
    transition: transform .15s ease;
}

.vh-candidate-card__play-circle {
    fill: var(--vh-candidate-play-background);
}

.vh-candidate-card__play-label {
    opacity: 0;
    color: var(--vh-public-on-primary);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    text-shadow: 0 1px 3px rgb(var(--vh-candidate-shadow-rgb) / .72);
    transform: translateY(-3px);
    transition: opacity .18s ease, transform .18s ease;
}

.vh-candidate-card__play:hover,
.vh-candidate-card__play:focus-visible {
    background: rgb(var(--vh-candidate-shadow-rgb) / .58);
}

.vh-candidate-card__play:hover svg,
.vh-candidate-card__play:focus-visible svg {
    transform: scale(1.1);
}

.vh-candidate-card__play:hover .vh-candidate-card__play-label,
.vh-candidate-card__play:focus-visible .vh-candidate-card__play-label {
    opacity: 1;
    transform: translateY(0);
}

.vh-candidate-card__play:focus-visible {
    outline: 3px solid var(--vh-public-marketing-blue);
    outline-offset: -3px;
}

.vh-candidate-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px;
    padding: 12px 14px 14px;
}

.vh-candidate-card__body h3,
.vh-candidate-card__body p {
    margin: 0;
}

.vh-candidate-card__body h3 {
    min-width: 0;
    line-height: 21px;
}

.vh-candidate-card__body h3 span {
    color: var(--vh-candidate-name);
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    display: block;
}

.vh-candidate-card__body p {
    color: var(--vh-candidate-role);
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vh-candidate-card__body ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 7px 0 0;
    padding: 0;
    list-style: none;
}

.vh-candidate-card__body li {
    padding: 3px 8px;
    border-radius: 6px;
    color: var(--vh-candidate-skill-text);
    background: var(--vh-candidate-skill-background);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.vh-candidate-card__profile {
    display: inline-block;
    margin-top: 8px;
    color: var(--vh-public-marketing-blue);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.vh-candidate-showcase--constellation {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    margin: 0;
    overflow: clip;
}

.vh-candidate-showcase--constellation * {
    box-sizing: border-box;
}

.vh-candidate-constellation {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    height: 100vh;
    min-height: 640px;
    overflow: clip;
    background: var(--vh-component-bg, var(--vh-public-marketing-surface));
    touch-action: pan-y;
}

.vh-candidate-constellation__message {
    position: absolute;
    z-index: 3;
    inset: 50% auto auto 50%;
    display: flex;
    width: min(100%, 100vw);
    max-width: 100vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.vh-candidate-constellation__message h2 {
    max-width: 720px;
    margin: 0;
    color: var(--vh-public-ink);
    font-family: "DM Display", "Times New Roman", serif;
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
}

.vh-candidate-constellation__message h2 em {
    color: var(--vh-public-sky);
    font-style: italic;
}

.vh-candidate-constellation__label {
    margin: 0 0 20px;
    color: rgb(var(--vh-public-ink-rgb) / .35);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.vh-candidate-constellation__divider {
    width: 48px;
    height: 2px;
    margin: 28px auto;
    border-radius: 2px;
    background: var(--vh-public-sky);
    opacity: .6;
}

.vh-candidate-constellation__message p {
    max-width: 440px;
    margin: 0;
    color: rgb(var(--vh-public-ink-rgb) / .5);
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
}

.vh-candidate-constellation__edge {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
}

.vh-candidate-constellation__edge--vertical {
    background: linear-gradient(
        to bottom,
        var(--vh-component-bg, var(--vh-public-marketing-surface)) 0%,
        var(--vh-public-transparent) 7%,
        var(--vh-public-transparent) 93%,
        var(--vh-component-bg, var(--vh-public-marketing-surface)) 100%);
}

.vh-candidate-constellation__edge--horizontal {
    background: linear-gradient(
        to right,
        var(--vh-component-bg, var(--vh-public-marketing-surface)) 0%,
        var(--vh-public-transparent) 5%,
        var(--vh-public-transparent) 95%,
        var(--vh-component-bg, var(--vh-public-marketing-surface)) 100%);
}

.vh-candidate-constellation__card {
    position: absolute;
    z-index: 1;
    top: calc(var(--vh-y) * 1% - var(--vh-size) / 2);
    left: calc(var(--vh-x) * 1% - var(--vh-size) / 2);
    display: block;
    width: var(--vh-size);
    height: var(--vh-size);
    margin: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.vh-candidate-constellation__card .vh-candidate-media {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 2.5px solid rgb(var(--vh-public-on-primary-rgb) / .95);
    border-radius: 50%;
    background: var(--vh-public-marketing-subtle);
    box-shadow:
        0 6px 28px rgb(var(--vh-public-ink-rgb) / .11),
        0 2px 6px rgb(var(--vh-public-ink-rgb) / .07);
    opacity: 0;
    animation: vh-constellation-enter .75s cubic-bezier(.22, 1, .36, 1) var(--vh-delay) forwards;
    transition: box-shadow .35s ease;
}

.vh-candidate-constellation__card:hover .vh-candidate-media {
    box-shadow:
        0 16px 48px rgb(var(--vh-public-ink-rgb) / .18),
        0 4px 12px rgb(var(--vh-public-ink-rgb) / .1);
}

.vh-candidate-constellation__card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

.vh-candidate-constellation__card:hover img {
    transform: scale(1.07);
}

.vh-candidate-constellation [data-vh-constellation-fallback] {
    display: block;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 38%, var(--vh-public-marketing-surface) 0 16%, var(--vh-public-transparent) 17%),
        radial-gradient(circle at 50% 105%, var(--vh-public-marketing-surface) 0 44%, var(--vh-public-transparent) 45%),
        linear-gradient(145deg, var(--vh-public-blue), var(--vh-public-sky));
}

.vh-candidate-constellation__card:nth-of-type(3n + 1) [data-vh-constellation-fallback] {
    background:
        radial-gradient(circle at 50% 38%, var(--vh-public-marketing-surface) 0 16%, var(--vh-public-transparent) 17%),
        radial-gradient(circle at 50% 105%, var(--vh-public-marketing-surface) 0 44%, var(--vh-public-transparent) 45%),
        linear-gradient(145deg, var(--vh-public-sky), var(--vh-public-marketing-muted));
}

@keyframes vh-constellation-enter {
    from { opacity: 0; transform: scale(.82); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 64rem) {
    .vh-feature-steps__layout {
        grid-template-columns: 1fr;
    }

    .vh-feature-steps__list { gap: 1.25rem; }
    .vh-feature-steps__list li { min-height: 0; padding-block: 1rem; opacity: 1; transform: none; }
    .vh-feature-steps__visual { position: relative; top: auto; gap: 1rem; min-height: 0; overflow: visible; background: var(--vh-public-marketing-ink); }
    .vh-feature-steps__visual > div,
    .vh-interactions .vh-feature-steps__visual > div { grid-area: auto; min-height: 18rem; opacity: 1; transform: none; }
    .vh-latest-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vh-job-grid__items,
    .vh-event-grid__items,
    .vh-success-case-grid__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 56.25rem) {
    .vh-feature-tabs {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3.5rem 1.5rem;
    }
    .vh-feature-tabs__panels { order: -1; }
}

@media (max-width: 40rem) {
    .vh-highlights-carousel .vh-carousel__arrows {
        display: none;
    }

    .vh-highlights-carousel .vh-carousel__slide {
        width: auto !important;
        max-width: 82vw;
        min-height: 0;
        flex-basis: auto !important;
    }

    .vh-highlights-carousel__card {
        width: auto;
        min-width: 5rem;
        height: clamp(12.5rem, 55vw, 16.25rem);
        border-radius: 1rem;
    }

    .vh-highlights-carousel .vh-carousel__slide img,
    .vh-highlights-carousel .vh-carousel__slide video {
        position: static;
        inset: auto;
        width: auto;
        max-width: none;
        height: 100%;
        object-fit: initial;
    }

    .vh-highlights-carousel .vh-carousel__track {
        mask-image: linear-gradient(
            to right,
            black 0%,
            black 86%,
            var(--vh-public-transparent) 100%);
    }

    .vh-highlights-carousel .vh-carousel__dots {
        display: flex;
    }
}

@media (max-width: 48rem) {
    .vh-published-section { width: min(100% - 1.25rem, 80rem); margin-block: 4rem; }
    .vh-published-section__heading h2,
    .vh-carousel__heading h2 { font-size: clamp(1.9rem, 10vw, 3rem); }
    .vh-carousel__heading { align-items: start; }
    .vh-carousel__arrows { display: none; }
    .vh-carousel__slide { flex-basis: 88vw; min-height: 19rem; }

    .vh-timeline { padding-inline: 0; }
    .vh-timeline__spine { left: 1.05rem; top: 5rem; }
    .vh-timeline__entries { gap: 1rem; }
    .vh-timeline__entries li { grid-template-columns: 2.25rem 1fr; }
    .vh-timeline__entries li::before { grid-column: 1; margin-top: 2rem; }
    .vh-timeline__entries article,
    .vh-timeline__entries [data-vh-timeline-side="left"] article,
    .vh-timeline__entries [data-vh-timeline-side="right"] article,
    .vh-timeline__current article {
        grid-column: 2;
        grid-row: 1;
        width: auto;
        margin: 0 0 1rem 1rem;
        transform: translateY(1rem);
    }

    .vh-pricing-table__desktop { display: none; }
    .vh-pricing-table__mobile { display: block; }
    .vh-pricing-table__tabs { position: sticky; top: 0; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem; padding: .35rem; border: 1px solid var(--vh-public-marketing-border); border-radius: .85rem; background: var(--vh-public-marketing-surface); }
    .vh-pricing-table__tabs button { padding: .75rem .25rem; border: 0; border-radius: .6rem; color: var(--vh-public-marketing-muted); background: var(--vh-public-transparent); font: inherit; font-size: .8rem; font-weight: 750; cursor: pointer; }
    .vh-pricing-table__tabs button[aria-selected="true"] { color: var(--vh-public-on-primary); background: var(--vh-component-accent, var(--vh-public-marketing-blue)); }
    .vh-pricing-table__mobile article { margin-top: 1rem; padding: 1.5rem; border: 1px solid var(--vh-public-marketing-border); border-radius: 1rem; background: var(--vh-public-marketing-subtle); }
    .vh-pricing-table__mobile h3 { margin: 0 0 .75rem; }
    .vh-pricing-table__mobile-price { display: flex; align-items: baseline; gap: .25rem; color: var(--vh-component-accent, var(--vh-public-marketing-blue)); line-height: 1.65; }
    .vh-pricing-table__mobile-price strong { font-size: 1.625rem; }
    .vh-pricing-table__mobile a { display: inline-block; }
    .vh-pricing-table__mobile dl { margin: 1.25rem 0; }
    .vh-pricing-table__mobile dl > div { display: grid; grid-template-columns: minmax(7rem, .75fr) minmax(0, 1.25fr); gap: 1rem; padding-block: 1rem; border-bottom: 1px solid var(--vh-public-marketing-border); }
    .vh-pricing-table__mobile dt { color: var(--vh-public-marketing-muted); font-size: .875rem; font-weight: 600; }
    .vh-pricing-table__mobile dd { margin: 0; }

    .vh-faq { grid-template-columns: 1fr; gap: 1rem; }
    .vh-feature-tabs__panels { border-radius: 1.25rem; }
    .vh-published-heading { display: grid; align-items: start; }
    .vh-latest-blog-grid { grid-template-columns: 1fr; }
    .vh-job-grid__items,
    .vh-event-grid__items,
    .vh-success-case-grid__items { grid-template-columns: 1fr; }
    .vh-candidate-constellation { min-height: 640px; }
    .vh-circular-gallery { height: 380px; }
    .vh-interactions .vh-circular-gallery[data-vh-gallery-renderer="webgl"] [data-vh-gallery-track] { min-height: 100%; }
    .vh-circular-gallery [data-vh-gallery-item] { width: min(76vw, 22rem); flex-basis: min(76vw, 22rem); }
    .vh-interactions .vh-circular-gallery[data-vh-gallery-renderer="webgl"] [data-vh-gallery-item] {
        width: var(--vh-gallery-card-width);
        height: var(--vh-gallery-card-height);
    }
}

@media (max-width: 33.75rem) {
    .vh-feature-tabs { padding: 2.5rem 1.25rem; }
    .vh-feature-tabs__buttons { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .vh-page-toggle a,
    .vh-feature-steps__list li,
    .vh-feature-steps__number,
    .vh-feature-steps__visual > div,
    .vh-carousel__track,
    .vh-carousel__arrows button,
    .vh-timeline__entries article,
    .vh-timeline__entries li::before,
    .vh-faq__items [data-vh-faq-answer],
    .vh-feature-tabs__buttons button,
    .vh-feature-tabs__panels article {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .vh-latest-blog-card {
        transition: none;
    }

    .vh-candidate-card,
    .vh-candidate-constellation__card {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .vh-candidate-constellation__card .vh-candidate-media {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .vh-circular-gallery [data-vh-gallery-item] {
        transition: none;
    }

    .vh-page-toggle a.is-active::after,
    .vh-logo-marquee__track,
    .vh-feature-steps__lottie-fallback span,
    .vh-timeline__current article > span i,
    .vh-candidate-stories__column,
    .vh-testimonials__track {
        animation: none !important;
    }

    .vh-logo-marquee__track[aria-hidden="true"] { display: none; }
    .vh-logo-marquee__track { transform: none; }
    .vh-interactions .vh-scroll-reveal [data-vh-reveal-word] { color: var(--vh-public-marketing-ink); }
}

/* Exact source-owned data components from the pinned 50.0.0 publication. */
.vh-candidate-showcase,
.vh-job-grid,
.vh-event-grid,
.vh-success-case-grid {
    --vh-public-marketing-blue: var(--vh-component-accent, var(--vh-public-blue));
}

.vh-candidate-card__experience {
    color: var(--vh-candidate-experience) !important;
    margin-top: 2px !important;
    font-size: 11.5px !important;
    line-height: 17.25px !important;
}

.vh-candidate-card__skill-overflow {
    position: relative;
    z-index: 2;
    padding: 0 !important;
    background: var(--vh-public-transparent) !important;
}

.vh-candidate-card__skill-overflow > button {
    padding: 3px 8px;
    border: 0;
    border-radius: 6px;
    color: var(--vh-candidate-role);
    background: var(--vh-candidate-skill-more-background);
    font: inherit;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    cursor: help;
}

.vh-candidate-card__skill-overflow [role="tooltip"] {
    display: none;
    position: absolute;
    z-index: 100;
    bottom: calc(100% + 6px);
    left: 50%;
    width: max-content;
    max-width: min(180px, 80vw);
    padding: 7px 10px;
    border-radius: 8px;
    color: var(--vh-public-on-primary);
    background: var(--vh-candidate-name);
    box-shadow: 0 4px 16px rgb(var(--vh-candidate-shadow-rgb) / .18);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    white-space: normal;
    pointer-events: none;
    transform: translateX(-50%);
}

.vh-candidate-card__skill-overflow [role="tooltip"]::after {
    position: absolute;
    top: 100%;
    left: 50%;
    border: 5px solid var(--vh-public-transparent);
    border-top-color: var(--vh-candidate-name);
    content: "";
    transform: translateX(-50%);
}

.vh-candidate-card__skill-overflow > button:hover + [role="tooltip"],
.vh-candidate-card__skill-overflow > button:focus-visible + [role="tooltip"] {
    display: block;
}

.vh-candidate-card--skeleton {
    min-height: 22rem;
    overflow: hidden;
    border-color: var(--vh-public-transparent);
    background: linear-gradient(
        100deg,
        var(--vh-public-marketing-subtle) 30%,
        var(--vh-public-marketing-surface) 50%,
        var(--vh-public-marketing-subtle) 70%);
    background-size: 200% 100%;
    animation: vh-candidate-skeleton 1.1s linear infinite;
}

@keyframes vh-candidate-skeleton {
    to { background-position-x: -200%; }
}

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

@media (max-width: 580px) {
    .vh-candidate-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vh-candidate-card--skeleton {
        animation: none;
    }

    .vh-candidate-card__skill-overflow [role="tooltip"] {
        transition: none;
    }

    .vh-candidate-card__play,
    .vh-candidate-card__play svg,
    .vh-candidate-card__play-label {
        transition: none;
    }
}

.vh-candidate-discover {
    display: flex;
    min-height: 20rem;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: 1.25rem;
    color: var(--vh-public-on-primary);
    background: var(--vh-public-marketing-ink);
    text-decoration: none;
}

.vh-candidate-discover > span {
    align-self: end;
    font-size: 2rem;
}

.vh-candidate-discover strong {
    white-space: pre-line;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.05;
}

.vh-job-grid__browse,
.vh-event-grid__view-all,
.vh-latest-blog__view-all {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.vh-job-card[hidden] {
    display: none;
}

.vh-job-card h3,
.vh-job-card p,
.vh-event-card h3,
.vh-event-card p,
.vh-success-case h3,
.vh-success-case p {
    margin: 0;
}

.vh-job-card {
    display: flex;
    min-height: 20rem;
    flex-direction: column;
    gap: 1rem;
}

.vh-job-card .vh-published-link {
    margin-top: auto;
}

.vh-event-grid__items {
    grid-template-columns: repeat(var(--vh-data-columns, 2), minmax(0, 1fr));
}

.vh-event-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    color: var(--vh-public-marketing-ink);
    text-decoration: none;
    transition: box-shadow .2s ease, transform .2s ease;
}

.vh-event-card:hover,
.vh-event-card:focus-visible {
    box-shadow: 0 1rem 2.5rem rgb(var(--vh-public-ink-rgb) / .12);
    transform: translateY(-.15rem);
}

.vh-event-card__cover {
    display: grid;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    place-items: center;
    color: rgb(var(--vh-public-on-primary-rgb) / .6);
    background: linear-gradient(135deg, var(--vh-public-event-cover-start), var(--vh-public-event-cover-end));
    font: 700 .8rem ui-monospace, monospace;
}

.vh-event-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.vh-event-card:hover .vh-event-card__cover img {
    transform: scale(1.05);
}

.vh-event-card > div:last-child {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: .75rem;
    padding: 1rem 1.15rem 1.25rem;
}

.vh-event-card__type {
    width: fit-content;
    padding: .2rem .65rem;
    border: 1px solid rgb(var(--vh-public-blue-rgb) / .18);
    border-radius: 999px;
    color: var(--vh-component-accent, var(--vh-public-blue));
    background: rgb(var(--vh-public-blue-rgb) / .06);
    font-size: .75rem;
    font-weight: 700;
}

[data-vh-event-layout="horizontal"] .vh-event-card {
    min-height: 9rem;
    flex-direction: row;
}

[data-vh-event-layout="horizontal"] .vh-event-card__cover {
    width: 9rem;
    aspect-ratio: auto;
    flex: none;
}

.vh-event-grid__section-label {
    margin: 0 0 .75rem;
    color: var(--vh-public-marketing-muted);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vh-upcoming-events__viewport {
    overflow: hidden;
    border-radius: 1rem;
}

.vh-upcoming-events__track {
    display: flex;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.vh-upcoming-events__slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.vh-upcoming-events__date {
    color: var(--vh-public-event-date);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.vh-upcoming-events__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: .25rem;
}

.vh-upcoming-events__register {
    padding: .55rem 1rem;
    border-radius: 999px;
    color: var(--vh-public-on-primary);
    background: var(--vh-component-accent, var(--vh-public-blue));
    font-size: .82rem;
    font-weight: 750;
    text-decoration: none;
}

.vh-upcoming-events__all {
    color: var(--vh-public-marketing-muted);
    font-size: .82rem;
    font-weight: 650;
    text-decoration: none;
}

.vh-upcoming-events__dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: .75rem;
}

.vh-upcoming-events__dots button {
    width: .45rem;
    height: .45rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--vh-public-marketing-border);
    cursor: pointer;
}

.vh-upcoming-events__dots button[aria-selected="true"] {
    background: var(--vh-component-accent, var(--vh-public-blue));
    transform: scale(1.25);
}

.vh-latest-blog-grid {
    grid-template-columns: repeat(var(--vh-data-columns, 3), minmax(0, 1fr));
}

.vh-latest-blog-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: var(--vh-public-marketing-ink);
    text-decoration: none;
}

.vh-latest-blog-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.vh-latest-blog-card .vh-published-link {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--vh-public-marketing-border);
}

[data-vh-blog-layout="horizontal"] .vh-latest-blog-card {
    flex-direction: row;
}

[data-vh-blog-layout="horizontal"] .vh-latest-blog-card img {
    width: 10rem;
    aspect-ratio: auto;
    object-fit: cover;
}

.vh-candidate-stories {
    position: relative;
    max-height: 53.75rem;
}

.vh-candidate-stories__fade {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 2;
    height: 8.75rem;
    pointer-events: none;
}

.vh-candidate-stories__fade--top {
    top: 0;
    background: linear-gradient(to bottom, var(--vh-data-fade, var(--vh-public-marketing-ink)), var(--vh-public-transparent));
}

.vh-candidate-stories__fade--bottom {
    bottom: 0;
    background: linear-gradient(to top, var(--vh-data-fade, var(--vh-public-marketing-ink)), var(--vh-public-transparent));
}

.vh-candidate-stories__columns {
    max-height: 53.75rem;
    padding-inline: 1rem;
    mask-image: none;
}

.vh-candidate-stories__column {
    animation: none !important;
}

.vh-candidate-stories__column-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    will-change: transform;
}

.vh-interactions .vh-candidate-stories__column[data-vh-story-column-index="0"] .vh-candidate-stories__column-track {
    animation: vh-story-seamless-up 38s linear infinite;
}

.vh-interactions .vh-candidate-stories__column[data-vh-story-column-index="1"] .vh-candidate-stories__column-track {
    animation: vh-story-seamless-down 48s linear infinite;
}

.vh-interactions .vh-candidate-stories__column[data-vh-story-column-index="2"] .vh-candidate-stories__column-track {
    animation: vh-story-seamless-up 34s linear infinite;
}

.vh-interactions .vh-candidate-stories .vh-candidate-stories__column:hover .vh-candidate-stories__column-track,
.vh-interactions .vh-candidate-stories .vh-candidate-stories__column:focus-within .vh-candidate-stories__column-track {
    animation-play-state: paused;
}

@keyframes vh-story-seamless-up {
    from { transform: translateY(0); }
    to { transform: translateY(calc(-50% - .5rem)); }
}

@keyframes vh-story-seamless-down {
    from { transform: translateY(calc(-50% - .5rem)); }
    to { transform: translateY(0); }
}

.vh-candidate-story-card {
    color: var(--vh-data-text, var(--vh-public-on-primary));
    border-color: var(--vh-data-card-border, var(--vh-public-marketing-border));
    background: var(--vh-data-card-bg, var(--vh-public-marketing-ink));
}

.vh-candidate-story-card__author,
.vh-candidate-story-dialog__author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.vh-candidate-story-card__avatar {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    flex: none;
    place-items: center;
    border-radius: 50%;
    object-fit: cover;
    background: rgb(var(--vh-public-ink-rgb) / .08);
}

.vh-candidate-story-card__photo {
    width: calc(100% + 2rem);
    margin-inline: -1rem;
    overflow: hidden;
}

.vh-candidate-story-card__photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.vh-candidate-story-dialog__photo {
    width: calc(100% + clamp(3rem, 10vw, 6rem));
    max-width: none;
    max-height: 20rem;
    margin: calc(clamp(1.5rem, 5vw, 3rem) * -1);
    margin-bottom: 1rem;
    object-fit: cover;
}

.vh-candidate-story-dialog__story {
    display: grid;
    gap: .9rem;
}

.vh-candidate-story-dialog__story p {
    margin: 0;
    line-height: 1.75;
}

.vh-circular-gallery .vh-circular-gallery__item {
    display: grid;
    min-height: 0;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--vh-public-marketing-border);
    color: var(--vh-data-text, var(--vh-public-marketing-ink));
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 .75rem 2rem rgb(var(--vh-public-ink-rgb) / .14);
}

.vh-circular-gallery__media {
    min-height: 0;
    overflow: hidden;
}

.vh-circular-gallery__media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.vh-circular-gallery__copy {
    display: grid;
    gap: .2rem;
    padding: .75rem .9rem;
}

.vh-circular-gallery__copy h3,
.vh-circular-gallery__copy p {
    margin: 0;
}

.vh-circular-gallery__copy h3 {
    font: inherit;
}

.vh-circular-gallery__copy p {
    color: var(--vh-public-marketing-muted);
    font-size: .78rem;
    font-weight: 500;
}

.vh-circular-gallery__open {
    position: absolute;
    inset: 0;
    border: 0;
    background: var(--vh-public-transparent);
    cursor: pointer;
}

@media (max-width: 900px) {
    .vh-candidate-stories__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vh-candidate-stories__column[data-vh-story-column-index="2"] {
        display: none;
    }
}

@media (max-width: 560px) {
    .vh-candidate-stories__columns {
        max-height: 42rem;
        grid-template-columns: 1fr;
    }

    .vh-candidate-stories__column[data-vh-story-column-index="1"],
    .vh-candidate-stories__column[data-vh-story-column-index="2"] {
        display: none;
    }

    [data-vh-story-dialog] {
        width: 100%;
        max-width: none;
        max-height: 92dvh;
        margin: auto 0 0;
        border-radius: 1.25rem 1.25rem 0 0;
    }

    .vh-candidate-story-dialog__content {
        padding: 1.25rem;
    }

    .vh-candidate-story-dialog__photo {
        width: calc(100% + 2.5rem);
        max-height: 15rem;
        margin: -1.25rem -1.25rem .5rem;
    }
}

.vh-testimonials {
    --vh-data-card-bg: var(--vh-public-marketing-surface);
    --vh-data-card-border: rgb(var(--vh-public-ink-rgb) / .07);
    --vh-data-text: var(--vh-public-ink);
    --vh-data-muted: var(--vh-public-marketing-muted);
}

.vh-testimonials__track {
    overflow: visible;
}

.vh-interactions .vh-testimonials--marquee .vh-testimonials__track {
    animation: vh-testimonials-seamless-left var(--vh-testimonial-speed, 30s) linear infinite;
}

.vh-interactions .vh-testimonials--marquee .vh-testimonials__row[data-vh-testimonial-row-index="1"] .vh-testimonials__track {
    animation: vh-testimonials-seamless-right var(--vh-testimonial-speed-reverse, 34.5s) linear infinite;
}

@keyframes vh-testimonials-seamless-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes vh-testimonials-seamless-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.vh-testimonial {
    color: var(--vh-data-text);
    border-color: var(--vh-data-card-border);
    background: var(--vh-data-card-bg);
}

.vh-testimonial figcaption {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--vh-data-muted);
}

.vh-testimonial figcaption > span:last-child {
    display: grid;
}

.vh-testimonial__avatar {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    flex: none;
    place-items: center;
    border-radius: 50%;
    color: var(--vh-component-accent, var(--vh-public-blue));
    background: rgb(var(--vh-public-blue-rgb) / .12);
    font-size: .78rem;
    font-weight: 700;
}

.vh-testimonials__grid {
    columns: var(--vh-data-columns, 4);
    column-gap: .875rem;
}

.vh-testimonials__grid .vh-testimonial {
    width: 100%;
    margin-bottom: .875rem;
    break-inside: avoid;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity .45s ease var(--vh-testimonial-delay, 0ms),
        transform .45s ease var(--vh-testimonial-delay, 0ms);
}

.vh-testimonials__grid .vh-testimonial.is-visible {
    opacity: 1;
    transform: none;
}

.vh-senja-review h3,
.vh-senja-review p {
    margin: 0;
}

.vh-senja-review {
    display: grid;
    gap: .65rem;
    border-width: 1px;
    border-radius: 1rem;
    box-shadow: 0 .125rem .5rem rgb(var(--vh-public-ink-rgb) / .08);
    font-family: "DM Sans", var(--vh-public-font-sans);
}

.vh-testimonials--senja-published {
    --vh-data-primary: var(--vh-public-senja-primary);
    --vh-data-rating: var(--vh-public-rating);
}

.vh-senja-review__rating {
    color: var(--vh-data-rating, var(--vh-public-rating));
    letter-spacing: .08em;
}

.vh-senja-review__copy {
    display: grid;
    gap: .35rem;
}

.vh-senja-review__preview {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.vh-senja-review__copy:has(details[open]) > .vh-senja-review__preview,
.vh-senja-review__copy details[open] > summary {
    display: none;
}

.vh-senja-review__copy details {
    margin: 0;
}

.vh-senja-review__read-more {
    width: fit-content;
    color: var(--vh-data-primary, var(--vh-public-senja-primary));
    font-weight: 700;
    cursor: pointer;
}

.vh-senja-review__read-more:focus-visible {
    outline: .125rem solid var(--vh-data-primary, var(--vh-public-senja-primary));
    outline-offset: .15rem;
}

.vh-success-case-grid__items {
    gap: 1.25rem;
}

.vh-success-case {
    display: flex;
    min-height: 22rem;
    flex-direction: column;
    padding: 1.75rem;
    color: inherit;
    text-decoration: none;
}

a.vh-success-case:hover,
a.vh-success-case:focus-visible {
    border-color: var(--vh-component-accent, var(--vh-public-blue));
    box-shadow: 0 1rem 2.5rem rgb(var(--vh-public-ink-rgb) / .12);
}

.vh-success-case.is-highlighted {
    grid-column: 1 / -1;
}

.vh-success-case__logo-wrap {
    display: flex;
    height: 2.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.vh-success-case h3 {
    font-size: 1.25rem;
    line-height: 1.25;
}

.vh-success-case > p {
    flex: 1;
    color: var(--vh-public-marketing-muted);
    line-height: 1.65;
}

.vh-success-case__link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: 1.25rem;
    color: var(--vh-component-accent, var(--vh-public-blue));
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 64rem) {
    .vh-testimonials__grid { columns: 3; }
}

@media (max-width: 45rem) {
    .vh-event-grid__items,
    .vh-latest-blog-grid { grid-template-columns: 1fr; }
    [data-vh-event-layout="horizontal"] .vh-event-card,
    [data-vh-blog-layout="horizontal"] .vh-latest-blog-card { flex-direction: column; }
    [data-vh-event-layout="horizontal"] .vh-event-card__cover,
    [data-vh-blog-layout="horizontal"] .vh-latest-blog-card img { width: 100%; aspect-ratio: 16 / 9; }
    .vh-testimonials__grid { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .vh-candidate-stories__column-track { animation: none !important; transform: none !important; }

    .vh-candidate-constellation__card .vh-candidate-media,
    .vh-testimonials__track { animation: none !important; transform: none !important; }
    .vh-testimonials__grid .vh-testimonial { opacity: 1; transform: none; transition: none; }
}

/* FeatureSteps follows the published sticky-stage runtime; sectionHeight is
   intentionally canvas-only in the legacy component. */
@media (min-width: 48.0625rem) {
    .vh-feature-steps {
        width: 100%;
        max-width: none;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: var(--vh-public-transparent);
        box-shadow: none;
    }

    .vh-feature-steps__layout {
        position: sticky;
        top: 5.625rem;
        display: grid;
        height: calc(100vh - 11.25rem);
        grid-template-columns: 42% 58%;
        gap: 0;
        align-items: stretch;
        overflow: hidden;
        border-radius: 1.625rem;
        isolation: isolate;
        transition: background .65s cubic-bezier(.4, 0, .2, 1);
    }

    .vh-feature-steps__list {
        position: relative;
        display: block;
        min-height: 100%;
    }

    .vh-feature-steps__list li,
    .vh-interactions .vh-feature-steps__list li {
        position: absolute;
        inset: 0;
        display: flex;
        min-height: 0;
        align-items: center;
        padding: 3.75rem 2rem 3.75rem 4.5rem;
        color: var(--vh-public-marketing-muted);
        opacity: 0;
        transform: translateY(2rem);
        pointer-events: none;
    }

    .vh-feature-steps__list li[data-vh-state="active"] {
        color: var(--vh-public-marketing-ink);
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .vh-feature-steps__list li[data-vh-state="done"] {
        opacity: 0;
        transform: translateY(-2rem);
    }

    .vh-feature-steps--candidate .vh-feature-steps__list li[data-vh-state="active"] {
        color: var(--vh-public-on-primary);
    }

    .vh-feature-steps__content { max-width: 32.5rem; }

    .vh-feature-steps__visual {
        position: relative;
        top: auto;
        display: block;
        height: auto;
        min-height: 0;
        margin: 3.75rem 2rem;
        overflow: hidden;
        border: 0;
        border-radius: 1.5rem;
        background: var(--vh-public-transparent);
        box-shadow: none;
    }

    .vh-feature-steps__visual > div,
    .vh-interactions .vh-feature-steps__visual > div {
        position: absolute;
        inset: 0;
        display: flex;
        min-height: 0;
        align-items: center;
        justify-content: center;
        padding: 0;
        overflow: hidden;
        background: var(--vh-public-transparent);
        opacity: 0;
        transform: scale(.94) translateY(1.5rem);
        pointer-events: none;
        transition: opacity .55s cubic-bezier(.4, 0, .2, 1), transform .55s cubic-bezier(.4, 0, .2, 1);
    }

    .vh-feature-steps__visual > div[aria-hidden="false"] {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .vh-feature-steps__visual video,
    .vh-feature-steps__visual img,
    .vh-feature-steps__visual [data-vh-lottie-container] {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .vh-feature-steps__visual strong { display: none; }
}

@media (max-width: 48rem) {
    .vh-feature-steps {
        width: 100%;
        height: auto !important;
        margin-block: 0;
        padding: .5rem 0 !important;
        border: 0;
        border-radius: 0;
        background: var(--vh-public-transparent);
        box-shadow: none;
    }

    .vh-feature-steps__layout { display: block; }
    .vh-feature-steps__visual { display: none; }
    .vh-feature-steps__list { display: flex; gap: 0; flex-direction: column; }
    .vh-feature-steps__list li,
    .vh-interactions .vh-feature-steps__list li {
        position: static;
        display: flex;
        min-height: 0;
        flex-direction: column;
        gap: 0;
        padding: 0;
        overflow: hidden;
        color: var(--vh-public-marketing-ink);
        opacity: 1;
        transform: none;
    }
    .vh-feature-steps--candidate .vh-feature-steps__list li { color: var(--vh-public-on-primary); }
    .vh-feature-steps__content { order: 2; padding: 1.5rem 1.5rem 3rem; }
    .vh-feature-steps__title-wrap { overflow: visible; }
    .vh-feature-steps .vh-feature-steps__title {
        font-size: clamp(1.375rem, 6vw, 2rem);
        transform: none;
        transition: none;
    }
    .vh-feature-steps .vh-feature-steps__description {
        max-width: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
    .vh-feature-steps .vh-feature-steps__number {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .vh-feature-steps__list [data-vh-feature-panel] {
        position: relative;
        order: 1;
        display: flex;
        width: 100%;
        min-height: 9.375rem;
        align-items: flex-start;
        justify-content: flex-start;
        padding: .75rem 1.5rem 0;
        background: var(--vh-public-transparent);
        opacity: 1;
        transform: none;
    }
    .vh-feature-steps__list [data-vh-feature-panel] video,
    .vh-feature-steps__list [data-vh-feature-panel] img {
        width: 70vw;
        max-width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        border-radius: .75rem;
    }
    .vh-feature-steps__list [data-vh-feature-panel] [data-vh-lottie-container] {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }
    .vh-feature-steps__list [data-vh-feature-panel] [data-vh-lottie-container] svg {
        display: block;
        width: 100% !important;
        height: auto !important;
    }
    .vh-feature-steps__list [data-vh-feature-panel] .vh-feature-steps__lottie-fallback {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 620 / 685;
    }
    .vh-feature-steps__list [data-vh-feature-panel] strong { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .vh-feature-steps__layout,
    .vh-feature-steps__list li,
    .vh-feature-steps__visual > div { transition: none !important; }
}

/* CaseCarousel keeps the published 80% stack with a next-card peek. */
.vh-case-carousel { overflow: hidden; user-select: none; }
.vh-case-carousel .vh-carousel__track {
    position: relative;
    display: block;
    width: 80%;
    min-height: 23.75rem;
    overflow: visible;
    scroll-snap-type: none;
    touch-action: pan-y;
}
.vh-case-carousel .vh-case-carousel__slide {
    position: absolute;
    inset: 0;
    display: grid;
    width: 100%;
    min-height: 23.75rem;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 1rem;
    background: var(--vh-public-marketing-surface);
    box-shadow: 0 .25rem 1rem rgb(var(--vh-public-ink-rgb) / .06);
    opacity: 1;
    pointer-events: none;
    transition: transform 440ms cubic-bezier(.16, 1, .3, 1);
}
.vh-case-carousel__slide[data-vh-case-state="active"] { z-index: 2; transform: none; pointer-events: auto; }
.vh-case-carousel__slide[data-vh-case-state="next"] { z-index: 1; transform: translateX(107%); }
.vh-case-carousel__slide[data-vh-case-state="after"] { z-index: 0; transform: translateX(214%); }
.vh-case-carousel__slide[data-vh-case-state="previous"] { z-index: 1; transform: translateX(-107%); }
.vh-case-carousel__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .75rem;
    padding: 2.5rem 3rem;
}
.vh-case-carousel__media { position: relative; overflow: hidden; }
.vh-case-carousel__media img,
.vh-case-carousel__media video {
    display: block;
    width: 100%;
    max-height: none;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.vh-case-carousel__media > span { display: grid; height: 100%; place-items: center; color: var(--vh-public-marketing-muted); }

@media (max-width: 48rem) {
    .vh-case-carousel .vh-carousel__track { width: 100%; min-height: 35rem; }
    .vh-case-carousel .vh-case-carousel__slide {
        min-height: 35rem;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    .vh-case-carousel__content { padding: 1.75rem 1.25rem; }
    .vh-case-carousel__media { margin: 0 1rem 1rem; border-radius: 1rem; aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
    .vh-case-carousel .vh-case-carousel__slide { transition: none !important; }
}
