/* ==========================================================
   CHINMUN ERP
   PREMIUM HOME PAGE V2
========================================================== */

.hero-section {
    position: relative;
    min-height: 900px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(51, 72, 255, .20),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 75%,
            rgba(0, 220, 190, .08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #040611 0%,
            #070b1b 48%,
            #0c0820 100%
        );
}

/* ==========================================================
   BACKGROUND
========================================================== */

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(95, 122, 255, .075) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(95, 122, 255, .075) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            black 50%,
            transparent 100%
        );

    opacity: .7;
}


.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    animation: heroOrbFloat 8s ease-in-out infinite;
}

.hero-orb-blue {
    width: 420px;
    height: 420px;

    right: 5%;
    top: 10%;

    background:
        rgba(35, 85, 255, .25);
}

.hero-orb-purple {
    width: 340px;
    height: 340px;

    right: 30%;
    bottom: -100px;

    background:
        rgba(170, 50, 255, .18);

    animation-delay: -3s;
}

.hero-orb-cyan {
    width: 220px;
    height: 220px;

    left: -80px;
    top: 50%;

    background:
        rgba(0, 220, 195, .12);

    animation-delay: -5s;
}


.hero-light-line {
    position: absolute;

    width: 500px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(83, 191, 255, .5),
            transparent
        );

    opacity: .4;
}

.line-one {
    right: -100px;
    top: 30%;
    transform: rotate(-25deg);
}

.line-two {
    left: -120px;
    bottom: 25%;
    transform: rotate(25deg);
}


/* ==========================================================
   HERO CONTAINER
========================================================== */

.hero-container {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, .86fr)
        minmax(0, 1.14fr);

    gap: 65px;

    align-items: center;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content {
    position: relative;
    z-index: 3;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 14px;

    border-radius: 50px;

    border:
        1px solid
        rgba(105, 185, 255, .18);

    background:
        rgba(255, 255, 255, .035);

    color: #9aa8c5;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;

    backdrop-filter: blur(15px);

    margin-bottom: 24px;
}


.hero-badge strong {
    color: #f5b74e;
}


.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #00e5c3;

    box-shadow:
        0 0 15px
        rgba(0, 229, 195, .8);

    animation:
        statusPulse 1.8s ease-in-out infinite;
}


.hero-title {
    margin: 0;

    max-width: 650px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(55px, 6vw, 88px);

    line-height: .96;

    letter-spacing: -.055em;

    font-weight: 700;
}


.gradient-text {
    display: block;

    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            #63d8ff 30%,
            #8d6aff 65%,
            #d25aff 85%,
            #ffae3b 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-description {
    max-width: 590px;

    margin:
        28px 0 30px;

    color: #a5afc8;

    font-size: 17px;

    line-height: 1.8;
}


/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-actions {
    display: flex;
    gap: 12px;

    flex-wrap: wrap;
}


.btn-large {
    min-height: 54px;

    padding:
        0 22px;

    border-radius: 15px;
}


.button-icon {
    font-size: 16px;
}


.hero-trust {
    display: flex;

    gap: 22px;

    margin-top: 25px;

    flex-wrap: wrap;

    color: #707c99;

    font-size: 11px;

    font-weight: 600;
}


.hero-trust span {
    color: #58e7cf;

    margin-right: 4px;
}


/* ==========================================================
   DASHBOARD WRAPPER
========================================================== */

.hero-dashboard-wrap {
    position: relative;

    perspective: 1500px;
}


.dashboard-perspective {
    perspective: 1500px;
}


.dashboard-card {
    position: relative;

    overflow: hidden;

    border-radius: 25px;

    border:
        1px solid
        rgba(113, 137, 255, .30);

    background:
        rgba(7, 11, 27, .88);

    box-shadow:
        0 45px 110px rgba(0, 0, 0, .48),
        0 0 100px rgba(77, 66, 255, .13);

    transform-style: preserve-3d;

    transition:
        transform .16s ease-out,
        box-shadow .3s ease;
}


.dashboard-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            125deg,
            rgba(255, 255, 255, .08),
            transparent 20%,
            transparent 75%,
            rgba(114, 79, 255, .06)
        );

    pointer-events: none;

    z-index: 2;
}


/* ==========================================================
   BROWSER BAR
========================================================== */

.dashboard-browser-bar {
    height: 50px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        0 17px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .07);

    color: #707b97;

    font-size: 9px;

    letter-spacing: .1em;
}


.browser-dots {
    display: flex;
    gap: 5px;
}


.browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #4b546c;
}


.browser-title span {
    color: #525d76;
}


.browser-live {
    margin-left: auto;

    color: #58e8ce;

    font-weight: 800;

    letter-spacing: .12em;
}


/* ==========================================================
   DASHBOARD MAIN
========================================================== */

.dashboard-main {
    display: flex;

    min-height: 500px;
}


