:root {
    color-scheme: dark;
    --bg: #080b12;
    --bg-soft: #0e1420;
    --surface: rgba(15, 23, 42, .78);
    --surface-strong: rgba(17, 24, 39, .94);
    --text: #eef5ff;
    --muted: #9fb0c4;
    --line: rgba(148, 163, 184, .18);
    --brand: #2dd4bf;
    --brand-strong: #14b8a6;
    --primary-button-text: #03120f;
    --accent: #f59e0b;
    --rose: #fb7185;
    --shadow: 0 24px 80px rgba(0, 0, 0, .35);
    --radius: 8px;
    --max: 1180px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

[data-theme="light"] {
    color-scheme: light;
    --bg: #f4f8ff;
    --bg-soft: #eaf2ff;
    --surface: rgba(255, 255, 255, .76);
    --surface-strong: rgba(248, 251, 255, .96);
    --text: #0f172a;
    --muted: #526782;
    --line: rgba(37, 99, 235, .16);
    --brand: #2563eb;
    --brand-strong: #1d4ed8;
    --primary-button-text: #ffffff;
    --accent: #06b6d4;
    --rose: #7c3aed;
    --shadow: 0 24px 80px rgba(30, 64, 175, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(90deg, rgba(45, 212, 191, .07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(245, 158, 11, .045) 1px, transparent 1px),
        radial-gradient(circle at 20% 0%, rgba(45, 212, 191, .18), transparent 34rem),
        radial-gradient(circle at 84% 8%, rgba(251, 113, 133, .13), transparent 32rem),
        var(--bg);
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

[data-theme="light"] body {
    background:
        linear-gradient(90deg, rgba(37, 99, 235, .08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(14, 165, 233, .06) 1px, transparent 1px),
        radial-gradient(circle at 18% 0%, rgba(59, 130, 246, .24), transparent 34rem),
        radial-gradient(circle at 84% 8%, rgba(6, 182, 212, .18), transparent 32rem),
        var(--bg);
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

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

svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ambient-canvas,
.cursor-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.ambient-canvas {
    z-index: -1;
    opacity: .82;
}

.cursor-canvas {
    z-index: 90;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 20px 0;
}

.nav-shell {
    width: min(var(--max), calc(100vw - 40px));
    height: 68px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 0 14px 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface-strong) 78%, transparent);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

.site-header.is-scrolled .nav-shell {
    box-shadow: var(--shadow);
}

.brand,
.nav-actions,
.nav-panel {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    min-width: max-content;
    font-weight: 800;
}

.brand-mark {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 8px;
}

.brand-text {
    letter-spacing: 0;
}

.nav-panel {
    justify-content: center;
    gap: 4px;
}

.nav-panel a {
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
}

.nav-panel a:hover {
    color: var(--text);
    background: color-mix(in srgb, var(--brand) 10%, transparent);
}

.nav-actions {
    gap: 10px;
}

.nav-actions .button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.theme-toggle,
.nav-toggle {
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 80%, transparent);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}

[data-theme="dark"] .icon-sun,
[data-theme="light"] .icon-moon {
    display: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 999px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 760;
    white-space: nowrap;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--primary-button-text);
    background: var(--brand);
    border-color: color-mix(in srgb, var(--brand) 72%, transparent);
    box-shadow: 0 10px 26px color-mix(in srgb, var(--brand) 22%, transparent);
}

.button-primary:hover {
    background: var(--brand-strong);
    border-color: var(--brand-strong);
}

.button-secondary,
.button-ghost {
    border-color: var(--line);
    background: color-mix(in srgb, var(--surface) 82%, transparent);
    color: var(--text);
}

.button-ghost {
    color: var(--muted);
}

.button-large {
    min-height: 52px;
    padding: 0 22px;
    font-size: 15px;
}

.section {
    width: min(var(--max), calc(100vw - 40px));
    margin: 0 auto;
    padding: 96px 0;
}

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 58px;
}

.feature-section {
    padding-top: 48px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 58px;
    align-items: center;
    width: 100%;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 18px;
    letter-spacing: 0;
}

.hero-lead,
.section-heading p,
.partner-copy p,
.site-footer p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 520px;
    margin: 0;
}

.hero-metrics div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 74%, transparent);
}

