:root {
    --navy-950: #070d19;
    --navy-900: #0b1222;
    --navy-850: #101a2e;
    --navy-800: #17233b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --gold: #f4b942;
    --gold-light: #ffe2a1;
    --emerald: #2dd4a0;
    --emerald-dark: #0f8b68;
    --blue: #4e8cff;
    --shell: 1180px;
    --shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.10);
    --shadow-dark: 0 28px 100px rgba(0, 0, 0, 0.30);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--navy-900);
    background: var(--slate-50);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body,
button,
a {
    font: inherit;
}

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

button {
    color: inherit;
}

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

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-900);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--white);
}

.header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand img {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

.brand > span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand strong {
    font-size: 1.24rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand strong span {
    color: var(--gold);
}

.brand small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.70rem;
    letter-spacing: 0.04em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.91rem;
    font-weight: 550;
    transition: color 160ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(0.5);
    transition: 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switcher {
    display: inline-flex;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
}

.language-switcher button {
    min-width: 34px;
    padding: 6px 8px;
    border: 0;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.60);
    background: transparent;
    font-size: 0.70rem;
    font-weight: 750;
    cursor: pointer;
}

.language-switcher button.is-active {
    color: var(--navy-900);
    background: var(--white);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 0.92rem;
    font-weight: 700;
    transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

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

.button:focus-visible,
.card-link:focus-visible,
.site-header a:focus-visible,
.footer-links a:focus-visible {
    outline: 3px solid rgba(244, 185, 66, 0.45);
    outline-offset: 3px;
}

.button-primary {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 16px 34px rgba(244, 185, 66, 0.22);
}

.button-primary:hover {
    box-shadow: 0 20px 40px rgba(244, 185, 66, 0.30);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.19);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.11);
}

.button-small {
    min-height: 42px;
    padding-inline: 16px;
    border-radius: 10px;
    font-size: 0.82rem;
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
}

.mobile-menu {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(11, 18, 34, 0.97);
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(20px);
}

.mobile-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.78);
}

.mobile-menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(118deg, rgba(7, 13, 25, 0.98), rgba(11, 18, 34, 0.95) 52%, rgba(18, 34, 57, 0.96)),
        var(--navy-900);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    content: "";
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.hero-glow-one {
    top: 120px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(78, 140, 255, 0.18), transparent 68%);
}

.hero-glow-two {
    bottom: -250px;
    left: 10%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(45, 212, 160, 0.11), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 760px;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 76px;
    padding-top: 120px;
    padding-bottom: 74px;
}

.hero-copy {
    padding-top: 22px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-light);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow.dark {
    color: var(--emerald-dark);
}

.eyebrow.light {
    color: var(--gold-light);
}

.hero h1 {
    max-width: 760px;
    margin: 22px 0 24px;
    font-size: clamp(3.1rem, 6vw, 5.35rem);
    font-weight: 650;
    letter-spacing: -0.065em;
    line-height: 0.99;
}

.hero-text {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 1.08rem;
    line-height: 1.76;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.secure-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.76rem;
}

.secure-note > span:first-child {
    color: var(--emerald);
    font-size: 0.66rem;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.metrics div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metrics strong {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 680;
}

.metrics span {
    max-width: 135px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.73rem;
    line-height: 1.45;
}

.hero-visual {
    position: relative;
    display: flex;
    min-height: 530px;
    align-items: center;
    justify-content: center;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.orbit-one {
    width: 500px;
    height: 500px;
}

.orbit-two {
    width: 390px;
    height: 390px;
    border-style: dashed;
    animation: orbit 30s linear infinite;
}

.platform-preview {
    position: relative;
    z-index: 3;
    width: min(100%, 470px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(24px);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.preview-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 26px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.preview-label {
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.preview-header h2 {
    margin: 8px 0 0;
    font-size: 1.35rem;
    font-weight: 620;
    letter-spacing: -0.025em;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid rgba(45, 212, 160, 0.25);
    border-radius: 999px;
    color: #a8f3d8;
    background: rgba(45, 212, 160, 0.09);
    font-size: 0.65rem;
    white-space: nowrap;
}

.status-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 0 4px rgba(45, 212, 160, 0.10);
}

.preview-list {
    padding: 14px;
}

.preview-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 13px;
    margin: 8px 0;
    padding: 15px 13px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(8, 14, 27, 0.25);
    font-size: 0.82rem;
}

.preview-row strong {
    color: rgba(255, 255, 255, 0.30);
    font-size: 0.65rem;
}

.preview-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    font-size: 1.1rem;
}

.property-icon {
    color: var(--gold-light);
    background: rgba(244, 185, 66, 0.13);
}

.charge-icon {
    color: #a8f3d8;
    background: rgba(45, 212, 160, 0.12);
}

.report-icon {
    color: #b7d1ff;
    background: rgba(78, 140, 255, 0.13);
}

.preview-footer {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 17px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.70rem;
}

.shield {
    color: var(--gold);
}

.platform-section {
    padding: 112px 0 124px;
    background:
        radial-gradient(circle at 100% 0, rgba(78, 140, 255, 0.06), transparent 30%),
        var(--slate-50);
}

.section-heading {
    display: grid;
    max-width: 900px;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px 64px;
    align-items: end;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.25rem, 4.3vw, 3.8rem);
    font-weight: 630;
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.section-heading > p {
    margin: 0 0 6px;
    color: var(--slate-500);
    font-size: 0.98rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 62px;
}

.product-card {
    position: relative;
    display: flex;
    min-height: 510px;
    overflow: hidden;
    flex-direction: column;
    padding: 38px;
    border: 1px solid var(--slate-200);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.product-card::after {
    position: absolute;
    top: -120px;
    right: -110px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    content: "";
    opacity: 0.75;
}

.property-card::after {
    background: radial-gradient(circle, rgba(244, 185, 66, 0.16), transparent 68%);
}

.ev-card::after {
    background: radial-gradient(circle, rgba(45, 212, 160, 0.16), transparent 68%);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.14);
}

.card-topline {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
}

.product-symbol {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    font-size: 1.3rem;
}

.property-card .product-symbol {
    color: #8d6416;
    background: #fff4d9;
}

.ev-card .product-symbol {
    color: #087254;
    background: #dff9ef;
}

.product-kicker {
    color: var(--slate-500);
    font-size: 0.74rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card h3 {
    position: relative;
    z-index: 2;
    margin: 32px 0 12px;
    font-size: 2.45rem;
    font-weight: 650;
    letter-spacing: -0.05em;
}

.product-card > p {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: 0;
    color: var(--slate-500);
}

.product-card ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 13px;
    margin: 30px 0 38px;
    padding: 0;
    list-style: none;
}

.product-card li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--slate-700);
    font-size: 0.89rem;
}

