/* ═══════════════════════════════════════════════════════════════
   PAGE: Home | Namespace: hm-* | File: /static/css/shell/mani-home-ltr.css
   ═══════════════════════════════════════════════════════════════ */

/* ── 01. Root Tokens ── */
.pg-home {
    --ink: #0b1120;
    --ink2: #1a2340;
    --slate: #5b6b8a;
    --silver: #94a3b8;
    --mist: #e2e8f0;
    --snow: #f8fafc;
    --white: #ffffff;
    --blue: #2563eb;
    --blue-h: #1d4ed8;
    --blue-l: #eff6ff;
    --green: #059669;
    --green-l: #ecfdf5;
    --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --r-s: 10px;
    --r-m: 14px;
    --r-l: 18px;
    --r-xl: 22px;
    font-family: var(--sans);
    color: var(--ink2);
    line-height: 1.6;
}

.pg-home a {
    text-decoration: none;
    color: inherit;
}

.pg-home img {
    max-width: 100%;
    display: block;
}

/* ── 02. Layout Helpers ── */
.pg-home .hm-mx {
    max-width: 1180px;
    margin: 0 auto;
}

.pg-home .hm-mx--center {
    text-align: center;
}

/* ── 03. Shared Section Typography ── */
.hm-eye {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.hm-sh {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.5px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hm-sp {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--slate);
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hm-hero {
    position: relative;
    padding: 72px 24px 68px;
    background: var(--white);
    overflow: hidden;
    border-bottom: 1px solid var(--mist);
}

.hm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 99, 235, .08), transparent 70%);
    pointer-events: none;
}

.hm-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(226, 232, 240, .5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, .5) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, #000 20%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent);
}

.hm-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hm-hero-text {
    max-width: 540px;
}

.hm-hero h1 {
    font-size: 40px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hm-hero h1 em {
    color: var(--blue);
    font-style: normal;
}

.hm-hero-sub {
    font-size: 17px;
    font-weight: 600;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 26px;
}

.hm-hero-sub strong {
    color: var(--ink);
}

.hm-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.hm-chk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink2);
}

.hm-chk i {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.hm-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hm-hero-note {
    font-size: 13px;
    font-weight: 700;
    color: var(--silver);
    line-height: 1.5;
}

.hm-hero-note strong {
    color: var(--blue);
}

.hm-slider {
    position: relative;
    width: 100%;
    max-width: 540px;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hm-slider-track {
    display: flex;
    height: 100%;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.hm-slider-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.hm-slider-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hm-slider-dots {
    display: none;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.hm-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mist);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}

.hm-slider-dot.is-on {
    background: var(--blue);
}

@media(max-width: 900px) {
    .hm-hero-grid {
        grid-template-columns: 1fr !important;
        text-align: left !important;
    }
    .hm-hero {
        padding: 48px 24px 68px !important;
    }
    .hm-hero-text {
        max-width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .hm-checks {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
    }
    .hm-chk {
        display: flex !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }
    .hm-hero-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 15px !important;
    }
    .hm-hero-note {
        text-align: left !important;
        margin-top: 0 !important;
    }
    .hm-slider {
        margin: 28px auto 0 !important;
        max-width: 420px !important;
    }
}

/* ════════════════════════════════════════════════════════════════
   PAIN
   ════════════════════════════════════════════════════════════════ */
.hm-pain {
    padding: 80px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--mist);
}

.hm-pain-box {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}

.hm-pain-box h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.hm-pain-box h2 span {
    color: var(--blue);
}

.hm-pain-box p {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 28px;
}

.hm-pain-box p strong {
    color: var(--ink);
}

/* ════════════════════════════════════════════════════════════════
   MODULES
   ════════════════════════════════════════════════════════════════ */
.hm-modules {
    padding: 80px 24px;
    background: var(--snow);
    border-bottom: 1px solid var(--mist);
}

.hm-mod-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto;
}

.hm-mod-item {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-l);
    padding: 28px 14px;
    text-align: center;
    transition: border-color .25s, box-shadow .25s;
}

.hm-mod-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
}

.hm-mod-item img {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    object-fit: contain;
}

.hm-mod-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