.hero-metrics dt {
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
}

.hero-metrics dd {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.hero-visual {
    position: relative;
}

.interface-frame {
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--brand) 34%, var(--line));
    border-radius: var(--radius);
    background: #0b1120;
    box-shadow: var(--shadow);
    transform: perspective(1100px) rotateX(2deg) rotateY(-5deg);
}

.frame-bar {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .72);
}

.frame-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rose);
}

.frame-bar span:nth-child(2) {
    background: var(--accent);
}

.frame-bar span:nth-child(3) {
    background: var(--brand);
}

.frame-bar strong {
    margin-left: 8px;
    font-size: 12px;
}

.hero-screen {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hero-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .22s ease, transform .5s ease;
}

.hero-screen img.is-switching {
    opacity: .28;
    transform: scale(1.015);
}

.signal-strip {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -26px;
    height: 48px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    opacity: .86;
}

.signal-strip span {
    border-radius: 8px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 70%, transparent), transparent);
    animation: signal 1.4s ease-in-out infinite;
}

.signal-strip span:nth-child(2) { animation-delay: .12s; }
.signal-strip span:nth-child(3) { animation-delay: .24s; }
.signal-strip span:nth-child(4) { animation-delay: .36s; }
.signal-strip span:nth-child(5) { animation-delay: .48s; }
.signal-strip span:nth-child(6) { animation-delay: .6s; }

@keyframes signal {
    0%, 100% { transform: scaleY(.3); opacity: .28; }
    50% { transform: scaleY(1); opacity: .8; }
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-card,
.platform-card,
.pain-item,
.review-card,
.partner-panel,
.download-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.feature-card {
    min-height: 216px;
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1),
.feature-card:nth-child(8) {
    grid-column: span 2;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 14px;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand) 70%, transparent), transparent);
    transform: translateX(-110%);
    transition: transform .45s ease;
}

.feature-card:hover::after {
    transform: translateX(110%);
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--brand);
    background: color-mix(in srgb, var(--brand) 12%, transparent);
}

.feature-card p,
.pain-item p,
.review-card p,
.partner-panel li {
    color: var(--muted);
    line-height: 1.72;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.platform-card {
    min-height: 150px;
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 22px;
    font-weight: 800;
}

.platform-card img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.split-section {
    display: grid;
    grid-template-columns: .74fr 1.26fr;
    gap: 42px;
    align-items: start;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pain-item {
    padding: 22px;
}

.pain-item span,
.workflow-number {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--accent);
    font-weight: 900;
}

.workflow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.workflow-step {
    min-height: 166px;
    padding: 22px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 80%, transparent);
    position: relative;
}

.workflow-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 8px;
    color: var(--brand);
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--brand) 14%, transparent);
}

.workflow-icon svg {
    width: 26px;
    height: 26px;
}

.workflow-title {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.workflow-title strong {
    color: var(--text);
    font-size: 16px;
    line-height: 1.35;
}

.workflow-step::before {
    content: "";
    position: absolute;
    top: 30px;
    right: -11px;
    width: 11px;
    height: 1px;
    background: var(--line);
}

.workflow-step:last-child::before {
    display: none;
}

.masonry {
    columns: 3 280px;
    column-gap: 16px;
}

.gallery-item {
    width: 100%;
    display: inline-block;
    margin: 0 0 16px;
    padding: 0;
    overflow: hidden;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 84%, transparent);
    color: var(--text);
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform .35s ease;
}

.gallery-item:hover img {
    transform: scale(1.025);
}

.gallery-item span {
    display: grid;
    gap: 6px;
    padding: 16px;
}

.gallery-item em {
    color: var(--muted);
    font-style: normal;
    line-height: 1.58;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.review-card {
    padding: 22px;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand) 9%, var(--surface));
    box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 12%, transparent);
}

.review-card p {
    min-height: 96px;
}

.review-head strong {
    color: var(--brand);
}

.partner-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 18px;
    align-items: stretch;
}

.partner-copy {
    padding: 42px;
    border: 1px solid color-mix(in srgb, var(--brand) 32%, var(--line));
    border-radius: var(--radius);
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--brand) 9%, transparent));
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.partner-tags span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.partner-contact-btn {
    margin-top: 28px;
}

