/* -----------------------------------------------------------------------------
   home-experience.css

   Styling for the animated platform home page (Home.razor) — the "command
   deck". Glass hero with breathing halos and a periodic light sweep, gradient
   ink headline with per-character cascade, rotating capability typewriter,
   count-up metric tiles with live ping dots, and module cards with pointer
   spotlight, rotating border beam, and 3D tilt (driven by
   assets/js/home-experience.js). Loaded globally from App.razor like the
   other page-area stylesheets; every selector is namespaced to the home page
   (.home-*, .hero-*, .module-*, .stat-*). All motion collapses under
   prefers-reduced-motion.

   Project : AspireAIApp.Web
   Author  : Theodor Harmse (Teddy)
   Created : 2026-07-30
----------------------------------------------------------------------------- */

/* ==== token wiring (accent per tile/card, glass vars, soft-theme overrides) ==== */

.hero-shell,
.stat-card,
.module-card {
    --module-accent: var(--module-accent-platform);
    --home-aura-cyan: var(--glass-aura-cyan);
    --home-aura-mint: var(--glass-aura-mint);
    --home-aura-violet: var(--glass-aura-violet);
    --home-surface: var(--glass-surface);
    --home-surface-strong: var(--glass-surface-strong);
    --home-line: var(--glass-line);
    --home-glow: var(--glass-glow);
    --home-glass-shadow: var(--glass-shadow);
    backdrop-filter: blur(20px) saturate(1.08);
}

.stat-platform,
.module-platform {
    --module-accent: var(--module-accent-platform);
}

.stat-knowledge,
.module-knowledge {
    --module-accent: var(--module-accent-knowledge);
}

.stat-ai,
.module-ai {
    --module-accent: var(--module-accent-ai);
}

.stat-clm,
.module-clm {
    --module-accent: var(--module-accent-clm);
}

.stat-risk,
.module-risk {
    --module-accent: var(--module-accent-risk);
}

.stat-sharepoint,
.module-sharepoint {
    --module-accent: var(--module-accent-sharepoint);
}

.module-admin {
    --module-accent: var(--module-accent-admin);
}

.module-bi {
    --module-accent: var(--module-accent-bi);
}

.module-crm {
    --module-accent: var(--module-accent-crm);
}

.module-tender {
    --module-accent: var(--module-accent-tender);
}

/* ==== shared keyframes ==== */

@keyframes homeRise {
    from {
        opacity: 0;
        translate: 0 26px;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        translate: none;
        filter: blur(0);
    }
}

@keyframes chRise {
    from {
        opacity: 0;
        translate: 0 0.55em;
        filter: blur(8px);
    }
}

@keyframes ruleIn {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
}

@keyframes inkShift {
    from {
        background-position: 0% 0;
    }
    to {
        background-position: 100% 0;
    }
}

@keyframes haloBreath {
    from {
        transform: scale(0.9);
        opacity: 0.38;
    }
    to {
        transform: scale(1.12) translate(1.4rem, 0.8rem);
        opacity: 0.62;
    }
}

@keyframes heroSheen {
    0%, 52% {
        background-position: 135% 0;
    }
    76%, 100% {
        background-position: -55% 0;
    }
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--glass-aura-mint) 46%, transparent);
    }
    72% {
        box-shadow: 0 0 0 0.55rem transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes caretBlink {
    50% {
        opacity: 0;
    }
}

@keyframes pingRing {
    0% {
        transform: scale(0.4);
        opacity: 0.9;
    }
    70%, 100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes iconLevitate {
    from {
        translate: 0 0;
    }
    to {
        translate: 0 -3px;
    }
}

/* Typed registration lets the conic border beam animate its angle smoothly. */
@property --beam-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes beamSpin {
    to {
        --beam-angle: 1turn;
    }
}

/* ==== page wrapper + ambient constellation canvas ==== */

.home-experience {
    position: relative;
    isolation: isolate;
    /* Compositional cap: on ultra-wide monitors the deck stays a composed
       page instead of sprawling edge to edge. */
    max-width: 1680px;
    margin-inline: auto;
}

.home-experience > :not(.home-neural) {
    position: relative;
    z-index: 1;
}

.home-neural {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

html:not([data-theme="dark"]):not([data-theme="ai"]) .home-neural {
    opacity: 0.55;
}

/* ==== hero ==== */

.hero-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
    padding: clamp(1.1rem, 1.7vw, 1.6rem) clamp(1.45rem, 2.4vw, 2.1rem);
    border-radius: 16px;
    border: 1px solid var(--home-line);
    background:
        radial-gradient(ellipse at 52% 72%, color-mix(in srgb, var(--home-aura-cyan) 15%, transparent), transparent 44%),
        radial-gradient(ellipse at 84% 18%, color-mix(in srgb, var(--home-aura-violet) 15%, transparent), transparent 42%),
        radial-gradient(ellipse at 66% 92%, color-mix(in srgb, var(--home-aura-mint) 13%, transparent), transparent 44%),
        linear-gradient(145deg, var(--home-surface-strong), var(--home-surface));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 14px 32px var(--home-glass-shadow);
    animation: homeRise 0.7s cubic-bezier(0.22, 0.7, 0.25, 1) 0.05s backwards;
}

.hero-halo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(42px);
    z-index: 0;
}

.hero-halo--cyan {
    left: -7rem;
    top: -8rem;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, color-mix(in srgb, var(--home-aura-cyan) 28%, transparent), transparent 66%);
    animation: haloBreath 8s ease-in-out infinite alternate;
}

