/* Contenu libre — démos GSAP (.gsap-demo, posts section « libre ») */
.gsap-demo-stat {
    text-align: center;
    padding: 1.25rem 0.75rem;
}

.gsap-demo-stat-value {
    display: block;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--showcase-accent, #0d6efd);
}

.gsap-demo-stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.gsap-demo-bar {
    height: 0.5rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--showcase-accent, #0d6efd) 18%, transparent);
    overflow: hidden;
}

.gsap-demo-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--showcase-accent, #0d6efd), color-mix(in srgb, var(--showcase-accent, #0d6efd) 65%, #fff));
}

.gsap-demo-hover-card {
    transition: box-shadow 0.2s ease;
    cursor: default;
}

.gsap-demo-hover-card.is-gsap-active {
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
}

/* Contenu libre — GSAP text reveal : classes fonctionnelles uniquement */
.gsap-text-reveal__body--lines {
    perspective: 500px;
}

.gsap-text-reveal__char,
.gsap-text-reveal__word,
.gsap-text-reveal__line {
    display: inline-block;
    will-change: transform, opacity;
}

.gsap-text-reveal__char.is-space {
    min-width: 0.3em;
}

.gsap-text-reveal__word + .gsap-text-reveal__word {
    margin-left: 0.28em;
}

.gsap-text-reveal__line {
    display: block;
}

/* Contenu libre — GSAP carousel (slide / fade + swipe) */
.gsap-carousel {
    position: relative;
}

.gsap-carousel__viewport {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
}

.gsap-carousel__viewport.is-dragging {
    cursor: grabbing;
}

.gsap-carousel__track {
    will-change: transform;
}

.gsap-carousel--slide .gsap-carousel__track {
    display: flex;
}

.gsap-carousel--slide .gsap-carousel__slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.gsap-carousel--fade .gsap-carousel__track {
    position: relative;
}

.gsap-carousel--fade .gsap-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.gsap-carousel--fade .gsap-carousel__slide.is-active {
    z-index: 2;
}

.gsap-carousel__viewport--fixed {
    min-height: min(52vw, 400px);
}

.gsap-carousel--fade .gsap-carousel__viewport--fixed .gsap-carousel__track {
    position: absolute;
    inset: 0;
}

.gsap-carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    pointer-events: none;
}

.gsap-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.gsap-carousel__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