/* SIDEBAR */

.dashboard-sidebar {
    width: 61px;

    flex-shrink: 0;

    padding: 17px 10px;

    background:
        rgba(255, 255, 255, .018);

    border-right:
        1px solid
        rgba(255, 255, 255, .07);
}


.dashboard-logo {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    margin: 0 auto 27px;

    border-radius: 11px;

    font-family:
        "Space Grotesk";

    font-weight: 800;

    color: white;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #7137ff,
            #c23cff
        );

    box-shadow:
        0 8px 25px
        rgba(100, 60, 255, .35);
}


.dashboard-nav {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    margin: 5px auto;

    border-radius: 11px;

    color: #687490;

    font-size: 14px;

    transition:
        .25s ease;
}


.dashboard-nav:hover,
.dashboard-nav.active {
    color: white;

    background:
        linear-gradient(
            135deg,
            rgba(13, 110, 253, .7),
            rgba(123, 46, 247, .7)
        );

    box-shadow:
        0 8px 22px
        rgba(68, 63, 255, .18);
}


/* ==========================================================
   DASHBOARD CONTENT
========================================================== */

.dashboard-content {
    flex: 1;

    min-width: 0;

    padding: 24px;
}


.dashboard-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;
}


.dashboard-heading small {
    display: block;

    color: #77829e;

    font-size: 9px;
}


.dashboard-heading h3 {
    margin:
        5px 0 0;

    font-family:
        "Space Grotesk";

    font-size: 22px;

    color: #f2f4ff;
}


.dashboard-date {
    color: #68738e;

    font-size: 8px;

    letter-spacing: .08em;
}


/* ==========================================================
   KPI
========================================================== */

.dashboard-kpis {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;
}


.dashboard-kpi {
    position: relative;

    padding: 15px;

    border-radius: 14px;

    border:
        1px solid
        rgba(255, 255, 255, .07);

    background:
        rgba(255, 255, 255, .035);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

    overflow: hidden;
}


.dashboard-kpi::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            currentColor,
            transparent
        );

    opacity: .7;
}


.dashboard-kpi:hover {
    transform:
        translateY(-5px)
        translateZ(15px);

    border-color:
        rgba(135, 155, 255, .35);

    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, .25);
}


.dashboard-kpi small {
    display: block;

    color: #7f8aa3;

    font-size: 8px;

    margin-bottom: 8px;
}


.dashboard-kpi strong {
    display: block;

    font-size: 14px;

    color: #f5f7ff;
}


.dashboard-kpi span {
    display: block;

    margin-top: 6px;

    font-size: 8px;

    color: #62e8d0;
}


.dashboard-kpi.blue {
    color: #278cff;
}


.dashboard-kpi.purple {
    color: #a36bff;
}


.dashboard-kpi.green {
    color: #00e5c3;
}


.dashboard-kpi.orange {
    color: #ffad3b;
}


/* ==========================================================
   ANALYTICS
========================================================== */

.dashboard-analytics {
    display: grid;

    grid-template-columns:
        1.25fr .75fr;

    gap: 10px;

    margin-top: 10px;
}


.dashboard-panel {
    min-height: 225px;

    padding: 16px;

    border-radius: 15px;

    border:
        1px solid
        rgba(255, 255, 255, .07);

    background:
        rgba(255, 255, 255, .025);

    transition:
        transform .25s ease,
        border-color .25s ease;
}


.dashboard-panel:hover {
    border-color:
        rgba(130, 150, 255, .3);

    transform:
        translateY(-3px);
}


.panel-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 15px;

    font-size: 10px;
}


.panel-heading strong {
    color: #e6e9f5;
}


.panel-heading span {
    color: #68738e;

    font-size: 8px;
}


/* ==========================================================
   CHART
========================================================== */

.chart-area {
    position: relative;

    height: 170px;

    overflow: hidden;
}


.chart-grid-lines {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.chart-grid-lines span {
    display: block;

    width: 100%;

    height: 1px;

    background:
        rgba(255, 255, 255, .05);
}


.chart-bars {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 0;
    top: 8px;

    display: flex;

    align-items: end;

    gap: 10px;
}


.chart-bars i {
    flex: 1;

    min-width: 8px;

    border-radius:
        7px 7px 2px 2px;

    background:
        linear-gradient(
            to top,
            #2264ef,
            #884cff,
            #2fe4c4
        );

    box-shadow:
        0 0 15px
        rgba(90, 91, 255, .18);

    transform-origin: bottom;

    animation:
        chartRise 1.4s
        cubic-bezier(.2,.8,.2,1)
        both;
}


.chart-bars i:nth-child(2) {
    animation-delay: .08s;
}

.chart-bars i:nth-child(3) {
    animation-delay: .16s;
}

.chart-bars i:nth-child(4) {
    animation-delay: .24s;
}

.chart-bars i:nth-child(5) {
    animation-delay: .32s;
}

.chart-bars i:nth-child(6) {
    animation-delay: .40s;
}

.chart-bars i:nth-child(7) {
    animation-delay: .48s;
}

.chart-bars i:nth-child(8) {
    animation-delay: .56s;
}


/* ==========================================================
   INSIGHTS
========================================================== */

.insight {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .055);
}