.hero-halo--violet {
    right: -6rem;
    bottom: -9rem;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, color-mix(in srgb, var(--home-aura-violet) 26%, transparent), transparent 66%);
    animation: haloBreath 9.5s ease-in-out 1.2s infinite alternate-reverse;
}

.hero-sheen {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.065) 50%, transparent 58%);
    background-size: 240% 100%;
    background-position: 135% 0;
    animation: heroSheen 9s ease-in-out 2s infinite;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

/* The 3D "intelligence core" orb owns the hero's right column: a stage of
   its own, nothing overlapping it. It never captures the pointer (its
   parent feeds it pointer positions instead). */
.hero-visual {
    align-self: stretch;
    /* Kept modest: the copy column decides the hero's height, the orb just
       fills whatever the band gives it. */
    min-height: 12rem;
}

.home-orb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-muted);
    animation: homeRise 0.6s cubic-bezier(0.22, 0.7, 0.25, 1) 0.18s backwards;
}

.hero-status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--glass-aura-mint);
    animation: statusPulse 2.4s ease-out infinite;
}

.hero-title {
    margin-bottom: 0.5rem;
    font-size: clamp(2.1rem, 3.2vw, 2.9rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    background: linear-gradient(97deg,
        color-mix(in srgb, var(--home-aura-cyan) 55%, var(--text-primary)) 0%,
        color-mix(in srgb, var(--home-aura-cyan) 88%, var(--text-primary)) 26%,
        color-mix(in srgb, var(--home-aura-violet) 85%, var(--text-primary)) 52%,
        color-mix(in srgb, var(--home-aura-mint) 75%, var(--text-primary)) 76%,
        color-mix(in srgb, var(--home-aura-cyan) 60%, var(--text-primary)) 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: inkShift 8s ease-in-out infinite alternate;
}

[data-theme="dark"] .hero-title,
[data-theme="ai"] .hero-title {
    filter: drop-shadow(0 0 22px color-mix(in srgb, var(--glass-aura-cyan) 30%, transparent));
}

.hero-title__ch {
    display: inline-block;
    white-space: pre;
    animation: chRise 0.65s cubic-bezier(0.18, 0.75, 0.2, 1) backwards;
}

.hero-typer {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    min-height: 1.65em;
    margin-bottom: 0.55rem;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    font-weight: 600;
    color: color-mix(in srgb, var(--home-aura-cyan) 58%, var(--text-primary));
    animation: homeRise 0.6s cubic-bezier(0.22, 0.7, 0.25, 1) 0.48s backwards;
}

.hero-caret {
    width: 2px;
    height: 1.08em;
    border-radius: 1px;
    background: var(--home-aura-cyan);
    animation: caretBlink 1.1s steps(1) infinite;
}

.hero-subtitle {
    margin-bottom: 0;
    color: var(--text-secondary);
    max-width: 72ch;
    animation: homeRise 0.6s cubic-bezier(0.22, 0.7, 0.25, 1) 0.58s backwards;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.95rem;
    animation: homeRise 0.6s cubic-bezier(0.22, 0.7, 0.25, 1) 0.68s backwards;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.24rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid color-mix(in srgb, var(--home-aura-cyan) 26%, var(--home-line));
    background: color-mix(in srgb, var(--home-surface) 78%, transparent);
    color: var(--text-secondary);
}

.hero-tags span::before {
    content: "";
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--home-aura-cyan) 75%, var(--text-primary));
    box-shadow: 0 0 6px color-mix(in srgb, var(--home-aura-cyan) 55%, transparent);
}

/* ==== hero metric tiles ==== */

/* Instrument strip: one full-width row of live metrics under the hero
   (wraps gracefully when narrow or when the user sees fewer tiles). */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
    gap: 0.9rem;
}

