* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    color: #f8fafc;
    background: #05050a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 7vw;
    background: rgba(5, 5, 10, 0.84);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand { font-size: 22px; font-weight: 800; letter-spacing: 0; }
.nav { display: flex; gap: 28px; color: rgba(255, 255, 255, 0.76); font-size: 15px; }
.nav a:hover { color: #ffffff; }
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
    transition: transform 180ms ease, opacity 180ms ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.site-shell, .page { min-height: 100vh; overflow: hidden; }
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    padding: 8vw 7vw;
    background:
        radial-gradient(circle at 72% 28%, rgba(140, 92, 255, 0.36), transparent 34%),
        linear-gradient(135deg, #05050a 0%, #0d0b16 52%, #171027 100%);
}
.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-video, .hero-3d-hook {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}
.hero-3d-hook {
    z-index: 0;
}
.hero:before, .page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
.hero:after, .page-hero:after {
    content: "";
    position: absolute;
    inset: auto 7vw 11% auto;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(196, 181, 253, 0.18);
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 49%, rgba(196, 181, 253, 0.16) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(196, 181, 253, 0.16) 50%, transparent 51%);
    opacity: 0.72;
    animation: techRotate 18s linear infinite;
}
.hero > *, .page-hero > * { position: relative; }
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: clamp(36px, 5vw, 82px);
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 72px - 16vw);
}
.hero-content {
    max-width: 900px;
}
.eyebrow {
    margin: 0 0 18px;
    color: #b9a7ff;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: uppercase;
}
h1, h2, h3, p { letter-spacing: 0; }
h1 { margin: 0; font-size: 64px; line-height: 1.12; }
h2 { margin: 0; font-size: 38px; line-height: 1.2; }
h3 { margin: 0 0 12px; font-size: 22px; }
.subtitle, .page-hero p {
    margin: 26px 0 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
    line-height: 1.8;
}
.hero-desc {
    margin-top: 30px;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.74);
}
.hero-desc p {
    margin: 0;
    max-width: 820px;
    font-size: 19px;
    line-height: 1.9;
}
.hero-desc p + p {
    margin-top: 8px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }
.hero-panel {
    position: relative;
    min-height: 520px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(196, 181, 253, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 12%, rgba(179, 76, 255, 0.24), transparent 34%),
        radial-gradient(circle at 82% 78%, rgba(124, 77, 255, 0.22), transparent 34%),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}
