@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
    --bg: #050915;
    --bg-soft: #080e1d;
    --panel: rgba(13, 23, 43, 0.72);
    --panel-strong: #0d172b;
    --line: rgba(129, 158, 202, 0.16);
    --line-bright: rgba(72, 155, 255, 0.38);
    --text: #f4f8ff;
    --muted: #91a1bb;
    --blue: #2f8cff;
    --blue-light: #71bcff;
    --cyan: #38d8ff;
    --green: #4de3a2;
    --radius: 22px;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    color: #fff;
    background: rgba(47, 140, 255, 0.6);
}

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

img,
svg {
    display: block;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #fff;
    background: var(--blue);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

.ambient {
    position: fixed;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient__grid {
    position: absolute;
    inset: 0;
    opacity: 0.38;
    background-image:
        linear-gradient(rgba(74, 119, 177, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 119, 177, 0.055) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.ambient__glow {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    animation: drift 16s ease-in-out infinite alternate;
}

.ambient__glow--one {
    top: -220px;
    right: -160px;
    background: #087cff;
}

.ambient__glow--two {
    top: 35%;
    left: -360px;
    background: #193ac9;
    animation-delay: -7s;
}

.ambient__noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

@keyframes drift {
    to { transform: translate3d(80px, 50px, 0) scale(1.08); }
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(5, 9, 21, 0.78);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand img {
    filter: drop-shadow(0 0 18px rgba(47, 140, 255, 0.28));
}

.brand strong {
    color: var(--blue-light);
}

.nav {
    display: flex;
    gap: 34px;
    color: #a8b6cb;
    font-size: 14px;
}

.nav a {
    position: relative;
    transition: color 180ms ease;
}

.nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--blue-light);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: #fff;
}

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

.header-status {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 8px 12px;
    color: #b7c3d5;
    background: rgba(14, 26, 48, 0.62);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.status-dot {
    position: relative;
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(77, 227, 162, 0.8);
}

.status-dot::after {
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(77, 227, 162, 0.4);
    border-radius: inherit;
    content: "";
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    70%, 100% { opacity: 0; transform: scale(1.8); }
}

.hero {
    position: relative;
    display: grid;
    min-height: 790px;
    padding: 150px 0 88px;
    place-items: center;
}

.hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
    gap: 72px;
    align-items: center;
}

.eyebrow,
.section-index {
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px;
}

.eyebrow__mark {
    width: 24px;
    height: 1px;
    background: var(--blue-light);
    box-shadow: 0 0 10px var(--blue);
}

.hero h1,
.section-heading h2,
.status-panel h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(64px, 7vw, 100px);
    font-weight: 800;
}

.hero h1 span,
.section-heading h2 span,
.status-panel h2 span {
    color: transparent;
    background: linear-gradient(110deg, var(--blue-light), #3d7eff 56%, #756fff);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero__lead {
    margin: 18px 0 0;
    color: #dce9fb;
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.hero__copy {
    max-width: 570px;
    margin: 19px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.hero__actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button--primary {
    background: linear-gradient(135deg, #1781ff, #3263f4);
    box-shadow: 0 14px 34px rgba(31, 112, 255, 0.28), inset 0 1px rgba(255, 255, 255, 0.2);
}

.button svg,
.contact-links svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.button:hover,
.button:focus-visible {
    box-shadow: 0 17px 42px rgba(31, 112, 255, 0.42), inset 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero__note {
    color: #71819b;
    font-size: 12px;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    position: absolute;
    z-index: -1;
    inset: 12% 3%;
    background: rgba(25, 119, 255, 0.24);
    border-radius: 50%;
    filter: blur(70px);
    content: "";
}

.terminal-card {
    position: relative;
    padding: 17px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(16, 29, 53, 0.92), rgba(7, 14, 29, 0.88));
    border: 1px solid rgba(109, 154, 218, 0.24);
    border-radius: 25px;
    box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(20px);
}

.terminal-card::after {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(104, 182, 255, 0.75), transparent);
    content: "";
}

.terminal-card__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 14px;
    color: #6f829e;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.terminal-card__live {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: #74e6b5;
}

.terminal-card__live i {
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
}

.system-core {
    position: relative;
    display: grid;
    height: 360px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(21, 91, 187, 0.24), transparent 39%),
        linear-gradient(rgba(82, 123, 175, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82, 123, 175, 0.05) 1px, transparent 1px),
        rgba(5, 12, 25, 0.72);
    background-size: auto, 36px 36px, 36px 36px, auto;
    border: 1px solid rgba(94, 136, 193, 0.12);
    border-radius: 17px;
    place-items: center;
}

.system-core__orbit {
    position: absolute;
    border: 1px solid rgba(73, 149, 255, 0.19);
    border-radius: 50%;
}

.system-core__orbit::before {
    position: absolute;
    top: 50%;
    left: -4px;
    width: 7px;
    height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--blue);
    content: "";
}

.system-core__orbit--outer {
    width: 285px;
    height: 285px;
    animation: rotate 18s linear infinite;
}

.system-core__orbit--inner {
    width: 205px;
    height: 205px;
    border-style: dashed;
    animation: rotate 12s linear infinite reverse;
}

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

.system-core__center {
    position: relative;
    z-index: 2;
    display: flex;
    width: 126px;
    height: 126px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 20%, rgba(47, 140, 255, 0.25), rgba(8, 18, 38, 0.96));
    border: 1px solid rgba(73, 159, 255, 0.48);
    border-radius: 50%;
    box-shadow: 0 0 44px rgba(29, 118, 255, 0.26), inset 0 0 24px rgba(65, 153, 255, 0.08);
}

.system-core__center img {
    margin-bottom: 5px;
}

.system-core__center strong {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    letter-spacing: 0.09em;
}

.system-core__center span {
    color: var(--green);
    font-size: 8px;
    letter-spacing: 0.16em;
}

.system-node {
    position: absolute;
    z-index: 3;
    padding: 6px 11px;
    color: #aebed5;
    background: rgba(13, 25, 47, 0.93);
    border: 1px solid rgba(95, 145, 213, 0.22);
    border-radius: 7px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.28);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.system-node--scanner { top: 36px; left: 48px; }
.system-node--decision { top: 67px; right: 34px; }
.system-node--risk { right: 47px; bottom: 47px; }
.system-node--execution { bottom: 72px; left: 37px; }

.terminal-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 9px;
}

