/* ========================================================================
   AIKeyMoji — Marketing site
   Single CSS file used by every page.
   ========================================================================*/

:root {
    --green-light: #DCF8C6;
    --green-mint: #ECF7EE;
    --green: #25D366;
    --green-dark: #128C7E;
    --green-deep: #075E54;
    --yellow: #FFB800;
    --pink: #FF6B9D;
    --bg: #FFFFFF;
    --bg-soft: #F7FAF8;
    --bg-section: #F2F8F4;
    --text: #1F2A24;
    --text-soft: #4A5A52;
    --text-mute: #7A8C84;
    --border: #E1ECE5;
    --shadow-sm: 0 1px 3px rgba(15, 50, 30, .06), 0 1px 2px rgba(15, 50, 30, .04);
    --shadow-md: 0 8px 24px rgba(15, 80, 50, .08), 0 2px 6px rgba(15, 50, 30, .04);
    --shadow-lg: 0 24px 60px rgba(15, 80, 50, .12), 0 8px 20px rgba(15, 50, 30, .06);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

a:hover {
    color: var(--green-deep);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: transparent;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================================================
   Navigation
   ===========================================================*/
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
    font-size: 18px;
    letter-spacing: -0.01em;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(180deg, #2BE373 0%, #25D366 50%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 211, 102, .35);
    overflow: hidden;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--text-soft);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: all .2s ease;
}

.nav-links a:hover {
    background: var(--green-mint);
    color: var(--green-deep);
}

.nav-links a.cta-link {
    background: var(--green);
    color: white;
    font-weight: 600;
}

.nav-links a.cta-link:hover {
    background: var(--green-dark);
    color: white;
    transform: translateY(-1px);
}

/* Language switcher pill (EN ↔ HE) */
.nav-links a.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text-soft);
    font-size: 13.5px;
    font-weight: 600;
}

.nav-links a.lang-switch::before {
    content: "🌐";
    font-size: 14px;
}

.nav-links a.lang-switch:hover {
    background: var(--green-mint);
    color: var(--green-deep);
    border-color: var(--green-light);
}

/* "More" dropdown menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown summary {
    list-style: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    transition: all .2s ease;
}

.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::marker { content: ""; }

.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
    background: var(--green-mint);
    color: var(--green-deep);
}

.nav-dropdown summary .caret {
    font-size: 10px;
    line-height: 1;
    transition: transform .2s ease;
}

.nav-dropdown[open] summary .caret { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 60;
}

html[dir="rtl"] .dropdown-menu {
    right: auto;
    left: 0;
}

.dropdown-menu a {
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text) !important;
    font-size: 14.5px;
    font-weight: 500 !important;
    background: transparent !important;
    width: auto !important;
}

.dropdown-menu a:hover {
    background: var(--green-mint) !important;
    color: var(--green-deep) !important;
    transform: none;
}

@media (prefers-color-scheme: dark) {
    .dropdown-menu { background: var(--bg-soft); }
}

@media (max-width: 720px) {
    /* Inline dropdown on mobile (no absolute positioning) */
    .nav-dropdown { width: 100%; }
    .nav-dropdown summary {
        width: 100%;
        padding: 12px 16px;
        justify-content: space-between;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 18px;
        background: transparent;
    }
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--green-mint);
    color: var(--green-dark);
    align-items: center;
    justify-content: center;
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 12px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 12px 16px; }
    .nav-toggle { display: flex; }
}

/* ===========================================================
   Hero
   ===========================================================*/
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 64px;
    background:
        radial-gradient(circle at 85% 10%, rgba(220, 248, 198, 0.7), transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(220, 248, 198, 0.55), transparent 50%),
        var(--bg);
}

.hero-grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-light);
    color: var(--green-deep);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(36px, 5.4vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.022em;
    margin-bottom: 18px;
}

.hero h1 .accent {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p.lede {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-soft);
    max-width: 560px;
    margin: 0 0 28px;
}

@media (max-width: 920px) {
    .hero p.lede { margin-left: auto; margin-right: auto; }
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 920px) {
    .cta-row { justify-content: center; }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(180deg, #2BE373, #25D366);
    color: white;
    box-shadow: 0 8px 18px rgba(37, 211, 102, .32);
}

.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, .42);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--green-mint);
    color: var(--green-deep);
    border-color: var(--green-light);
}

.hero-stat-row {
    margin-top: 36px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

@media (max-width: 920px) {
    .hero-stat-row { justify-content: center; }
}

.hero-stat {
    text-align: left;
}

.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}

.hero-stat span {
    color: var(--text-mute);
    font-size: 13px;
}

/* Phone mockup */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 9 / 19.5;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 38px;
    background: linear-gradient(180deg, #2BE373 0%, #25D366 50%, #128C7E 100%);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.phone-mockup .frame {
    position: absolute;
    inset: 0;
    border-radius: 56px;
    border: 14px solid #1A1A1A;
    box-shadow: 0 30px 80px rgba(15, 80, 50, .25), inset 0 0 0 2px #2c2c2e;
    z-index: 2;
    pointer-events: none;
}

.phone-mockup .notch {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    border-radius: 16px;
    background: #1A1A1A;
    z-index: 3;
}

.phone-screen {
    position: absolute;
    inset: 18px;
    border-radius: 38px;
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 32px 24px;
}

/* ===========================================================
   Sections
   ===========================================================*/
section {
    padding: 80px 0;
}

section.alt {
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-header .eyebrow {
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-soft);
    font-size: 17px;
}

/* ===========================================================
   Feature grid
   ===========================================================*/
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--green-mint);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-soft);
    font-size: 15px;
}

/* ===========================================================
   Mode cards (horizontal)
   ===========================================================*/
.mode-list {
    display: grid;
    gap: 18px;
}