.insight:last-child {
    border-bottom: 0;
}


.insight-icon {
    width: 29px;
    height: 29px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        rgba(255, 255, 255, .05);
}


.insight-icon.cyan {
    color: #50ecd4;
}


.insight-icon.orange {
    color: #ffad3b;
}


.insight-icon.purple {
    color: #ad7cff;
}


.insight strong {
    display: block;

    color: #e8eaf4;

    font-size: 9px;
}


.insight small {
    display: block;

    margin-top: 3px;

    color: #69758e;

    font-size: 7px;
}


/* ==========================================================
   FLOATING CHIPS
========================================================== */

.floating-chip {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 13px;

    border-radius: 13px;

    background:
        rgba(9, 13, 30, .75);

    border:
        1px solid
        rgba(255, 255, 255, .11);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, .28);

    z-index: 10;

    animation:
        floatingChip 5s ease-in-out infinite;
}


.floating-chip > span {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        rgba(72, 110, 255, .15);

    color: #67d8ff;
}


.floating-chip small {
    display: block;

    color: #717d97;

    font-size: 7px;
}


.floating-chip strong {
    display: block;

    margin-top: 2px;

    color: white;

    font-size: 10px;
}


.chip-sales {
    left: -38px;
    top: 18%;

    animation-delay:
        -.5s;
}


.chip-profit {
    right: -28px;
    bottom: 13%;

    animation-delay:
        -2s;
}


.dashboard-cursor-label {
    position: absolute;

    right: 16px;
    bottom: 13px;

    padding:
        7px 11px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .06);

    border:
        1px solid
        rgba(255, 255, 255, .08);

    backdrop-filter:
        blur(12px);

    color: #8e99b1;

    font-size: 8px;

    z-index: 10;
}


.dashboard-cursor-label span {
    display: inline-block;

    width: 6px;
    height: 6px;

    margin-right: 5px;

    border-radius: 50%;

    background: #00e5c3;

    box-shadow:
        0 0 12px
        rgba(0, 229, 195, .8);
}


/* ==========================================================
   SCROLL INDICATOR
========================================================== */

.scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

    color: #59657f;

    font-size: 8px;

    letter-spacing: .15em;
}


.scroll-indicator span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #65d9ff;

    box-shadow:
        0 0 12px
        rgba(101, 217, 255, .8);

    animation:
        scrollDot 1.8s ease-in-out infinite;
}


/* ==========================================================
   TRUST STRIP
========================================================== */

.trust-strip {
    position: relative;

    border-top:
        1px solid
        rgba(255, 255, 255, .07);

    border-bottom:
        1px solid
        rgba(255, 255, 255, .07);

    background:
        rgba(7, 11, 24, .85);

    backdrop-filter:
        blur(15px);
}


.trust-strip-inner {
    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    flex-wrap: wrap;
}


.trust-strip-inner div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #77839c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .08em;
}


.trust-strip-inner span {
    font-size: 13px;
}


/* ==========================================================
   FEATURE SECTION
========================================================== */

.feature-section {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #070b19,
            #090d1e
        );
}


.section-heading {
    max-width: 760px;
}


.section-eyebrow {
    margin-bottom: 15px;

    color: #6bdcff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .17em;
}


.section-heading h2,
.experience-copy h2 {
    margin: 0;

    font-family:
        "Space Grotesk";

    font-size:
        clamp(40px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -.045em;
}


.section-heading h2 span,
.experience-copy h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #66d7ff,
            #9d67ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.section-heading p {
    max-width: 650px;

    margin-top: 20px;

    color: #8995ae;

    font-size: 16px;

    line-height: 1.75;
}


/* ==========================================================
   FEATURE GRID
========================================================== */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.feature-card {
    position: relative;

    min-height: 290px;

    padding: 25px;

    overflow: hidden;

    border-radius: 23px;

    border:
        1px solid
        rgba(255, 255, 255, .08);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .055),
            rgba(255, 255, 255, .018)
        );

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.feature-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background:
        rgba(80, 80, 255, .08);

    filter: blur(25px);

    transition:
        .4s ease;
}


.feature-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(116, 138, 255, .35);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, .28);
}


.feature-card:hover::before {
    transform:
        scale(1.5);
}


.feature-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    margin-bottom: 38px;

    font-size: 20px;
}


.feature-icon.blue {
    color: #62c4ff;
    background:
        rgba(13, 110, 253, .14);
}