.hero-stats .stat-card:nth-child(1) { --stat-i: 0; }
.hero-stats .stat-card:nth-child(2) { --stat-i: 1; }
.hero-stats .stat-card:nth-child(3) { --stat-i: 2; }
.hero-stats .stat-card:nth-child(4) { --stat-i: 3; }
.hero-stats .stat-card:nth-child(5) { --stat-i: 4; }
.hero-stats .stat-card:nth-child(6) { --stat-i: 5; }

.stat-card {
    position: relative;
    overflow: hidden;
    min-height: 5.6rem;
    border-radius: 14px;
    border: 1px solid var(--home-line);
    background:
        radial-gradient(ellipse at 50% 110%, color-mix(in srgb, var(--module-accent) 12%, transparent), transparent 54%),
        linear-gradient(145deg, color-mix(in srgb, var(--home-surface-strong) 88%, transparent), color-mix(in srgb, var(--home-surface) 82%, transparent));
    padding: 0.74rem 0.82rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 10px 22px color-mix(in srgb, var(--home-glass-shadow) 55%, transparent);
    transition: translate 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    animation: homeRise 0.6s cubic-bezier(0.22, 0.7, 0.25, 1) calc(0.3s + var(--stat-i, 0) * 0.08s) backwards;
}

.stat-card:hover {
    translate: 0 -3px;
    border-color: color-mix(in srgb, var(--module-accent) 30%, var(--home-line));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 14px 26px color-mix(in srgb, var(--home-glass-shadow) 62%, transparent),
        0 0 16px color-mix(in srgb, var(--module-accent) 12%, transparent);
}

.stat-card::after {
    content: "";
    position: absolute;
    left: 0.82rem;
    right: 30%;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--module-accent) 66%, transparent), transparent);
    opacity: 0.75;
    transform-origin: left;
    animation: ruleIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) calc(0.62s + var(--stat-i, 0) * 0.08s) backwards;
}

.stat-ping {
    position: absolute;
    top: 0.66rem;
    right: 0.66rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--module-accent);
    box-shadow: 0 0 8px color-mix(in srgb, var(--module-accent) 60%, transparent);
}

.stat-ping::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--module-accent) 62%, transparent);
    animation: pingRing 2.8s ease-out infinite;
    animation-delay: calc(var(--stat-i, 0) * 0.4s);
}

.stat-label {
    font-size: 0.8125rem;
    color: color-mix(in srgb, var(--text-secondary) 86%, var(--text-primary));
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    line-height: 1.18;
    padding-right: 1rem;
}

[data-theme="dark"] .stat-label,
[data-theme="ai"] .stat-label {
    color: color-mix(in srgb, var(--text-primary) 86%, var(--home-aura-cyan));
}

.stat-value {
    font-size: 2.05rem;
    font-weight: 750;
    line-height: 1.2;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

[data-theme="dark"] .stat-value,
[data-theme="ai"] .stat-value {
    text-shadow: 0 0 18px color-mix(in srgb, var(--module-accent) 32%, transparent);
}

/* ==== module sections ==== */

.module-section {
    margin-bottom: 1.75rem;
}

.module-section:last-of-type {
    margin-bottom: 0;
}

.home-experience .module-section:nth-of-type(1) { --section-delay: 0.42s; }
.home-experience .module-section:nth-of-type(2) { --section-delay: 0.62s; }
.home-experience .module-section:nth-of-type(3) { --section-delay: 0.8s; }

/* Hide the whole section (heading + grid) when the user can access none of its cards —
   AuthorizeView renders the card anchors directly, so :has(.module-card) sees them. */
.module-section:not(:has(.module-card)) {
    display: none;
}

.module-section__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    animation: homeRise 0.55s cubic-bezier(0.22, 0.7, 0.25, 1) var(--section-delay, 0.42s) backwards;
}

.module-section__title::before {
    content: "";
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 50%;
    background: var(--glass-aura-cyan);
    box-shadow: 0 0 9px color-mix(in srgb, var(--glass-aura-cyan) 60%, transparent);
}

.module-section__title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--glass-aura-cyan) 36%, var(--glass-line)), transparent);
    transform-origin: left;
    animation: ruleIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) calc(var(--section-delay, 0.42s) + 0.12s) backwards;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
    gap: 1rem;
}

.module-grid > .module-card:nth-child(1) { --card-i: 0; }
.module-grid > .module-card:nth-child(2) { --card-i: 1; }
.module-grid > .module-card:nth-child(3) { --card-i: 2; }
.module-grid > .module-card:nth-child(4) { --card-i: 3; }
.module-grid > .module-card:nth-child(5) { --card-i: 4; }
.module-grid > .module-card:nth-child(6) { --card-i: 5; }

/* ==== module cards ==== */

