/* Accueil cinématique — aligné sur la bibliothèque v2 */
.hm { color: #ececf1; }
.hm a { color: inherit; }
.hm .container { position: relative; }

.hm-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
    color: #7ee8e6; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px;
}
.hm-kicker svg { width: 14px; height: 14px; }
.hm h2 {
    color: #fff; font-weight: 800; letter-spacing: -0.03em;
    font-size: clamp(1.7rem, 3.4vw, 2.55rem); line-height: 1.12; margin: 0 0 12px;
}
.hm h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #a29bfe 0%, #00cec9 55%, #ff9d4d 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hm-lead { max-width: 540px; color: #9ea0ab; font-size: 1.05rem; line-height: 1.55; margin: 0; }
.hm-head { margin-bottom: 36px; }

.hm-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 50px; padding: 0 22px; border-radius: 999px;
    font-weight: 800; font-size: 0.95rem; text-decoration: none !important;
    transition: transform .28s cubic-bezier(.22,1,.36,1), background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease, filter .28s ease;
}
.hm-btn--fill {
    background: linear-gradient(120deg, #6c5ce7, #00cec9);
    color: #071018 !important;
    box-shadow: 0 14px 40px rgba(0,206,201,.18);
}
.hm-btn--fill:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    color: #071018 !important;
    box-shadow: 0 20px 48px rgba(0,206,201,.28);
}
.hm-btn--fill:active { transform: translateY(0) scale(.98); }
.hm-btn--ghost {
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff !important; background: rgba(255,255,255,0.04);
}
.hm-btn--ghost:hover { background: rgba(255,255,255,0.08); color: #fff !important; transform: translateY(-2px); }
.hm-hero__actions .hm-btn--ghost:hover {
    background: #fff;
    border-color: #fff;
    color: #071018 !important;
}
.hm-btn svg { width: 16px; height: 16px; }

/* Hero */
.hm-hero {
    position: relative;
    min-height: 88vh; min-height: 88dvh;
    display: flex; align-items: flex-end;
    padding: 130px 0 48px;
    overflow: hidden;
}
.hm-hero__media {
    position: absolute; inset: 0;
    pointer-events: none;
}
.hm-hero__media video,
.hm-hero__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(1.05) brightness(0.55);
}
.hm-hero__media video { z-index: 1; }
.hm-hero__shade {
    position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(90deg, rgba(7,8,13,0.88) 0%, rgba(7,8,13,0.55) 48%, rgba(7,8,13,0.28) 100%),
        linear-gradient(180deg, rgba(7,8,13,0.35) 0%, rgba(7,8,13,0.15) 40%, rgba(7,8,13,0.92) 100%);
}
.hm-hero__copy { position: relative; z-index: 2; max-width: 720px; }
.hm-hero__bar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 20px;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 8px;
}
.hm-hero__awards {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    flex-shrink: 0;
}
.hm-hero__awards-item {
    position: relative;
    display: block;
    flex: 0 0 auto;
    overflow: visible;
    cursor: default;
    outline: none;
}
.hm-hero__awards-clip {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 80px;
    height: 74px;
    overflow: hidden;
}
.hm-hero__awards-item--slim .hm-hero__awards-clip {
    width: 42px;
}
.hm-hero__awards-item img {
    display: block;
    height: 108px;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: top center;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35));
    transition: transform .22s ease;
}
.hm-hero__awards-item--wide .hm-hero__awards-clip {
    width: 148px;
    height: 74px;
}
.hm-hero__awards-item--wide img {
    height: 108px;
    width: auto;
}
.hm-hero__awards-item:hover img,
.hm-hero__awards-item:focus-visible img {
    transform: scale(1.08);
}
.hm-hero__awards [data-tooltip]::after,
.hm-hero__awards [data-tooltip]::before {
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 4;
}
.hm-hero__awards [data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    top: auto;
    transform: translateX(-50%) translateY(4px);
    white-space: normal;
    width: max-content;
    max-width: 220px;
    padding: 0.45rem 0.7rem;
    border-radius: 8px;
    background: #e8fbfb;
    color: #042022;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.hm-hero__awards [data-tooltip]::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    top: auto;
    transform: translateX(-50%) translateY(4px);
    border: 5px solid transparent;
    border-top-color: #e8fbfb;
    margin-bottom: -1px;
}
.hm-hero__awards [data-tooltip]:hover::after,
.hm-hero__awards [data-tooltip]:focus::after,
.hm-hero__awards [data-tooltip]:focus-visible::after,
.hm-hero__awards [data-tooltip]:hover::before,
.hm-hero__awards [data-tooltip]:focus::before,
.hm-hero__awards [data-tooltip]:focus-visible::before {
    opacity: 1;
}
.hm-hero__awards [data-tooltip]:hover::after,
.hm-hero__awards [data-tooltip]:focus::after,
.hm-hero__awards [data-tooltip]:focus-visible::after {
    transform: translateX(-50%) translateY(0);
}
.hm-hero__awards [data-tooltip]:hover::before,
.hm-hero__awards [data-tooltip]:focus::before,
.hm-hero__awards [data-tooltip]:focus-visible::before {
    transform: translateX(-50%) translateY(0);
}
.hm-hero__awards-item:last-child::after {
    left: auto;
    right: 0;
    transform: translateY(-4px);
}
.hm-hero__awards-item:last-child::before {
    left: auto;
    right: 18px;
    transform: translateY(-4px);
}
.hm-hero__awards-item:last-child:hover::after,
.hm-hero__awards-item:last-child:focus::after,
.hm-hero__awards-item:last-child:focus-visible::after,
.hm-hero__awards-item:last-child:hover::before,
.hm-hero__awards-item:last-child:focus::before,
.hm-hero__awards-item:last-child:focus-visible::before {
    transform: translateY(0);
}
.hm-hero h1 {
    color: #fff; font-weight: 800; letter-spacing: -0.04em;
    font-size: clamp(2.35rem, 5.2vw, 4.15rem); line-height: 0.98; margin: 0 0 20px;
    max-width: 14ch;
}
.hm-hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, #a29bfe 0%, #00cec9 50%, #ff9d4d 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hm-hero__lead {
    max-width: 28em; color: #c4c6d0; font-size: clamp(1.02rem, 2vw, 1.15rem);
    line-height: 1.55; margin: 0 0 28px;
}
.hm-hero__actions { display: flex; flex-wrap: nowrap; gap: 12px; margin-bottom: 0; flex-shrink: 0; }
.hm-meta { padding: 8px 0 0; }
.hm-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 22px 56px;
    padding: 22px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hm-hero__meta > div { min-width: 140px; }