.hero-panel:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.42;
    pointer-events: none;
}
.hero-panel:after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    pointer-events: none;
}
.hero-panel-orbit {
    position: absolute;
    right: -88px;
    top: -88px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(221, 214, 254, 0.18);
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 49%, rgba(221, 214, 254, 0.22) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(221, 214, 254, 0.22) 50%, transparent 51%);
    animation: techRotate 16s linear infinite;
}
.hero-panel-head,
.hero-capability-grid,
.hero-panel-footer {
    position: relative;
    z-index: 1;
}
.hero-panel-head {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}
.hero-panel-head span {
    color: #b9a7ff;
    font-size: 13px;
    letter-spacing: 0.08em;
}
.hero-panel-head strong {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.22;
}
.hero-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.hero-capability-grid div {
    min-height: 118px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(5, 5, 10, 0.42);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.hero-capability-grid div:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 181, 253, 0.38);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 18px 42px rgba(124, 77, 255, 0.16);
}
.hero-capability-grid em {
    display: block;
    margin-bottom: 18px;
    color: rgba(196, 181, 253, 0.64);
    font-style: normal;
    font-size: 12px;
}
.hero-capability-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 18px;
}
.hero-capability-grid span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.5;
}
.hero-panel-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.045);
    font-size: 13px;
}
.hero-panel-footer i {
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, rgba(185, 167, 255, 0.1), rgba(185, 167, 255, 0.72));
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    padding: 0 22px;
    font-size: 15px;
}
.btn-primary { border-color: transparent; background: linear-gradient(135deg, #7c4dff, #b34cff); }
.btn-ghost { background: rgba(255, 255, 255, 0.06); }
.btn, .card, .case-card, .process span, .tags span, .article-list a {
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(124, 77, 255, 0.24);
}
.section { padding: 92px 7vw; }
.section-head { margin-bottom: 34px; }
.section-head.row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}
.section-head.row a { color: #b9a7ff; }
.card-grid { display: grid; gap: 22px; align-items: stretch; }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .case-card, .side-panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}
.card {
    display: flex;
    height: 100%;
    min-height: 210px;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
}
.card:hover, .case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 181, 253, 0.42);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
    background: rgba(255, 255, 255, 0.075);
}
.card p, .case-card p, .rich-content, .article-list p { color: rgba(255, 255, 255, 0.7); line-height: 1.8; }
.card p { margin-bottom: 22px; }
.card a, .case-card a, .side-panel a { color: #c4b5fd; }
.card a { margin-top: auto; }
.card-icon { display: inline-block; margin-bottom: 18px; color: #c4b5fd; font-size: 13px; }
.stats-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    background: #0d0b16;
}
.stat { text-align: center; }
.stat strong { display: block; color: #ffffff; font-size: 54px; }
.stat span { color: rgba(255, 255, 255, 0.68); }
.process { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.process span, .tags span {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
}
.process span:hover, .tags span:hover, .article-list a:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 181, 253, 0.34);
    background: rgba(255, 255, 255, 0.07);
}
.case-card { overflow: hidden; }
.case-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #111827; }
.case-card div { padding: 22px; }
.case-placeholder {
    min-height: 260px;
    background:
        radial-gradient(circle at 80% 16%, rgba(124, 77, 255, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.055);
}
.case-placeholder div {
    display: flex;
    height: 100%;
    min-height: 260px;
    flex-direction: column;
    justify-content: center;
}
.tech-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    gap: 34px;
    align-items: stretch;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 22%, rgba(124, 77, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #0b0a14 0%, #111020 48%, #07070d 100%);
}
.tech-band:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.55;
    pointer-events: none;
}
.tech-band > * { position: relative; }
.tech-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.tech-copy p:last-child {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.85;
}
.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.tech-group {
    display: flex;
    min-height: 320px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 26px;
    border: 1px solid rgba(196, 181, 253, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}
.tech-group strong {
    color: #ffffff;
    font-size: 20px;
}
.tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-group .tags {
    margin-top: 38px;
}
.tech-group .tags span {
    flex: 1 1 100%;
    padding: 14px 16px;
    text-align: left;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
}
.article-list { display: grid; gap: 12px; }
.article-list a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.article-list.large a { grid-template-columns: 1fr auto; }
.article-list.large p { grid-column: 1 / -1; margin: 0; }
.article-list em, .meta { color: rgba(255, 255, 255, 0.56); font-style: normal; }
.contact-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    background: linear-gradient(135deg, #0d0b16, #181027);
}
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    padding: 14px 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    font: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
    border: 0;
    border-radius: 6px;
    padding: 15px 20px;
    color: #fff;
    background: linear-gradient(135deg, #7c4dff, #b34cff);
    cursor: pointer;
}
.page-hero {
    position: relative;
    padding: 110px 7vw 82px;
    background:
        radial-gradient(circle at 75% 20%, rgba(140, 92, 255, 0.28), transparent 34%),
        linear-gradient(135deg, #05050a 0%, #111020 100%);
}
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    padding: 70px 7vw;
}
.rich-content {
    min-width: 0;
    font-size: 16px;
}
.rich-content h2 { margin-top: 34px; margin-bottom: 14px; font-size: 28px; }
.rich-content p { line-height: 1.9; }
.side-panel { align-self: start; padding: 24px; }
.side-panel a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.screenshot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.screenshot-grid img, .article-cover { border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); }
.pager {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.72);
}
.pager a { color: #c4b5fd; }
.narrow { max-width: 980px; margin: 0 auto; }
.article-detail { padding: 88px 24px; }
.article-detail h1 { font-size: 48px; }
.meta { display: flex; gap: 18px; margin: 20px 0 28px; }
.article-cover { width: 100%; max-height: 420px; object-fit: cover; margin-bottom: 30px; }
.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 42px 7vw;
    color: rgba(255, 255, 255, 0.68);
    background: #030306;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer p { margin-bottom: 0; }
.filing-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}
.filing-links a:hover { color: #ffffff; }
.public-security-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.public-security-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.filing-separator { color: rgba(255, 255, 255, 0.28); }
.footer-links { display: flex; gap: 18px; }

.service-float {
    position: fixed;
    right: 22px;
    top: 50%;
    z-index: 30;
    transform: translateY(-50%);
}
.service-float-toggle {
    display: flex;
    width: 52px;
    min-height: 138px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 181, 253, 0.42);
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #7c4dff, #b34cff);
    box-shadow: 0 18px 48px rgba(124, 77, 255, 0.34);
    cursor: pointer;
}
.service-float-toggle span {
    writing-mode: vertical-rl;
    letter-spacing: 4px;
    font-weight: 700;
}
.service-float-panel {
    position: absolute;
    right: 66px;
    top: 50%;
    width: 340px;
    max-height: min(560px, calc(100vh - 48px));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(12, 11, 22, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.service-float.is-open .service-float-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
.service-float-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 0;
}
.service-float-head strong { font-size: 18px; }
.service-float-head button {
    border: 0;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}
.service-contact-list { display: grid; gap: 12px; padding: 16px; }
.service-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
}
.service-contact-info { display: grid; gap: 6px; min-width: 0; }
.service-contact-info strong { font-size: 17px; }
.service-contact-info span,
.service-contact-info em,
.service-contact-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-style: normal;
    line-height: 1.55;
}
.service-contact-info a {
    color: #c4b5fd;
    font-weight: 700;
}
.service-contact-card img {
    width: 92px;
    height: 92px;
    border-radius: 10px;
    object-fit: cover;
    background: #ffffff;
}