.product-card li::before {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--emerald-dark);
    background: rgba(45, 212, 160, 0.12);
    content: "✓";
    font-size: 0.68rem;
    font-weight: 800;
}

.card-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    color: var(--navy-900);
    font-size: 0.89rem;
    font-weight: 760;
}

.card-link span:last-child {
    transition: transform 160ms ease;
}

.card-link:hover span:last-child {
    transform: translateX(4px);
}

.security-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 8% 20%, rgba(45, 212, 160, 0.11), transparent 32%),
        linear-gradient(145deg, var(--navy-950), var(--navy-850));
}

.security-section::after {
    position: absolute;
    right: -200px;
    bottom: -360px;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(255, 255, 255, 0.015),
        0 0 0 160px rgba(255, 255, 255, 0.01);
    content: "";
}

.security-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.security-copy h2 {
    margin: 22px 0;
    font-size: clamp(2.3rem, 4.4vw, 3.75rem);
    font-weight: 620;
    letter-spacing: -0.055em;
    line-height: 1.07;
}

.security-copy > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
}

.security-points {
    display: grid;
    gap: 0;
}

.security-points article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.security-points article:first-child {
    padding-top: 4px;
}

.security-points > article > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(244, 185, 66, 0.25);
    border-radius: 11px;
    color: var(--gold-light);
    background: rgba(244, 185, 66, 0.07);
    font-size: 0.67rem;
    font-weight: 800;
}

.security-points h3 {
    margin: 0 0 5px;
    font-size: 1.05rem;
}

.security-points p {
    margin: 0;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.88rem;
}

.cta-section {
    padding: 96px 0;
    background: var(--slate-50);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding: 56px 60px;
    border: 1px solid #dbe4ee;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 10%, rgba(244, 185, 66, 0.10), transparent 28%),
        var(--white);
    box-shadow: var(--shadow-soft);
}

.cta-card h2 {
    max-width: 700px;
    margin: 17px 0 10px;
    font-size: clamp(2rem, 3.7vw, 3.25rem);
    font-weight: 630;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.cta-card p {
    max-width: 660px;
    margin: 0;
    color: var(--slate-500);
}

.cta-card .button {
    flex: 0 0 auto;
}

footer {
    padding: 48px 0;
    color: rgba(255, 255, 255, 0.65);
    background: var(--navy-950);
}

.footer-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
}

.footer-brand small {
    max-width: 360px;
}

.footer-inner > div > p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
}

.footer-links {
    display: flex;
    gap: 26px;
    font-size: 0.80rem;
    font-weight: 650;
}

.footer-links a:hover {
    color: var(--white);
}

@keyframes orbit {
    to {
        transform: rotate(360deg);
    }
}

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

    .hero-grid {
        grid-template-columns: 1fr 0.85fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(3rem, 7vw, 4.5rem);
    }

    .platform-preview {
        transform: none;
    }

    .security-grid {
        gap: 60px;
    }
}

@media (max-width: 840px) {
    .desktop-access {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 150px;
        padding-bottom: 90px;
    }

    .hero-copy {
        padding: 0;
    }

    .hero-visual {
        min-height: 460px;
    }

    .platform-preview {
        width: min(100%, 560px);
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

    .section-heading .eyebrow {
        grid-column: auto;
    }

    .section-heading > p {
        max-width: 620px;
    }

    .product-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        gap: 58px;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 580px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand small {
        display: none;
    }

    .brand strong {
        font-size: 1.08rem;
    }

    .language-switcher button {
        min-width: 31px;
        padding-inline: 6px;
    }

    .mobile-menu {
        top: 72px;
        right: 14px;
        left: 14px;
    }

    .hero-grid {
        padding-top: 128px;
        padding-bottom: 72px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 13.5vw, 4rem);
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .metrics {
        gap: 8px;
    }

    .metrics strong {
        font-size: 1.16rem;
    }

    .metrics span {
        font-size: 0.64rem;
    }

    .hero-visual {
        min-height: 390px;
    }

    .orbit-one {
        width: 390px;
        height: 390px;
    }

    .orbit-two {
        width: 300px;
        height: 300px;
    }

    .preview-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .preview-row {
        grid-template-columns: 40px 1fr;
    }

    .preview-row strong {
        display: none;
    }

    .platform-section,
    .security-section {
        padding: 84px 0;
    }

    .product-grid {
        margin-top: 44px;
    }

    .product-card {
        min-height: 0;
        padding: 28px 24px;
        border-radius: 22px;
    }

    .product-card h3 {
        font-size: 2.1rem;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-card {
        padding: 36px 25px;
    }

    .cta-card .button {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

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