.gsap-carousel__dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: color-mix(in srgb, var(--gsap-carousel-accent, #6c757d) 35%, transparent);
    cursor: pointer;
}

.gsap-carousel__dot.is-active {
    background: var(--gsap-carousel-accent, #0d6efd);
    transform: scale(1.15);
}

/* Contenu libre — GSAP letter reveal (lettres alternées haut / bas) */
.gsap-letter-reveal__stage {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(88vh, 720px);
    padding: 2rem 1rem;
    overflow: hidden;
}

.gsap-letter-reveal__char {
    display: inline-block;
    opacity: 0;
    color: var(--gsap-letter-reveal-color, var(--legal-accent, currentColor));
    will-change: transform, opacity;
}

.gsap-letter-reveal__char.is-space {
    min-width: 0.35em;
}

.gsap-letter-reveal__line {
    display: block;
    margin: 0;
    min-height: 1.1em;
    text-align: center;
    line-height: 1.08;
    letter-spacing: 0.14em;
    color: transparent;
    user-select: none;
}

/* Contenu libre — GSAP shape build (blocs + contour SVG) */
.gsap-shape-build__stage {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(72vh, 560px);
    padding: 2rem 1rem;
    overflow: hidden;
}

.gsap-shape-build__grid-wrap {
    position: relative;
    width: min(280px, 72vw);
    margin: 0 auto;
    aspect-ratio: 5 / 7;
}

.gsap-shape-build__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(7, 1fr);
    gap: 5px;
    width: 100%;
    height: 100%;
}

.gsap-shape-build__block {
    opacity: 0;
    border-radius: 2px;
    background: color-mix(in srgb, var(--gsap-shape-build-color, var(--legal-accent, #e7393b)) 12%, #f3f4f6);
    border: 1px solid color-mix(in srgb, var(--gsap-shape-build-color, var(--legal-accent, #e7393b)) 22%, #e5e7eb);
    will-change: transform, opacity;
}

.gsap-shape-build__block.is-window {
    background: color-mix(in srgb, var(--gsap-shape-build-color, var(--legal-accent, #e7393b)) 35%, #fff);
}

.gsap-shape-build__block.is-structure {
    background: var(--gsap-shape-build-color, var(--legal-accent, #e7393b));
    border-color: var(--gsap-shape-build-color, var(--legal-accent, #e7393b));
}

.gsap-shape-build__block.is-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--gsap-shape-build-color, var(--legal-accent, #e7393b)) 8%, #fff);
    border-color: color-mix(in srgb, var(--gsap-shape-build-color, var(--legal-accent, #e7393b)) 18%, #e5e7eb);
}

.gsap-shape-build__block-letter {
    font-weight: 700;
    font-size: clamp(0.7rem, 4.2vw, 1rem);
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--gsap-shape-build-letter-color, var(--gsap-shape-build-color, #e7393b));
    user-select: none;
}

.gsap-shape-build__block.is-letter-line .gsap-shape-build__block-letter,
.gsap-shape-build__block.is-letter-bar .gsap-shape-build__block-letter {
    font-size: clamp(0.5rem, 2.8vw, 0.72rem);
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gsap-shape-build__svg {
    display: block;
    width: min(340px, 82vw);
    height: auto;
    margin: 0 auto;
    overflow: visible;
}

.gsap-shape-build__svg--landscape {
    width: min(640px, 96vw);
}

.gsap-shape-build__path {
    fill: none;
    stroke: var(--gsap-shape-build-color, var(--legal-accent, #e7393b));
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    visibility: hidden;
}

/* Paire GSAP : forme + texte côte à côte (responsive, espacement réduit) */
.gsap-hero-split {
    margin-bottom: 0;
}

.gsap-hero-split .gsap-letter-reveal__stage,
.gsap-hero-split .gsap-shape-build__stage {
    min-height: min(26vh, 200px);
    padding: 0.4rem 0.35rem;
}

.gsap-hero-split .gsap-shape-build__svg {
    width: min(240px, 88%);
}

.gsap-hero-split .gsap-letter-reveal__line.display-2 {
    font-size: clamp(1.65rem, 7vw, 2.5rem);
}

.gsap-hero-split .gsap-letter-reveal__line.display-6 {
    font-size: clamp(0.95rem, 3.6vw, 1.3rem);
    letter-spacing: 0.1em;
}

@media (min-width: 576px) {
    .gsap-hero-split .gsap-letter-reveal__stage,
    .gsap-hero-split .gsap-shape-build__stage {
        min-height: min(32vh, 280px);
        padding: 0.5rem 0.4rem;
    }

    .gsap-hero-split .gsap-shape-build__svg {
        width: min(220px, 95%);
    }
}

@media (min-width: 768px) {
    .gsap-hero-split .gsap-letter-reveal__stage,
    .gsap-hero-split .gsap-shape-build__stage {
        min-height: min(38vh, 320px);
        padding: 0.6rem 0.5rem;
    }
}

/* Hero split plein écran : pas d’espace entre les deux colonnes */
.gsap-hero-split--flush {
    margin-bottom: 0;
    padding: 0;
}

.gsap-hero-split--flush > .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    margin-left: 0;
    margin-right: 0;
}

.gsap-hero-split--flush > .row > [class*='col-'] {
    padding: 0;
}

.gsap-hero-split--flush .gsap-hero-split__pane {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Hauteur viewport desktop : --h-5 … --h-100 par pas de 5 (ex. deux --h-50 = page pleine) */
.gsap-hero-split--h-5 { --gsap-hero-split-h: 5; }
.gsap-hero-split--h-10 { --gsap-hero-split-h: 10; }
.gsap-hero-split--h-15 { --gsap-hero-split-h: 15; }
.gsap-hero-split--h-20 { --gsap-hero-split-h: 20; }
.gsap-hero-split--h-25 { --gsap-hero-split-h: 25; }
.gsap-hero-split--h-30 { --gsap-hero-split-h: 30; }
.gsap-hero-split--h-35 { --gsap-hero-split-h: 35; }
.gsap-hero-split--h-40 { --gsap-hero-split-h: 40; }
.gsap-hero-split--h-45 { --gsap-hero-split-h: 45; }
.gsap-hero-split--h-50 { --gsap-hero-split-h: 50; }
.gsap-hero-split--h-55 { --gsap-hero-split-h: 55; }
.gsap-hero-split--h-60 { --gsap-hero-split-h: 60; }
.gsap-hero-split--h-65 { --gsap-hero-split-h: 65; }
.gsap-hero-split--h-70 { --gsap-hero-split-h: 70; }
.gsap-hero-split--h-75 { --gsap-hero-split-h: 75; }
.gsap-hero-split--h-80 { --gsap-hero-split-h: 80; }
.gsap-hero-split--h-85 { --gsap-hero-split-h: 85; }
.gsap-hero-split--h-90 { --gsap-hero-split-h: 90; }
.gsap-hero-split--h-95 { --gsap-hero-split-h: 95; }
.gsap-hero-split--h-100 { --gsap-hero-split-h: 100; }

.gsap-hero-split[class*='--h-'] {
    display: flex;
    flex-direction: column;
}

.gsap-hero-split[class*='--h-'] > .row {
    flex: 1;
    width: 100%;
}

.gsap-hero-split[class*='--h-'] .gsap-letter-reveal__stage,
.gsap-hero-split[class*='--h-'] .gsap-shape-build__stage {
    width: 100%;
    padding: 0;
    margin: 0;
}

.gsap-hero-split[class*='--h-'] .gsap-shape-build__svg {
    width: auto;
    max-width: min(300px, 92%);
    height: auto;
}

@media (min-width: 576px) {
    .gsap-hero-split[class*='--h-'] > .row > [class*='col-'] {
        display: flex;
    }

    .gsap-hero-split[class*='--h-'] .gsap-hero-split__pane {
        display: flex;
        flex: 1;
        flex-direction: column;
    }

    .gsap-hero-split[class*='--h-'] > .row {
        min-height: calc(var(--gsap-hero-split-h) * 1vh);
        height: calc(var(--gsap-hero-split-h) * 1vh);
    }

    .gsap-hero-split[class*='--h-'] .gsap-letter-reveal__stage,
    .gsap-hero-split[class*='--h-'] .gsap-shape-build__stage {
        flex: 1;
        min-height: calc(var(--gsap-hero-split-h) * 1vh);
    }

    .gsap-hero-split[class*='--h-'] .gsap-shape-build__svg {
        max-height: min(calc(var(--gsap-hero-split-h) * 0.92 * 1vh), 88%);
    }
}

/* Hermes CMS — présentation plein écran (Splide fade + GSAP letter-reveal) */
.hermes-hero-present {
    --hermes-hero-accent: #6b9fd4;
    --hermes-hero-letter-accent: #e7393b;
    --hermes-hero-bg-a: #0f1419;
    --hermes-hero-bg-b: #121a22;
    --hermes-hero-bg-c: #0d1218;
    --hermes-hero-text: #f4f6f8;
    --hermes-hero-muted: #9ca8b4;
    margin: 0;
    padding: 0;
}

.hermes-hero-present--static .hermes-hero-present__screen {
    display: flex;
    align-items: stretch;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.splide-carousel--hero-present {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    --splide-carousel-accent: var(--hermes-hero-accent, #6b9fd4);
}

.splide-carousel--hero-present .splide__track,
.splide-carousel--hero-present .splide__list,
.splide-carousel--hero-present .splide__slide {
    height: 100%;
}

.splide-carousel--hero-present .splide__slide {
    display: flex;
    align-items: stretch;
}

.splide-carousel--hero-present .splide__pagination {
    bottom: 1.35rem;
    padding: 0;
    z-index: 4;
}

.splide-carousel--hero-present .splide__pagination__page {
    background: color-mix(in srgb, var(--hermes-hero-text, #f4f6f8) 28%, transparent);
    opacity: 1;
}

.splide-carousel--hero-present .splide__pagination__page.is-active {
    background: var(--hermes-hero-accent, #6b9fd4);
    transform: scale(1.15);
}

.splide-carousel--hero-present .splide__track {
    z-index: 1;
}

.splide-carousel--hero-present .splide__arrows {
    z-index: 6;
    pointer-events: none;
}

.splide-carousel--hero-present .splide__arrow {
    z-index: 6;
    pointer-events: auto;
    background: color-mix(in srgb, var(--hermes-hero-bg-a, #0f1419) 72%, var(--hermes-hero-accent, #6b9fd4));
    border: 1px solid color-mix(in srgb, var(--hermes-hero-text, #f4f6f8) 18%, transparent);
    transition: opacity 0.22s ease, background 0.2s ease;
}

@media (max-width: 991.98px) {
    .splide-carousel--hero-present .splide__arrow {
        opacity: 0 !important;
    }

    .splide-carousel--hero-present.is-arrows-active .splide__arrow,
    .splide-carousel--hero-present .splide__arrow:hover,
    .splide-carousel--hero-present .splide__arrow:focus-visible {
        opacity: 1 !important;
    }
}

.hermes-hero-present__slide {
    color: var(--hermes-hero-text, #f4f6f8);
    background: var(--hermes-hero-bg-a, #0f1419);
}

.hermes-hero-present__slide--tone-b {
    background: var(--hermes-hero-bg-b, #121a22);
}

.hermes-hero-present__slide--tone-c {
    background: var(--hermes-hero-bg-c, #0d1218);
}

.hermes-hero-present__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    padding: clamp(2rem, 6vh, 4rem) clamp(0.85rem, 4vw, 3rem) clamp(3.5rem, 8vh, 5rem);
    text-align: center;
}

.splide-carousel--hero-present .gsap-letter-reveal,
.hermes-hero-present--static .gsap-letter-reveal {
    width: 100%;
    max-width: 100%;
}

.splide-carousel--hero-present .gsap-letter-reveal__stage.hermes-hero-present__letter-stage,
.hermes-hero-present--static .gsap-letter-reveal__stage.hermes-hero-present__letter-stage {
    width: 100%;
    max-width: 100%;
}

.hermes-hero-present__kicker {
    margin: 0 0 1rem;
    font-size: clamp(0.72rem, 1.8vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hermes-hero-accent, #6b9fd4);
}

.hermes-hero-present__letter-stage {
    min-height: auto !important;
    padding: 0 !important;
    overflow: visible;
}

.splide-carousel--hero-present .gsap-letter-reveal__line.hermes-hero-present__letter-line,
.hermes-hero-present--static .gsap-letter-reveal__line.hermes-hero-present__letter-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    column-gap: 0.2em;
    row-gap: 0.15em;
}

.splide-carousel--hero-present .hermes-hero-present__word,
.hermes-hero-present--static .hermes-hero-present__word {
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.splide-carousel--hero-present .gsap-letter-reveal__line.hermes-hero-present__title,
.hermes-hero-present--static .gsap-letter-reveal__line.hermes-hero-present__title {
    font-size: clamp(1.35rem, 6.5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.1;
    color: transparent;
}

.splide-carousel--hero-present .gsap-letter-reveal__line.hermes-hero-present__subtitle,
.hermes-hero-present--static .gsap-letter-reveal__line.hermes-hero-present__subtitle {
    margin-top: 0.35rem;
    font-size: clamp(0.78rem, 2.8vw, 1.45rem);
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: transparent;
}

.splide-carousel--hero-present .gsap-letter-reveal__char,
.hermes-hero-present--static .gsap-letter-reveal__char {
    color: var(--gsap-letter-reveal-color, var(--hermes-hero-text, #f4f6f8));
}

.splide-carousel--hero-present .gsap-letter-reveal__char.is-accent,
.hermes-hero-present--static .gsap-letter-reveal__char.is-accent {
    color: var(--hermes-hero-letter-accent, #e7393b);
}

.hermes-hero-present:not(.is-ready) .gsap-letter-reveal__line {
    visibility: hidden;
}

.hermes-hero-present.is-ready .gsap-letter-reveal__line {
    visibility: visible;
}

.hermes-hero-present__body {
    width: 100%;
    max-width: 42rem;
    margin: 1.35rem auto 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.55;
    text-align: center;
    color: var(--hermes-hero-muted, #9ca8b4);
    opacity: 0;
    transform: translateY(1.35rem);
    will-change: transform, opacity;
}

.hermes-hero-present__body strong {
    color: var(--hermes-hero-text, #f4f6f8);
    font-weight: 600;
}

.hermes-hero-present__body code {
    color: var(--hermes-hero-text, #f4f6f8);
    background: color-mix(in srgb, var(--hermes-hero-accent, #6b9fd4) 14%, transparent);
    padding: 0.1em 0.35em;
    border-radius: 0.2rem;
    font-size: 0.92em;
}

.hermes-hero-present__icon {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--hermes-hero-accent, #6b9fd4);
    opacity: 0;
    transform: translateY(1.35rem);
}

.hermes-hero-present__list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 36rem;
    text-align: center;
}

.hermes-hero-present__list li {
    position: relative;
    padding: 0.45rem 0.5rem;
    border-bottom: 1px solid color-mix(in srgb, var(--hermes-hero-text, #f4f6f8) 8%, transparent);
    font-size: clamp(0.92rem, 1.9vw, 1.05rem);
    line-height: 1.45;
    color: var(--hermes-hero-muted, #9ca8b4);
}

.hermes-hero-present__list li::before {
    content: '';
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.45rem;
    border-radius: 50%;
    vertical-align: middle;
    background: var(--hermes-hero-accent, #6b9fd4);
}

@media (max-width: 767.98px) {
    .hermes-hero-present__inner {
        padding-inline: clamp(0.65rem, 3.5vw, 1.25rem);
    }

    .hermes-hero-present__kicker {
        width: 100%;
        max-width: 100%;
        letter-spacing: 0.14em;
        line-height: 1.45;
    }

    .splide-carousel--hero-present .gsap-letter-reveal__line.hermes-hero-present__title,
    .hermes-hero-present--static .gsap-letter-reveal__line.hermes-hero-present__title {
        font-size: clamp(1.2rem, 5.8vw, 2.1rem);
        letter-spacing: 0.04em;
    }

    .splide-carousel--hero-present .gsap-letter-reveal__line.hermes-hero-present__subtitle,
    .hermes-hero-present--static .gsap-letter-reveal__line.hermes-hero-present__subtitle {
        font-size: clamp(0.7rem, 2.6vw, 0.95rem);
        letter-spacing: 0.1em;
    }

    .hermes-hero-present__body,
    .hermes-hero-present__list {
        max-width: 100%;
        width: 100%;
        padding-inline: 0.15rem;
    }

    .hermes-hero-present__actions {
        width: 100%;
        padding-inline: 0.25rem;
    }
}

@media (max-width: 991.98px) {
    .splide-carousel--hero-present {
        height: 100svh !important;
        height: 100dvh !important;
        max-height: 100svh !important;
        max-height: 100dvh !important;
    }

    .splide-carousel--hero-present .splide__pagination {
        bottom: max(1.15rem, calc(env(safe-area-inset-bottom, 0px) + 0.85rem));
        z-index: 6;
    }

    .hermes-hero-present__inner {
        align-items: stretch;
        justify-content: center;
        padding-top: clamp(2rem, 9vh, 3.5rem);
        padding-bottom: clamp(3.5rem, 11vh, 5rem);
    }

    .hermes-hero-present__kicker,
    .hermes-hero-present__icon {
        margin-bottom: 0.65rem;
        align-self: center;
    }

    .splide-carousel--hero-present .gsap-letter-reveal {
        align-self: center;
    }

    .hermes-hero-present__body {
        margin-top: 1rem;
    }

    .hermes-hero-present__body.hermes-hero-present__list,
    .hermes-hero-present__list {
        text-align: left;
        align-self: stretch;
    }

    .hermes-hero-present__list li {
        text-align: left;
        padding-inline: 0.15rem 0.35rem;
    }
}

.hermes-hero-present__list li strong {
    color: var(--hermes-hero-text, #f4f6f8);
}

.hermes-hero-present__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 1.75rem;
    opacity: 0;
    transform: translateY(1.35rem);
}

.hermes-hero-present__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    border-radius: 0.35rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hermes-hero-present__btn--primary {
    color: var(--hermes-hero-bg-a, #0f1419);
    background: var(--hermes-hero-accent, #6b9fd4);
    border: 1px solid var(--hermes-hero-accent, #6b9fd4);
}

.hermes-hero-present__btn--primary:hover {
    color: var(--hermes-hero-bg-a, #0f1419);
    background: color-mix(in srgb, var(--hermes-hero-accent, #6b9fd4) 82%, #fff);
}

.hermes-hero-present__btn--ghost {
    color: var(--hermes-hero-text, #f4f6f8);
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--hermes-hero-text, #f4f6f8) 28%, transparent);
}

.hermes-hero-present__btn--ghost:hover {
    color: var(--hermes-hero-text, #f4f6f8);
    border-color: var(--hermes-hero-accent, #6b9fd4);
    background: color-mix(in srgb, var(--hermes-hero-accent, #6b9fd4) 12%, transparent);
}