.site-toast {
    position: fixed;
    left: 50%;
    top: 92px;
    z-index: 80;
    min-width: 240px;
    max-width: calc(100vw - 48px);
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    text-align: center;
    background: rgba(12, 11, 22, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -12px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(14px);
}
.site-toast.is-show {
    opacity: 1;
    transform: translate(-50%, 0);
}
.site-toast.is-success {
    border-color: rgba(34, 197, 94, 0.42);
    background: rgba(20, 83, 45, 0.94);
}
.site-toast.is-error {
    border-color: rgba(248, 113, 113, 0.42);
    background: rgba(127, 29, 29, 0.94);
}

.js [data-animate="section"], .js [data-animate="stats"] {
    opacity: 0;
}
.js .card, .js .case-card, .js .process span, .js .tags span, .js .article-list a, .js .contact-form > * {
    will-change: transform, opacity;
}

@keyframes techRotate {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.04); }
    to { transform: rotate(360deg) scale(1); }
}

@media (max-width: 980px) {
    .site-header {
        height: 64px;
        padding: 0 24px;
    }
    .nav-toggle { display: block; }
    .nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: 72px;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background: rgba(10, 9, 18, 0.96);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    }
    .nav-open .nav { display: flex; }
    .nav a {
        padding: 13px 12px;
        border-radius: 8px;
    }
    .nav a:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    h1 { font-size: 42px; }
    h2 { font-size: 30px; }
    .hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-desc p {
        font-size: 16px;
        line-height: 1.85;
    }
    .hero-panel {
        min-height: auto;
        padding: 22px;
    }
    .hero-panel-head strong {
        font-size: 22px;
    }
    .hero-capability-grid {
        grid-template-columns: 1fr;
    }
    .hero-capability-grid div {
        min-height: auto;
    }
    .hero-panel-footer i {
        width: 18px;
    }
    .card-grid.four, .card-grid.three, .stats-band, .process, .tech-band, .contact-section, .detail-layout {
        grid-template-columns: 1fr;
    }
    .tech-stack {
        grid-template-columns: 1fr;
    }
    .tech-copy, .tech-group {
        min-height: auto;
    }
    .section, .page-hero { padding-left: 24px; padding-right: 24px; }
    .hero { padding: 84px 24px; }
    .detail-layout { padding: 46px 24px; }
    .site-footer { flex-direction: column; padding: 34px 24px; }
    .article-list a { grid-template-columns: 1fr; }
    .hero:after, .page-hero:after { width: 180px; height: 180px; opacity: 0.38; }
    .service-float {
        right: 14px;
        top: auto;
        bottom: 18px;
        transform: none;
    }
    .service-float-toggle {
        width: auto;
        min-height: 44px;
        padding: 0 16px;
        border-radius: 999px;
    }
    .service-float-toggle span {
        writing-mode: horizontal-tb;
        letter-spacing: 1px;
    }
    .service-float-panel {
        right: 0;
        top: auto;
        bottom: 58px;
        width: calc(100vw - 28px);
        max-width: 360px;
        transform: translateY(8px);
    }
    .service-float.is-open .service-float-panel {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .js [data-animate="section"], .js [data-animate="stats"] {
        opacity: 1;
    }
}