.terminal-metrics div {
    display: flex;
    min-width: 0;
    padding: 11px 12px;
    align-items: center;
    justify-content: space-between;
    background: rgba(7, 15, 30, 0.62);
    border: 1px solid rgba(98, 137, 190, 0.1);
    border-radius: 10px;
}

.terminal-metrics span {
    color: #63748d;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.terminal-metrics strong {
    color: #d4e3f7;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
}

.hero__fade {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 130px;
    background: linear-gradient(transparent, var(--bg));
    pointer-events: none;
}

.section {
    padding: 110px 0;
}

.section--about {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(8, 16, 32, 0.65), rgba(5, 9, 21, 0.2));
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 100px;
    align-items: start;
}

.section-heading h2,
.status-panel h2 {
    margin-top: 17px;
    font-size: clamp(38px, 4.2vw, 58px);
}

.section-heading > p {
    max-width: 530px;
    margin: 18px auto 0;
    color: var(--muted);
}

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

.about-copy > p {
    max-width: 650px;
    margin: 4px 0 30px;
    color: #b6c5da;
    font-size: 20px;
    line-height: 1.65;
}

.capability-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.capability-list span {
    padding: 8px 13px;
    color: #9fb2ce;
    background: rgba(17, 31, 56, 0.6);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
}

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

.feature-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(15, 27, 49, 0.75), rgba(8, 15, 30, 0.64));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
    transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.feature-card::after {
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(44, 137, 255, 0.13), transparent 67%);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.feature-card:hover {
    background: linear-gradient(145deg, rgba(18, 34, 62, 0.9), rgba(8, 16, 32, 0.74));
    border-color: var(--line-bright);
    transform: translateY(-5px);
}

.feature-icon {
    display: grid;
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, rgba(42, 137, 255, 0.2), rgba(42, 137, 255, 0.06));
    border: 1px solid rgba(80, 157, 255, 0.25);
    border-radius: 13px;
    place-items: center;
}