.feature-icon.purple {
    color: #b188ff;
    background:
        rgba(123, 46, 247, .15);
}


.feature-icon.cyan {
    color: #5cebd6;
    background:
        rgba(0, 229, 195, .12);
}


.feature-icon.orange {
    color: #ffc05b;
    background:
        rgba(255, 154, 0, .12);
}


.feature-card h3 {
    margin: 0 0 12px;

    font-family:
        "Space Grotesk";

    font-size: 21px;
}


.feature-card p {
    margin: 0;

    color: #808ca6;

    font-size: 13px;

    line-height: 1.7;
}


.feature-number {
    position: absolute;

    right: 20px;
    bottom: 18px;

    color: rgba(255, 255, 255, .08);

    font-family:
        "Space Grotesk";

    font-size: 42px;

    font-weight: 700;
}


/* ==========================================================
   EXPERIENCE
========================================================== */

.experience-section {
    position: relative;

    overflow: hidden;

    padding: 30px 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(96, 61, 255, .13),
            transparent 35%
        ),
        #070b19;
}


.experience-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: 5%;
    top: 50%;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        rgba(82, 61, 255, .09);

    filter:
        blur(90px);
}


.experience-container {
    position: relative;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 80px;
}


.experience-copy p {
    max-width: 560px;

    color: #8995ae;

    line-height: 1.8;

    font-size: 16px;

    margin:
        25px 0;
}


.text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #6fdcff;

    font-weight: 700;

    font-size: 13px;
}


.text-link span {
    transition:
        transform .25s ease;
}


.text-link:hover span {
    transform:
        translateX(5px);
}


/* ==========================================================
   ORBIT
========================================================== */

.experience-orbit {
    position: relative;

    width: min(470px, 100%);
    aspect-ratio: 1;

    margin: auto;
}


.orbit-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid
        rgba(117, 106, 255, .2);
}


.ring-one {
    width: 72%;
    height: 72%;

    animation:
        orbitRotate 18s linear infinite;
}


.ring-two {
    width: 100%;
    height: 100%;

    border-style: dashed;

    opacity: .45;

    animation:
        orbitRotateReverse 25s linear infinite;
}


.orbit-center {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 150px;
    height: 150px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(93, 79, 255, .28),
            rgba(10, 13, 31, .95)
        );

    border:
        1px solid
        rgba(134, 120, 255, .35);

    box-shadow:
        0 0 70px
        rgba(91, 68, 255, .25);
}


.orbit-logo {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin-bottom: 8px;

    border-radius: 13px;

    color: white;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #7b2ef7
        );
}


.orbit-center strong {
    font-family:
        "Space Grotesk";

    font-size: 16px;
}


.orbit-center small {
    color: #58e5d0;

    font-size: 9px;

    letter-spacing: .15em;
}


.orbit-node {
    position: absolute;

    padding:
        10px 15px;

    border-radius: 50px;

    background:
        rgba(9, 13, 30, .8);

    border:
        1px solid
        rgba(119, 132, 255, .2);

    backdrop-filter:
        blur(12px);

    color: #aab4cc;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;

    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, .25);
}


.node-one {
    left: 3%;
    top: 25%;
}


.node-two {
    right: 3%;
    top: 25%;
}


.node-three {
    right: 10%;
    bottom: 20%;
}


.node-four {
    left: 5%;
    bottom: 20%;
}


/* ==========================================================
   CTA
========================================================== */

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


.cta-card {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 55px;

    border-radius: 30px;

    border:
        1px solid
        rgba(118, 99, 255, .28);

    background:
        radial-gradient(
            circle at 85% 40%,
            rgba(128, 55, 255, .17),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            rgba(255, 255, 255, .055),
            rgba(255, 255, 255, .018)
        );

    box-shadow:
        0 30px 90px
        rgba(0, 0, 0, .3);
}


.cta-card h2 {
    max-width: 700px;

    margin: 0;

    font-family:
        "Space Grotesk";

    font-size:
        clamp(34px, 4vw, 55px);

    line-height: 1.05;

    letter-spacing: -.045em;
}


.cta-card p {
    margin: 15px 0 0;

    color: #8995ae;
}


.cta-buttons {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    flex-shrink: 0;
}


/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes heroOrbFloat {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(15px, -25px, 0)
            scale(1.08);
    }
}


@keyframes statusPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}


@keyframes chartRise {

    from {
        transform:
            scaleY(.05);
    }

    to {
        transform:
            scaleY(1);
    }
}


@keyframes floatingChip {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }
}


@keyframes scrollDot {

    0%,
    100% {
        transform:
            translateY(0);

        opacity: .5;
    }

    50% {
        transform:
            translateY(8px);

        opacity: 1;
    }
}


@keyframes orbitRotate {
    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}


@keyframes orbitRotateReverse {
    from {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }
}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

}