.partner-panel {
    padding: 30px;
}

.partner-panel ul {
    display: grid;
    gap: 14px;
    padding-left: 18px;
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--brand) 13%, transparent), transparent 45%),
        color-mix(in srgb, var(--surface-strong) 92%, transparent);
}

.download-meta {
    margin: 0;
    color: var(--muted);
}

.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.site-footer {
    width: min(var(--max), calc(100vw - 40px));
    margin: 0 auto;
    padding: 50px 0 70px;
    border-top: 1px solid var(--line);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 340px;
}

.qr-code {
    width: 118px;
    height: 118px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 72px 78px;
    background: rgba(2, 6, 23, .82);
    backdrop-filter: blur(12px);
}

.lightbox.is-open {
    display: grid;
}

.lightbox-content {
    margin: 0;
    max-width: min(1120px, 86vw);
}

.lightbox-content img {
    max-height: 76vh;
    width: auto;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lightbox-content figcaption {
    margin-top: 14px;
    color: #e5e7eb;
    text-align: center;
}

.lightbox-close,
.lightbox-nav {
    position: fixed;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(15, 23, 42, .72);
    color: #fff;
    cursor: pointer;
}

.lightbox-close {
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
}

.lightbox-nav {
    top: 50%;
    width: 48px;
    height: 58px;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 22px;
}

.lightbox-next {
    right: 22px;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(2, 6, 23, .72);
    backdrop-filter: blur(12px);
}

.contact-modal.is-open {
    display: grid;
}

.contact-dialog {
    position: relative;
    width: min(680px, 100%);
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 24px;
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
    border-radius: var(--radius);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.contact-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 86%, transparent);
    color: var(--text);
    cursor: pointer;
}

.contact-info h2 {
    margin-bottom: 22px;
}

.contact-info dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.contact-info dl div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.contact-info dt {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
}

.contact-info dd {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.contact-qr {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.contact-qr img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-qr span {
    color: var(--muted);
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
    transition-delay: calc(var(--delay, 0) * 55ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .nav-product {
        display: none;
    }

    .hero-layout,
    .split-section,
    .partner-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-grid,
    .review-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .workflow {
        grid-template-columns: repeat(4, 1fr);
    }

    .workflow-step::before {
        display: none;
    }

    .footer-layout {
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .site-header {
        padding: 10px 12px 0;
    }

    .nav-shell {
        width: calc(100vw - 24px);
        grid-template-columns: auto auto;
        justify-content: space-between;
        height: 62px;
    }

    .nav-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .nav-actions {
        position: absolute;
        top: 10px;
        right: 66px;
    }

    .nav-download {
        display: none;
    }

    .nav-panel {
        position: absolute;
        top: 72px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface-strong);
        box-shadow: var(--shadow);
    }

    .nav-panel.is-open {
        display: flex;
    }

    .section {
        width: calc(100vw - 28px);
        padding: 58px 0;
    }

    .hero {
        padding-top: 46px;
        padding-bottom: 38px;
    }

    .hero-layout {
        gap: 42px;
    }

    h1 {
        font-size: 40px;
    }

    .hero-lead,
    .section-heading p,
    .partner-copy p,
    .site-footer p {
        font-size: 15px;
    }

    .hero-metrics,
    .feature-grid,
    .pain-grid,
    .platform-grid,
    .review-grid,
    .workflow {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(8) {
        grid-column: span 1;
    }

    .interface-frame {
        transform: none;
    }

    .download-card,
    .footer-contact {
        align-items: flex-start;
        flex-direction: column;
    }

    .download-actions {
        justify-content: stretch;
        width: 100%;
    }

    .download-actions .button {
        width: 100%;
    }

    .partner-copy,
    .download-card {
        padding: 24px;
    }

    .partner-contact-btn {
        width: 100%;
    }

    .contact-dialog {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .contact-qr img {
        width: 156px;
        height: 156px;
    }
}

@media (max-width: 520px) {
    .brand-text {
        max-width: 132px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }

    .button-large {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-metrics {
        gap: 8px;
    }

    .lightbox {
        padding: 64px 14px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .lightbox-prev {
        left: 14px;
    }

    .lightbox-next {
        right: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .ambient-canvas,
    .cursor-canvas {
        display: none;
    }
}