@media(max-width: 992px) {
    .hm-mod-grid {
        grid-template-columns: repeat(4, 1fr);
        justify-content: center;
    }
}

@media(max-width: 768px) {
    .hm-mod-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
    .hm-mod-item {
        padding: 20px 10px;
    }
    .hm-mod-item img {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }
    .hm-mod-item h4 {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -0.2px;
    }
}

@media(max-width: 580px) {
    .hm-mod-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media(max-width: 380px) {
    .hm-mod-item h4 {
        font-size: 18px;
        font-weight: 600;
    }
}

/* ════════════════════════════════════════════════════════════════
   INTEGRATIONS
   ════════════════════════════════════════════════════════════════ */
.hm-integ {
    padding: 80px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--mist);
}

.hm-integ-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.hm-integ-item {
    background: var(--snow);
    border: 1px solid var(--mist);
    border-radius: var(--r-l);
    padding: 24px 14px;
    text-align: center;
    transition: border-color .25s, box-shadow .25s;
}

.hm-integ-item:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(37, 99, 235, .08);
}

.hm-integ-item img {
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.hm-integ-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

@media(max-width: 992px) {
    .hm-integ-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width: 768px) {
    .hm-integ-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 480px) {
    .hm-integ-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ════════════════════════════════════════════════════════════════
   EMAIL
   ════════════════════════════════════════════════════════════════ */
.hm-email {
    padding: 80px 24px;
    background: var(--snow);
    border-bottom: 1px solid var(--mist);
}

.hm-email-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue-l);
    color: var(--blue);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid #dbeafe;
}

.hm-email-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    animation: mni-pulse 2s ease infinite;
    flex-shrink: 0;
}

.hm-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hm-ecard {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-xl);
    padding: 26px 30px;
    text-align: center;
    min-width: 190px;
}

.hm-ecard .ec-icon {
    font-size: 30px;
    margin-bottom: 8px;
}

.hm-ecard h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.hm-ecard p {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
}

.hm-eplus {
    font-size: 26px;
    color: var(--blue);
    font-weight: 900;
}

.hm-roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.hm-role {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-m);
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink2);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: border-color .2s, background .2s;
}

.hm-role:hover {
    border-color: var(--blue);
    background: var(--blue-l);
}

.hm-role span {
    color: var(--blue);
}

.hm-email-feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 940px;
    margin: 0 auto 30px;
}

.hm-efeat {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-l);
    padding: 24px 18px;
    text-align: center;
    transition: border-color .25s, box-shadow .25s;
}

.hm-efeat:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.hm-efeat .ef-icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.hm-efeat h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.hm-efeat p {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.65;
}

@media(max-width: 992px) {
    .hm-email-feats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hm-eplus {
        display: none;
    }
}

@media(max-width: 480px) {
    .hm-email-feats {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════════════════════
   BACKUP
   ════════════════════════════════════════════════════════════════ */
.hm-backup {
    padding: 80px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--mist);
}

.hm-backup-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-l);
    color: var(--green);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid #d1fae5;
}

.hm-backup-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: mni-pulse 2s ease infinite;
    flex-shrink: 0;
}

.hm-bflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hm-bnode {
    background: var(--snow);
    border: 1px solid var(--mist);
    border-radius: var(--r-xl);
    padding: 24px 26px;
    text-align: center;
    min-width: 150px;
}

.hm-bnode .bn-icon {
    font-size: 26px;
    margin-bottom: 6px;
}

.hm-bnode h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.hm-bnode p {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
}

.hm-barrow {
    color: var(--silver);
    font-size: 18px;
}

.hm-bstats {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hm-bstat {
    text-align: center;
}

.hm-bstat .bs-num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
}

.hm-bstat .bs-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hm-bfeats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 940px;
    margin: 0 auto;
}

.hm-bfeat {
    background: var(--snow);
    border: 1px solid var(--mist);
    border-radius: var(--r-l);
    padding: 24px 18px;
    text-align: center;
    transition: border-color .25s, box-shadow .25s;
}

.hm-bfeat:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.hm-bfeat .bf-icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.hm-bfeat h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.hm-bfeat p {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.65;
}