.module-card {
    position: relative;
    overflow: hidden;
    /* Launcher layout: icon tile left, text right - dense and scannable
       instead of a wide slab with a floating icon. */
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1rem;
    align-items: start;
    border-radius: 14px;
    border: 1px solid var(--home-line);
    background:
        radial-gradient(ellipse at 60% 110%, color-mix(in srgb, var(--module-accent) 8%, transparent), transparent 48%),
        linear-gradient(150deg, color-mix(in srgb, var(--home-surface-strong) 78%, transparent), color-mix(in srgb, var(--home-surface) 86%, transparent));
    padding: 1.1rem 1.1rem 1.95rem;
    min-height: 8.25rem;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 12px 26px color-mix(in srgb, var(--home-glass-shadow) 58%, transparent);
    transition: border-color 0.28s ease, box-shadow 0.28s ease;
    will-change: transform;
    animation: homeRise 0.6s cubic-bezier(0.22, 0.7, 0.25, 1) calc(var(--section-delay, 0.42s) + 0.12s + var(--card-i, 0) * 0.07s) backwards;
}

/* Pointer spotlight — --mx/--my are set per-card by home-experience.js. */
.module-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(11rem circle at var(--mx, 50%) var(--my, 0%),
        color-mix(in srgb, var(--module-accent) 15%, transparent), transparent 64%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-card:hover::before {
    opacity: 1;
}

.module-card::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--module-accent) 30%, var(--home-line)), transparent);
    opacity: 0.25;
}

.module-card > :not(.module-beam):not(.module-open) {
    position: relative;
    z-index: 1;
}

/* Rotating conic border beam, revealed on hover (ring via mask). */
.module-beam {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    pointer-events: none;
    z-index: 2;
    background: conic-gradient(from var(--beam-angle),
        transparent 0turn,
        transparent 0.6turn,
        color-mix(in srgb, var(--module-accent) 80%, white) 0.74turn,
        var(--module-accent) 0.79turn,
        transparent 0.92turn);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.module-card:hover .module-beam {
    opacity: 1;
    animation: beamSpin 3.2s linear infinite;
}

.module-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-row: 1 / 3;
    width: 2.9rem;
    height: 2.9rem;
    margin-bottom: 0;
    border-radius: 0.85rem;
    border: 1px solid color-mix(in srgb, var(--module-accent) 30%, var(--home-line));
    background: linear-gradient(150deg,
        color-mix(in srgb, var(--module-accent) 20%, transparent),
        color-mix(in srgb, var(--module-accent) 5%, transparent));
    color: color-mix(in srgb, var(--module-accent) 58%, var(--text-primary));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 14px color-mix(in srgb, var(--module-accent) 13%, transparent);
    animation: iconLevitate 3.4s ease-in-out infinite alternate;
    animation-delay: calc(var(--card-i, 0) * -1.2s);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.module-card:hover .module-icon {
    transform: scale(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 22px color-mix(in srgb, var(--module-accent) 26%, transparent);
}

.module-icon svg {
    width: 1.7rem;
    height: 1.7rem;
    filter: drop-shadow(0 0 5px color-mix(in srgb, var(--module-accent) 14%, transparent));
}

.module-card h3 {
    margin-bottom: 0.35rem;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.module-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.module-open {
    position: absolute;
    right: 1.05rem;
    bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--module-accent) 62%, var(--text-primary));
    opacity: 0;
    translate: 0 6px;
    transition: opacity 0.25s ease, translate 0.25s ease;
    z-index: 1;
}

.module-card:hover .module-open {
    opacity: 1;
    translate: none;
}

.module-open__arrow {
    transition: translate 0.25s ease;
}

.module-card:hover .module-open__arrow {
    translate: 3px 0;
}

.module-card:hover {
    border-color: color-mix(in srgb, var(--module-accent) 34%, var(--home-line));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 18px 38px color-mix(in srgb, var(--home-glass-shadow) 66%, transparent),
        0 0 24px color-mix(in srgb, var(--module-accent) 13%, transparent);
    text-decoration: none;
}

/* ==== responsive ==== */

@media (max-width: 1180px) {
    .hero-shell {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .module-grid {
        grid-template-columns: 1fr;
    }
}

/* ==== reduced motion: everything settles instantly, canvas/sheen hidden ====
   The html:not([data-force-motion]) gate lets a debug/design harness preview
   the full motion in environments that force reduced motion (e.g. browser
   automation). Nothing in the app ever sets that attribute, so real
   reduced-motion users always get the static page. */

@media (prefers-reduced-motion: reduce) {
    html:not([data-force-motion]) .home-experience *,
    html:not([data-force-motion]) .home-experience *::before,
    html:not([data-force-motion]) .home-experience *::after {
        animation: none !important;
        transition: none !important;
    }

    html:not([data-force-motion]) .home-neural,
    html:not([data-force-motion]) .hero-sheen {
        display: none;
    }

    html:not([data-force-motion]) .module-open {
        opacity: 1;
        translate: none;
    }
}
