/* ═══════════════════════════════════════════════════════════
   DocsCME Landing Page — Apple/Tesla-inspired Design
   ═══════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #074B6B;
    --primary-light: #0a6a99;
    --teal: #009BAC;
    --dark: #020413;
    --cream: #F5F3E1;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f7;
    --gray-200: #e8e8ed;
    --gray-400: #9b9b9b;
    --gray-600: #6e6e73;
    --gray-800: #1d1d1f;
    --gradient: linear-gradient(135deg, var(--teal), var(--primary));
    --gradient-dark: linear-gradient(135deg, #020413 0%, #074B6B 100%);
    --font: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 64px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.4s var(--ease);
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.nav__logo-img {
    height: 36px;
    width: auto;
    transition: filter 0.3s;
}

.nav:not(.nav--scrolled) .nav__logo-img {
    filter: brightness(0) invert(1);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--gray-800);
    transition: color 0.3s;
    position: relative;
}

.nav:not(.nav--scrolled) .nav__link {
    color: rgba(255, 255, 255, 0.85);
}

.nav:not(.nav--scrolled) .nav__link:hover {
    color: #fff;
}

.nav__link:hover {
    color: var(--primary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal);
    transition: width 0.3s var(--ease);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--gradient);
    color: #fff !important;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav__cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 155, 172, 0.35);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 6px;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.nav:not(.nav--scrolled) .nav__hamburger span {
    background: #fff;
}

.nav__hamburger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: -20%;
    background: var(--gradient-dark);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 155, 172, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(7, 75, 107, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(0, 155, 172, 0.15) 0%, transparent 50%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 4, 19, 0.3) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero__badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    padding: 8px 24px;
    border: 1px solid rgba(0, 155, 172, 0.4);
    border-radius: 40px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    background: rgba(0, 155, 172, 0.08);
}

.hero__title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* Store Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 14px;
    font-family: var(--font);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
}

.btn--store {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn--store:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn--store-light {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.btn__text {
    text-align: left;
    line-height: 1.3;
}

.btn__text small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    display: block;
}

.btn__text strong {
    font-size: 16px;
    font-weight: 600;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.5s;
}

.hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero__scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ─── Section Base ─── */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section--light {
    background: var(--gray-100);
}

.section--dark {
    background: var(--dark);
}

.section--cream {
    background: var(--cream);
}

.section--gradient {
    background: var(--gradient-dark);
}

.section__eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.section__eyebrow--light {
    color: var(--teal);
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.section__title--light {
    color: #fff;
}

.section__title--center {
    text-align: center;
}

.section__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 560px;
}

.section__text--light {
    color: rgba(255, 255, 255, 0.65);
}

.section__text--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Split Layout ─── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split--reverse {
    direction: ltr;
}

.split--reverse .split__visual {
    order: -1;
}

/* ─── Phone Mockup ─── */
.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-mockup__frame {
    width: 280px;
    height: 560px;
    background: var(--dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.06),
        inset 0 0 0 2px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.phone-mockup__frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: var(--dark);
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.phone-mockup__screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

/* ─── Stats ─── */
.stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat__row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    line-height: 1;
}

.stat__number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary);
    line-height: 1;
}

.stat__plus {
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.stat__label {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 4px;
}

/* ─── Feature Cards ─── */
.feature-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 32px;
}

.feature-card__bg {
    position: absolute;
    inset: -30%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.feature-card:hover .feature-card__bg {
    transform: scale(1.05);
}

.feature-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(2, 4, 19, 0.1) 0%,
            rgba(2, 4, 19, 0.85) 60%,
            rgba(2, 4, 19, 0.95) 100%);
    z-index: 1;
}

.feature-card__content {
    position: relative;
    z-index: 2;
    padding: 48px;
    max-width: 600px;
}

.feature-card--right .feature-card__content {
    margin-left: auto;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    color: var(--teal);
    margin-bottom: 20px;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.feature-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.feature-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0, 155, 172, 0.15);
    color: var(--teal);
    border: 1px solid rgba(0, 155, 172, 0.25);
}

/* ─── Voice of Doctors ─── */
.vod-logo {
    max-width: 360px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 60px rgba(0, 155, 172, 0.3));
}

.vod-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vod-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.vod-list__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

/* ─── Steps / How It Works ─── */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.step {
    text-align: center;
    padding: 40px 24px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--teal);
}

.step__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.step:hover .step__number {
    opacity: 1;
}

.step__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.step__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* ─── Specializations Marquee ─── */
.specializations-section {
    padding-bottom: 80px;
}

.marquee-wrapper {
    margin-top: 56px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee {
    overflow: hidden;
    margin-bottom: 16px;
}

.marquee__track {
    display: flex;
    gap: 12px;
    animation: marquee 60s linear infinite;
    width: max-content;
}

.marquee--reverse .marquee__track {
    animation-direction: reverse;
}

.marquee__item {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    transition: all 0.3s;
}

.marquee__item:hover {
    background: rgba(0, 155, 172, 0.15);
    color: var(--teal);
    border-color: rgba(0, 155, 172, 0.3);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── Download CTA ─── */
.section--cta {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: -20%;
    background: var(--gradient-dark);
    z-index: 0;
}

.cta__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0, 155, 172, 0.2) 0%, transparent 60%);
}

.cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 32px;
    filter: drop-shadow(0 10px 30px rgba(0, 155, 172, 0.4));
}

.cta__link {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.cta__link:hover {
    color: #fff;
}

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.contact-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
    display: block;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--teal);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--teal);
}

.contact-card__icon svg {
    width: 100%;
    height: 100%;
}

.contact-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.contact-card__detail {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 56px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    transition: all 0.3s var(--ease);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7, 75, 107, 0.3);
}

/* ─── Footer ─── */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 80px 0 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer__company {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer__heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer__links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links-group a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer__links-group a:hover {
    color: var(--teal);
}

.footer__bottom {
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
}

/* ─── Animations ─── */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.anim-fade-up.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
[data-delay="100"].anim-fade-up {
    transition-delay: 0.1s;
}

[data-delay="150"].anim-fade-up {
    transition-delay: 0.15s;
}

[data-delay="200"].anim-fade-up {
    transition-delay: 0.2s;
}

[data-delay="300"].anim-fade-up {
    transition-delay: 0.3s;
}

[data-delay="400"].anim-fade-up {
    transition-delay: 0.4s;
}

/* Counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .split--reverse .split__visual {
        order: 0;
    }

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

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

    .feature-card {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 56px;
    }

    .section {
        padding: 80px 0;
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease);
    }

    .nav__links--open {
        opacity: 1;
        pointer-events: all;
    }

    .nav__links--open .nav__link {
        color: var(--gray-800) !important;
        font-size: 18px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        gap: 32px;
    }

    .stat__number {
        font-size: 2.2rem;
    }

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

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

    .feature-card {
        min-height: 300px;
    }

    .feature-card__content {
        padding: 32px 24px;
    }

    .feature-card__title {
        font-size: 1.5rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .phone-mockup__frame {
        width: 220px;
        height: 440px;
        border-radius: 32px;
        padding: 10px;
    }

    .phone-mockup__screen {
        border-radius: 22px;
    }

    .vod-logo {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .hero__badge {
        font-size: 11px;
        padding: 6px 18px;
    }

    .btn--store {
        width: 100%;
        justify-content: center;
    }

}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .anim-fade-up {
        opacity: 1;
        transform: none;
    }

    .marquee__track {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}