.hm-hero__n { display: block; color: #fff; font-size: 1.55rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.hm-hero__l { display: block; color: #7d8090; font-size: 0.76rem; font-weight: 600; margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.hm-hero__platforms { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.hm-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.10);
    color: #d8d9e2; font-size: 0.78rem; font-weight: 700;
}
.hm-chip svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    display: block;
}

/* Univers — texte, pas les cartes bibliothèque */
.hm-uni { padding: 64px 0 20px; }
.hm-uni__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.hm-uni__card {
    padding: 26px 24px; border-radius: 20px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
}
.hm-uni__tag {
    display: block; color: #7ee8e6; font-size: 0.74rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}
.hm-uni__card strong { display: block; color: #fff; font-size: 1.22rem; font-weight: 800; margin-bottom: 8px; }
.hm-uni__card p { margin: 0; color: #9ea0ab; font-size: 0.92rem; line-height: 1.5; }

/* Encart bibliothèque */
.hm-lib-wrap { padding: 28px 0 12px; }
.hm-lib {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    min-height: 380px; overflow: hidden;
    border-radius: 24px; border: 1px solid rgba(255,255,255,0.10);
    text-decoration: none !important; color: inherit;
    background: #111318;
}
.hm-lib:hover .hm-lib__phone { transform: translateY(-8px) scale(1.03); }
.hm-lib__visual {
    position: relative; display: block; min-height: 320px; overflow: hidden;
    background: #0c0d12;
}
.hm-lib__bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; filter: saturate(1.05) brightness(0.55);
}
.hm-lib__phone {
    position: absolute; left: 50%; bottom: -8%;
    width: min(320px, 70%); height: auto;
    transform: translateX(-50%);
    filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5));
    transition: transform .45s ease;
    z-index: 1;
}
.hm-lib__copy {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px 36px; text-align: left;
}
.hm-lib__copy .hm-kicker { margin-bottom: 14px; }
.hm-lib__title {
    display: block; color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 12px;
}
.hm-lib__title em {
    font-style: normal;
    background: linear-gradient(120deg, #a29bfe 0%, #00cec9 55%, #ff9d4d 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hm-lib__text { display: block; color: #9ea0ab; font-size: 1.02rem; line-height: 1.5; max-width: 32em; margin-bottom: 16px; }
.hm-lib__tags { display: block; color: #7ee8e6; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px; }
.hm-mosaic__more { margin-top: 22px; }

/* How */
.hm-how { padding: 64px 0 28px; }
.hm-how__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.hm-how__step {
    padding: 22px 20px; border-radius: 18px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
}
.hm-how__n {
    display: block; color: #7ee8e6; font-size: 0.78rem; font-weight: 800;
    letter-spacing: 0.12em; margin-bottom: 12px;
}
.hm-how__step h3 { color: #fff; font-size: 1.08rem; font-weight: 800; margin: 0 0 8px; }
.hm-how__step p { margin: 0; color: #9ea0ab; font-size: 0.9rem; line-height: 1.45; }

/* Proof */
.hm-proof { padding: 56px 0 24px; }
.hm-proof__stage {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}
.hm-proof__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hm-proof__item {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 16px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: inherit;
    cursor: pointer;
    overflow: hidden;
    transition: background .2s ease, border-color .2s ease;
}
.hm-proof__item:hover {
    background: rgba(255,255,255,0.05);
}
.hm-proof__item.is-active {
    background: rgba(126,232,230,0.08);
    border-color: rgba(126,232,230,0.28);
}
.hm-proof__src {
    display: block;
    color: #7ee8e6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.hm-proof__ttl {
    display: block;
    color: #c8cad3;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}
.hm-proof__item.is-active .hm-proof__ttl { color: #fff; }
.hm-proof__bar {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: rgba(255,255,255,0.08);
}
.hm-proof__bar span {
    display: block;
    height: 100%;
    width: 0;
    background: #7ee8e6;
}
.hm-proof__item.is-active .hm-proof__bar span {
    animation: hmProofLoad 10s linear forwards;
}
@keyframes hmProofLoad {
    from { width: 0; }
    to { width: 100%; }
}
.hm-proof__stage.is-paused .hm-proof__bar span {
    animation-play-state: paused;
}
.hm-proof__view {
    position: relative;
    padding: 32px 28px;
    border-radius: 22px;
    background: #111318;
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 340px;
}
.hm-proof__article { display: none; }
.hm-proof__article.is-active {
    display: block;
    animation: hmProofIn .4s ease;
}
.hm-proof__k {
    margin: 0 0 14px;
    color: #7ee8e6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hm-proof__article blockquote {
    margin: 0 0 14px;
    color: #e4e5ec;
    font-size: 1.08rem;
    line-height: 1.55;
    font-weight: 500;
}
.hm-proof__article p:not(.hm-proof__k) {
    margin: 0 0 12px;
    color: #b4b6c0;
    font-size: 0.95rem;
    line-height: 1.55;
}
.hm-proof__article footer { color: #8a8c99; font-size: 0.86rem; }
.hm-proof__article footer strong { color: #fff; display: block; }
.hm-proof__link {
    display: block;
    width: fit-content;
    margin-top: 14px;
    color: #7ee8e6 !important;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none !important;
}
.hm-proof__link:hover { color: #fff !important; }
@keyframes hmProofIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

/* JIE 2026 encart — langage visuel jie2026.nakelasi.com */
.hm-jie-wrap { padding: 28px 0 8px; }
.hm-jie {
    --jie-bg: #071617;
    --jie-ink: #f4fbfb;
    --jie-cyan: #2eaeb7;
    --jie-cyan-2: #4bd2d9;
    --jie-display: "Fira Sans Condensed", "Arial Narrow", sans-serif;
    --jie-banner: "all-round-gothic", "Fira Sans Condensed", sans-serif;
    --jie-airport: "Share Tech Mono", ui-monospace, monospace;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
    min-height: 0;
    overflow: hidden;
    border-radius: 24px;
    color: var(--jie-ink);
    font-family: var(--jie-display);
    background:
        radial-gradient(900px 520px at 88% -8%, rgba(44, 176, 184, 0.22), transparent 55%),
        radial-gradient(640px 420px at 0% 88%, rgba(20, 79, 81, 0.55), transparent 52%),
        var(--jie-bg);
    border: 1px solid rgba(44, 176, 184, 0.28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.hm-jie__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 32px;
    overflow: hidden;
}
.hm-jie__sun {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    width: min(420px, 70%);
    aspect-ratio: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 48% 48%,
            rgba(126, 232, 238, 0.42) 0%,
            rgba(75, 210, 217, 0.28) 24%,
            rgba(46, 174, 183, 0.16) 48%,
            rgba(20, 79, 81, 0.10) 68%,
            transparent 80%);
    filter: blur(28px);
    box-shadow:
        0 0 80px 28px rgba(46, 174, 183, 0.14),
        0 0 160px 56px rgba(7, 22, 23, 0.2);
}
.hm-jie__sun::before {
    content: "";
    position: absolute;
    inset: -42%;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(75, 210, 217, 0.22) 0%,
            rgba(20, 79, 81, 0.16) 46%,
            transparent 72%);
    filter: blur(36px);
}
.hm-jie__sun::after {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle at 42% 40%,
        rgba(232, 251, 251, 0.35) 0%,
        rgba(75, 210, 217, 0.22) 32%,
        rgba(46, 174, 183, 0.10) 58%,
        transparent 74%);
    filter: blur(22px);
    animation: hm-jie-sun 8s ease-in-out infinite;
}
@keyframes hm-jie-sun {
    50% { transform: scale(1.06); opacity: 0.88; }
}
.hm-jie__copy > :not(.hm-jie__sun) { position: relative; z-index: 1; }
.hm-jie__kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(244, 251, 251, 0.68);
}
.hm-jie__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--jie-cyan);
    box-shadow: 0 0 12px var(--jie-cyan);
}
.hm-jie__meta {
    margin: 0 0 10px;
    color: var(--jie-cyan-2);
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hm h2.hm-jie__title {
    margin: 0 auto;
    max-width: 16ch;
    font-family: var(--jie-banner);
    font-weight: 800;
    font-size: clamp(1.85rem, 3.6vw, 3.05rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--jie-ink);
    background: none;
    -webkit-text-fill-color: var(--jie-ink);
    text-align: center;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}
.hm-jie__cd { margin: 0 0 1.35rem; }
.hm-jie__sr {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.hm-cd {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.hm-cd__unit {
    display: grid;
    justify-items: center;
    gap: 0.28rem;
}
.hm-cd__flaps {
    display: flex;
    gap: 4px;
    perspective: 240px;
}
.hm-cd__digit {
    position: relative;
    display: grid;
    place-items: center;
    width: 1.12em;
    height: 1.62em;
    overflow: hidden;
    border-radius: 5px;
    background: linear-gradient(180deg, #1a4448 0%, #0d2426 47%, #071314 52%, #0a1c1e 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 1px 0 rgba(0,0,0,0.4);
    color: #7ee8ee;
    font-family: var(--jie-airport);
    font-size: 1.55rem;
    line-height: 1;
    transform-origin: center;
    transform-style: preserve-3d;
}
.hm-cd__digit::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 1px;
    background: rgba(0,0,0,0.55);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
    pointer-events: none;
}
.hm-cd__digit.is-flip { animation: hm-cd-flip 0.28s ease-in-out; }
@keyframes hm-cd-flip {
    0% { transform: rotateX(0deg); }
    48% { transform: rotateX(-88deg); }
    52% { transform: rotateX(88deg); }
    100% { transform: rotateX(0deg); }
}
.hm-cd__label {
    font-family: var(--jie-airport);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: rgba(126, 232, 238, 0.55);
    line-height: 1;
}
.hm-cd__sep {
    display: grid;
    place-items: center;
    height: 1.62em;
    margin: 0;
    color: var(--jie-cyan-2);
    font-family: var(--jie-airport);
    font-size: 1.45rem;
    line-height: 1;
    opacity: 0.7;
    animation: hm-cd-blink 1s steps(1) infinite;
}
@keyframes hm-cd-blink { 50% { opacity: 0.15; } }
.hm-cd__live {
    display: none;
    align-items: center;
    font-family: var(--jie-airport);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: #9ff3c2;
    animation: hm-cd-live 1.6s ease-in-out infinite;
}
@keyframes hm-cd-live { 50% { opacity: 0.6; } }
.hm-jie__cd.is-live .hm-cd__live { display: inline-flex; }
.hm-jie__cd.is-live .hm-cd { display: none; }

.hm-jie__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-height: 48px;
    margin-top: 1.45rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(120deg, #2eaeb7, #6ce3e8);
    color: #042022 !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    box-shadow: 0 0 40px rgba(44, 176, 184, 0.35);
    transition: transform .28s cubic-bezier(0.16, 1, 0.3, 1);
}
.hm-jie__cta:hover { transform: translateY(-3px) scale(1.02); color: #042022 !important; }

.hm-jie__visual {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 78px 14px 10px;
    background:
        radial-gradient(900px 520px at 80% -10%, rgba(44, 176, 184, 0.16), transparent 55%),
        #071617;
    overflow: hidden;
}
.hm-jie__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.hm-jie__social {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.05rem;
    padding: 16px 10px;
    border-radius: 22px;
    background: rgba(7,8,13,0.55);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hm-jie__handle {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #7ee8e6;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}
.hm-jie__icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}
.hm-jie__icons a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform .25s ease;
}
.hm-jie__icons img {
    width: 32px;
    height: 32px;
    display: block;
    transition: transform .25s ease;
}
.hm-jie__icons a:hover,
.hm-jie__icons a:focus-visible {
    transform: scale(1.08);
}
.hm-jie__icons a:hover img,
.hm-jie__icons a:focus-visible img {
    transform: scale(1.06);
}

.hm-jie [data-tooltip] { position: relative; }
.hm-jie [data-tooltip]::after,
.hm-jie [data-tooltip]::before {
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 8;
}
.hm-jie [data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    white-space: nowrap;
    padding: 0.42rem 0.72rem;
    border-radius: 8px;
    background: #e8fbfb;
    color: #042022;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.hm-jie [data-tooltip]::before {
    content: "";
    position: absolute;
    border: 5px solid transparent;
}
.hm-jie [data-tooltip-pos="left"]::after {
    right: calc(100% + 12px);
    left: auto;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
}
.hm-jie [data-tooltip-pos="left"]::before {
    right: 100%;
    left: auto;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    border-left-color: #e8fbfb;
}
.hm-jie [data-tooltip-pos="top"]::after {
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
}
.hm-jie [data-tooltip-pos="top"]::before {
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(4px);
    border-top-color: #e8fbfb;
    margin-bottom: -1px;
}
.hm-jie [data-tooltip]:hover::after,
.hm-jie [data-tooltip]:focus::after,
.hm-jie [data-tooltip]:focus-visible::after,
.hm-jie [data-tooltip]:hover::before,
.hm-jie [data-tooltip]:focus::before,
.hm-jie [data-tooltip]:focus-visible::before {
    opacity: 1;
}
.hm-jie [data-tooltip-pos="left"]:hover::after,
.hm-jie [data-tooltip-pos="left"]:focus::after,
.hm-jie [data-tooltip-pos="left"]:focus-visible::after,
.hm-jie [data-tooltip-pos="left"]:hover::before,
.hm-jie [data-tooltip-pos="left"]:focus::before,
.hm-jie [data-tooltip-pos="left"]:focus-visible::before {
    transform: translateY(-50%) translateX(0);
}
.hm-jie [data-tooltip-pos="top"]:hover::after,
.hm-jie [data-tooltip-pos="top"]:focus::after,
.hm-jie [data-tooltip-pos="top"]:focus-visible::after,
.hm-jie [data-tooltip-pos="top"]:hover::before,
.hm-jie [data-tooltip-pos="top"]:focus::before,
.hm-jie [data-tooltip-pos="top"]:focus-visible::before {
    transform: translateX(-50%) translateY(0);
}

/* Testimonials */
.hm-voice { padding: 48px 0 16px; }
.hm .nk-testimonials { background: transparent !important; padding-top: 0; overflow: visible; }

/* Blog — dark */
.hm-news { padding: 32px 0 40px; }
.hm .nk-blog { background: transparent !important; padding-top: 0; }
.hm .nk-blog-card {
    background: #111318; border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
}
.hm .nk-blog-card:hover { border-color: rgba(162,155,254,0.35); box-shadow: 0 18px 40px rgba(0,0,0,0.25); }
.hm .nk-blog-card-body h5 a { color: #fff; }
.hm .nk-blog-card-body p { color: #9ea0ab; }
.hm .nk-blog-card-date { color: #7d8090; }
.hm .nk-blog-read-more { color: #7ee8e6; }
.hm .nk-blog-tag { background: rgba(255,255,255,0.06); color: #c4c6d0; border: 0; }

/* CTA */
.hm-cta { padding: 24px 0 80px; }
.hm-cta__box {
    padding: 40px 36px; border-radius: 24px;
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(0,206,201,0.16), transparent 50%),
        radial-gradient(80% 80% at 0% 100%, rgba(108,92,231,0.22), transparent 50%),
        #111318;
    border: 1px solid rgba(255,255,255,0.10);
}
.hm-cta__box h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 10px; letter-spacing: -0.03em; max-width: none; }
.hm-cta__box p { color: #9ea0ab; margin: 0 0 22px; max-width: 38em; }

@media (max-width: 980px) {
    .hm-uni__grid { grid-template-columns: 1fr; }
    .hm-how__grid { grid-template-columns: 1fr 1fr; }
    .hm-proof__stage { grid-template-columns: 1fr; }
    .hm-lib { grid-template-columns: 1fr; min-height: 0; }
    .hm-lib__visual { min-height: 280px; }
    .hm-lib__copy { padding: 28px 22px 32px; }
    .hm-jie { grid-template-columns: 1fr; min-height: 0; }
    .hm-jie__copy { padding: 32px 22px 24px; }
    .hm-jie__visual { order: -1; padding: 16px 16px 12px; }
    .hm-jie__visual img { max-height: none; }
    .hm-jie__social {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 10px;
        padding: 10px 14px;
        gap: 16px;
    }
    .hm-jie__handle {
        writing-mode: horizontal-tb;
        transform: none;
    }
    .hm-jie__icons { flex-direction: row; }
    .hm-jie [data-tooltip-pos="left"]::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: calc(100% + 10px);
        transform: translateX(-50%) translateY(4px);
    }
    .hm-jie [data-tooltip-pos="left"]::before {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 100%;
        transform: translateX(-50%) translateY(4px);
        border-left-color: transparent;
        border-top-color: #e8fbfb;
        margin-bottom: -1px;
    }
    .hm-jie [data-tooltip-pos="left"]:hover::after,
    .hm-jie [data-tooltip-pos="left"]:focus::after,
    .hm-jie [data-tooltip-pos="left"]:focus-visible::after,
    .hm-jie [data-tooltip-pos="left"]:hover::before,
    .hm-jie [data-tooltip-pos="left"]:focus::before,
    .hm-jie [data-tooltip-pos="left"]:focus-visible::before {
        transform: translateX(-50%) translateY(0);
    }
}
@media (max-width: 640px) {
    .hm-hero { align-items: flex-end; padding: 120px 0 40px; min-height: 92dvh; }
    .hm-hero__shade {
        background:
            linear-gradient(180deg, rgba(7,8,13,0.25) 0%, rgba(7,8,13,0.55) 40%, rgba(7,8,13,0.94) 100%);
    }
    .hm-uni__grid, .hm-how__grid { grid-template-columns: 1fr; }
    .hm-uni__card { min-height: 0; }
    .hm-hero__actions .hm-btn { width: auto; flex: 0 1 auto; }
    .hm-hero__bar { justify-content: space-between; gap: 10px; }
    .hm-hero__awards { gap: 16px; }
    .hm-hero__awards-clip { width: 58px; height: 54px; }
    .hm-hero__awards-item--slim .hm-hero__awards-clip { width: 30px; }
    .hm-hero__awards-item img { height: 80px; }
    .hm-hero__awards-item--wide .hm-hero__awards-clip { width: 110px; height: 54px; }
    .hm-hero__awards-item--wide img { height: 80px; }
    .hm h2.hm-jie__title { max-width: none; }
    .hm-cta__box { padding: 28px 20px; }
}
@media (prefers-reduced-motion: reduce) {
    .hm-hero__media video { display: none; }
    .hm-uni__card img, .hm-tile { transition: none; }
    .hm-cd__digit.is-flip { animation: none; }
    .hm-cd__sep { animation: none; }
    .hm-jie__sun::after { animation: none; }
    .hm-proof__item.is-active .hm-proof__bar span { animation: none; width: 100%; }
    .hm-proof__article.is-active { animation: none; }
}