.feature-icon svg {
    width: 23px;
    fill: none;
    stroke: var(--blue-light);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.feature-number {
    position: absolute;
    top: 27px;
    right: 27px;
    color: #40516a;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    letter-spacing: 0.14em;
}

.feature-card h3 {
    position: relative;
    z-index: 1;
    margin: 32px 0 9px;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    letter-spacing: -0.025em;
}

.feature-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.status-panel {
    position: relative;
    display: grid;
    grid-template-columns: 165px 1fr auto;
    gap: 48px;
    align-items: center;
    padding: 55px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(21, 48, 88, 0.58), rgba(10, 20, 39, 0.78)),
        var(--panel-strong);
    border: 1px solid rgba(83, 147, 231, 0.23);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.status-panel::before {
    position: absolute;
    top: -180px;
    right: 5%;
    width: 420px;
    height: 420px;
    background: rgba(28, 114, 255, 0.19);
    border-radius: 50%;
    filter: blur(70px);
    content: "";
}

.status-panel__signal {
    position: relative;
    display: flex;
    height: 100px;
    gap: 8px;
    align-items: end;
    justify-content: center;
}

.status-panel__signal span {
    width: 14px;
    height: 38%;
    background: linear-gradient(to top, #1d68e6, #5bbcff);
    border-radius: 5px 5px 2px 2px;
    box-shadow: 0 0 18px rgba(47, 140, 255, 0.25);
    animation: equalizer 1.8s ease-in-out infinite alternate;
}

.status-panel__signal span:nth-child(2) { height: 80%; animation-delay: -0.5s; }
.status-panel__signal span:nth-child(3) { height: 58%; animation-delay: -1s; }
.status-panel__signal span:nth-child(4) { height: 100%; animation-delay: -1.4s; }

@keyframes equalizer {
    to { height: 28%; opacity: 0.55; }
}

.status-panel__content {
    position: relative;
    z-index: 1;
}

.status-panel__content h2 {
    font-size: clamp(34px, 3.8vw, 52px);
}

.status-panel__content p {
    max-width: 600px;
    margin: 17px 0 0;
    color: var(--muted);
}

.beta-badge {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 180px;
    padding: 22px;
    flex-direction: column;
    background: rgba(5, 13, 28, 0.62);
    border: 1px solid rgba(85, 155, 247, 0.23);
    border-radius: 17px;
}

.beta-badge span {
    color: #7185a2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.beta-badge strong {
    margin-top: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
}

.beta-badge em {
    color: var(--blue-light);
    font-family: "Manrope", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.section--contact {
    border-top: 1px solid var(--line);
    background: rgba(7, 13, 26, 0.4);
}

.contact-links {
    display: grid;
    gap: 12px;
}

.contact-links a {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
    background: rgba(13, 24, 44, 0.64);
    border: 1px solid var(--line);
    border-radius: 15px;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
    background: rgba(17, 32, 58, 0.85);
    border-color: var(--line-bright);
    transform: translateX(4px);
}

.contact-links span {
    color: #6e819d;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-links strong {
    overflow: hidden;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    text-overflow: ellipsis;
}

.contact-links svg {
    width: 18px;
    color: var(--blue-light);
}

.site-footer {
    border-top: 1px solid var(--line);
}

.site-footer__inner {
    display: flex;
    min-height: 100px;
    align-items: center;
    justify-content: space-between;
}

.brand--footer {
    color: #b7c4d7;
    font-size: 14px;
}

.site-footer p {
    margin: 0;
    color: #5f718b;
    font-size: 11px;
    letter-spacing: 0.06em;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 720ms ease, transform 720ms cubic-bezier(.2, .8, .2, 1);
}

.reveal--delay {
    transition-delay: 110ms;
}

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

:focus-visible {
    outline: 2px solid var(--blue-light);
    outline-offset: 4px;
}

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

    .hero {
        padding-top: 130px;
    }

    .hero__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero__content {
        max-width: 760px;
        text-align: center;
        justify-self: center;
    }

    .eyebrow,
    .hero__actions {
        justify-content: center;
    }

    .hero__copy {
        margin-inline: auto;
    }

    .hero-visual {
        width: min(600px, 100%);
        justify-self: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

    .status-panel {
        grid-template-columns: 110px 1fr;
    }

    .beta-badge {
        grid-column: 2;
        width: 210px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 30px, 1180px);
    }

    .site-header__inner {
        min-height: 68px;
    }

    .header-status {
        padding: 7px 9px;
        font-size: 10px;
    }

    .brand {
        font-size: 14px;
    }

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

    .hero {
        min-height: auto;
        padding: 115px 0 75px;
    }

    .hero h1 {
        font-size: clamp(54px, 18vw, 76px);
    }

    .hero__lead {
        font-size: 19px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
        max-width: 280px;
    }

    .system-core {
        height: 300px;
    }

    .system-core__orbit--outer {
        width: 230px;
        height: 230px;
    }

    .system-core__orbit--inner {
        width: 168px;
        height: 168px;
    }

    .system-core__center {
        width: 106px;
        height: 106px;
    }

    .system-core__center img {
        width: 42px;
        height: 42px;
    }

    .system-node--scanner { top: 25px; left: 18px; }
    .system-node--decision { top: 54px; right: 14px; }
    .system-node--risk { right: 18px; bottom: 34px; }
    .system-node--execution { bottom: 48px; left: 13px; }

    .terminal-metrics {
        grid-template-columns: 1fr;
    }

    .terminal-metrics div {
        padding: 9px 11px;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading--center {
        margin-bottom: 36px;
        text-align: left;
    }

    .section-heading > p {
        margin-inline: 0;
    }

    .about-copy > p {
        font-size: 17px;
    }

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

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

    .status-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 32px 24px;
    }

    .status-panel__signal {
        width: 120px;
        height: 64px;
        justify-content: flex-start;
    }

    .beta-badge {
        grid-column: 1;
    }

    .contact-links a {
        grid-template-columns: 1fr auto;
        gap: 4px 16px;
    }

    .contact-links span {
        grid-column: 1 / -1;
    }

    .contact-links strong {
        font-size: 14px;
    }

    .site-footer__inner {
        padding: 28px 0;
        flex-direction: column;
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