.mode-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .25s ease;
}

@media (max-width: 720px) {
    .mode-card {
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto auto;
    }
    .mode-card .mode-emoji { grid-row: span 2; }
}

.mode-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.mode-emoji {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--green-light), white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 1px solid var(--border);
}

.mode-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.mode-card p {
    color: var(--text-soft);
    font-size: 14.5px;
}

.mode-tag {
    background: var(--green-mint);
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ===========================================================
   Steps (How it works)
   ===========================================================*/
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    counter-reset: stepcounter;
}

.step {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    counter-increment: stepcounter;
}

.step::before {
    content: counter(stepcounter);
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 40px 6px 0;
}

.step p {
    color: var(--text-soft);
    font-size: 14.5px;
}

/* ===========================================================
   Sticker showcase (sample tiles)
   ===========================================================*/
.sticker-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    max-width: 720px;
    margin: 32px auto 0;
}

.sticker-tile {
    aspect-ratio: 1;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    transition: transform .2s;
}

.sticker-tile:hover {
    transform: scale(1.08) rotate(-3deg);
    border-color: var(--green-light);
}

/* ===========================================================
   Categories pill list
   ===========================================================*/
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
}

.category-pill .count {
    color: var(--text-mute);
    font-weight: 500;
    font-size: 13px;
}

/* ===========================================================
   Privacy callout
   ===========================================================*/
.privacy-callout {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 56px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.privacy-callout::before,
.privacy-callout::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.privacy-callout::before {
    width: 320px;
    height: 320px;
    top: -160px;
    left: -100px;
}

.privacy-callout::after {
    width: 240px;
    height: 240px;
    bottom: -120px;
    right: -80px;
}

.privacy-callout > * {
    position: relative;
    z-index: 1;
}

.privacy-callout h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.privacy-callout p {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 24px;
    opacity: .94;
}

.privacy-callout .btn {
    background: white;
    color: var(--green-dark);
}

.privacy-callout .btn:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

/* ===========================================================
   FAQ
   ===========================================================*/
.faq {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-q::after {
    content: '+';
    font-size: 22px;
    color: var(--green-dark);
    font-weight: 400;
    transition: transform .25s ease;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-soft);
    font-size: 15px;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-a {
    padding: 0 22px 18px;
    max-height: 400px;
}

/* ===========================================================
   Legal pages (privacy, terms)
   ===========================================================*/
.legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 24px;
}

.legal h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.legal .updated {
    color: var(--text-mute);
    font-size: 14px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.legal h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 12px;
    letter-spacing: -0.01em;
}

.legal h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 24px 0 8px;
}

.legal p, .legal li {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal ul, .legal ol {
    margin-left: 22px;
    margin-bottom: 16px;
}

.legal li {
    margin-bottom: 6px;
}

.legal a {
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-underline-offset: 3px;
}

/* ===========================================================
   Footer
   ===========================================================*/
.footer {
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
    padding: 56px 0 32px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-brand {
    grid-column: span 1;
}

@media (max-width: 720px) {
    .footer-brand { grid-column: span 2; }
}

.footer-brand p {
    color: var(--text-mute);
    font-size: 14px;
    margin-top: 12px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    color: var(--text);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-mute);
    font-size: 14.5px;
}

.footer-col a:hover {
    color: var(--green-dark);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-mute);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===========================================================
   Utility
   ===========================================================*/
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ===========================================================
   Animations
   ===========================================================*/
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    animation: fade-up .8s ease both;
}

.fade-up.delay-1 { animation-delay: .12s; }
.fade-up.delay-2 { animation-delay: .24s; }
.fade-up.delay-3 { animation-delay: .36s; }

/* ===========================================================
   Dark mode (auto, follows system preference)
   ===========================================================*/
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0F1F18;
        --bg-soft: #14271E;
        --bg-section: #102019;
        --text: #E8F4EC;
        --text-soft: #B5C9BE;
        --text-mute: #7E948A;
        --border: #1F3328;
        --green-mint: #163024;
        --green-light: #1B3F2D;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, .3), 0 1px 2px rgba(0, 0, 0, .2);
        --shadow-md: 0 8px 24px rgba(0, 0, 0, .35), 0 2px 6px rgba(0, 0, 0, .2);
        --shadow-lg: 0 24px 60px rgba(0, 0, 0, .5), 0 8px 20px rgba(0, 0, 0, .3);
    }
    .nav { background: rgba(15, 31, 24, .85); }
    .feature-card,
    .mode-card,
    .step,
    .faq-item,
    .category-pill,
    .sticker-tile {
        background: var(--bg-soft);
    }
    .btn-secondary {
        background: var(--bg-soft);
        color: var(--text);
        border-color: var(--border);
    }
}

/* ===========================================================
   Right-to-left support (Hebrew)
   ===========================================================*/
html[dir="rtl"] .step::before {
    right: auto;
    left: 18px;
}

html[dir="rtl"] .step h3 {
    margin: 0 0 6px 40px;
}

html[dir="rtl"] .nav-links {
    direction: rtl;
}

html[dir="rtl"] .footer-bottom {
    direction: rtl;
}

html[dir="rtl"] .mode-card {
    direction: rtl;
}

/* ===========================================================
   Print stylesheet (legal pages, support reference)
   ===========================================================*/
@media print {
    .nav,
    .footer,
    .nav-toggle,
    .cta-row,
    .privacy-callout,
    .float-anim,
    .phone-mockup {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
    a {
        color: black;
        text-decoration: underline;
    }
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.85em;
        color: #555;
    }
    .container,
    .legal {
        max-width: none;
        padding: 0;
    }
    section {
        padding: 24px 0;
        page-break-inside: avoid;
    }
    h1 { font-size: 24pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 13pt; }
}

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