@media(max-width: 992px) {
    .hm-bfeats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .hm-bflow {
        flex-direction: column;
        gap: 12px;
    }
    .hm-barrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }
    .hm-bnode {
        width: 100%;
        max-width: 280px;
        padding: 18px;
    }
    .hm-bstats {
        gap: 24px 10px;
        justify-content: space-evenly;
    }
    .hm-bstat {
        width: 40%;
    }
    .hm-bstat .bs-num {
        font-size: 24px;
    }
}

@media(max-width: 480px) {
    .hm-bfeats {
        grid-template-columns: 1fr;
    }
    .hm-bstat {
        width: 100%;
    }
}

/* ════════════════════════════════════════════════════════════════
   JOURNEY
   ════════════════════════════════════════════════════════════════ */
.hm-journey {
    padding: 80px 24px;
    background: var(--snow);
    border-bottom: 1px solid var(--mist);
}

.hm-jtrack {
    max-width: 700px;
    margin: 0 auto;
}

.hm-jstep {
    display: flex;
    gap: 18px;
}

.hm-jleft {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 44px;
}

.hm-jnum {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--blue-l);
    color: var(--blue);
    font-size: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.hm-jstep:last-child .hm-jnum {
    background: var(--green-l);
    color: var(--green);
}

.hm-jline {
    width: 2px;
    flex-grow: 1;
    background: var(--mist);
    margin: 4px 0;
}

.hm-jcard {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-xl);
    padding: 26px 24px;
    flex-grow: 1;
    margin-bottom: 16px;
    transition: border-color .25s, box-shadow .25s;
}

.hm-jcard:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
}

.hm-jcard h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.hm-jcard .jt {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}

.hm-jcard p {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 12px;
}

.hm-jtags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hm-jtags span {
    padding: 4px 10px;
    background: var(--snow);
    border: 1px solid var(--mist);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
}

/* ════════════════════════════════════════════════════════════════
   CLIENTS
   ════════════════════════════════════════════════════════════════ */
.hm-clients {
    padding: 80px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--mist);
    overflow: hidden;
}

.hm-clients-link {
    text-align: center;
    margin-top: 40px;
}

/* ════════════════════════════════════════════════════════════════
   BENEFITS
   ════════════════════════════════════════════════════════════════ */
.hm-benefits {
    padding: 80px 24px;
    background: var(--snow);
    border-bottom: 1px solid var(--mist);
}

.hm-ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 940px;
    margin: 0 auto;
}

.hm-ben-item {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-xl);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.hm-ben-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    opacity: 0;
    transition: opacity .25s;
}

.hm-ben-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .06);
}

.hm-ben-item:hover::before {
    opacity: 1;
}

.hm-ben-item img {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.hm-ben-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.hm-ben-item p {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.65;
}

@media(max-width: 768px) {
    .hm-ben-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ════════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════════ */
.hm-cta {
    padding: 68px 24px;
    background: var(--snow);
}

.hm-cta-box {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: var(--ink);
    border-radius: var(--r-xl);
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
}

.hm-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.hm-cta-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, .15);
    border-radius: 50%;
    filter: blur(70px);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.hm-cta-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    letter-spacing: -.3px;
}

.hm-cta-box .cta-p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.hm-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hm-cta-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.hm-cta-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s, color .2s;
}

.hm-cta-social a:hover {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

/* ════════════════════════════════════════════════════════════════
   PARTNER
   ════════════════════════════════════════════════════════════════ */
.hm-partner {
    padding: 60px 24px 72px;
    background: var(--white);
    text-align: center;
}

.hm-partner h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -.4px;
}

.hm-partner p {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.hm-partner-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════════════ */
.hm-mod-item,
.hm-integ-item,
.hm-efeat,
.hm-bfeat,
.hm-ben-item,
.hm-jcard {
    opacity: 0;
    animation: none;
}

.hm-mod-item.hm-vis,
.hm-integ-item.hm-vis,
.hm-efeat.hm-vis,
.hm-bfeat.hm-vis,
.hm-ben-item.hm-vis,
.hm-jcard.hm-vis {
    animation: mni-rise .5s cubic-bezier(.22, 1, .36, 1) both;
}