```css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #03050d;
    --panel: rgba(9, 14, 29, 0.72);
    --border: rgba(125, 150, 255, 0.22);
    --text: #f4f7ff;
    --muted: #8993ad;
    --cyan: #00e5ff;
    --purple: #8b5cf6;
    --blue: #3b82f6;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    font-family: "Inter", sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(92, 53, 255, 0.25),
            transparent 38%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(0, 229, 255, 0.08),
            transparent 30%
        ),
        #03050d;
}


/* =========================================
   AI BACKGROUND
========================================= */

.ai-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.grid {
    position: absolute;
    inset: -50%;

    background-image:
        linear-gradient(
            rgba(94, 113, 255, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(94, 113, 255, 0.06) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    transform: perspective(500px)
               rotateX(55deg)
               translateY(100px);

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 30%,
        black 70%,
        transparent
    );
}

.orb {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .15;

    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
    top: -200px;
    left: 10%;

    background: #7c3aed;
}

.orb-2 {
    right: -200px;
    top: 30%;

    background: #00e5ff;

    animation-delay: -3s;
}

.orb-3 {
    left: -250px;
    bottom: -200px;

    background: #2563eb;

    animation-delay: -6s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(35px, -25px);
    }
}


/* Floating particles */

.particles span {
    position: absolute;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #9daaff;

    box-shadow:
        0 0 12px #6d7cff;

    animation: particleMove 6s linear infinite;
}

.particles span:nth-child(1) {
    left: 10%;
    top: 20%;
}

.particles span:nth-child(2) {
    left: 25%;
    top: 70%;
    animation-delay: 1s;
}

.particles span:nth-child(3) {
    left: 42%;
    top: 30%;
    animation-delay: 2s;
}

.particles span:nth-child(4) {
    left: 58%;
    top: 75%;
    animation-delay: 3s;
}

.particles span:nth-child(5) {
    left: 73%;
    top: 20%;
    animation-delay: 1.5s;
}

.particles span:nth-child(6) {
    left: 88%;
    top: 60%;
    animation-delay: 2.5s;
}

.particles span:nth-child(7) {
    left: 15%;
    top: 50%;
    animation-delay: 4s;
}

.particles span:nth-child(8) {
    left: 80%;
    top: 85%;
    animation-delay: 3.5s;
}

@keyframes particleMove {

    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(100% - 30px, 1000px);

    margin: auto;

    padding:
        70px 0
        50px;
}


/* =========================================
   AI BADGE
========================================= */

.ai-badge {
    width: fit-content;

    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 9px 16px;

    border: 1px solid rgba(0, 229, 255, .22);

    border-radius: 100px;

    background: rgba(0, 229, 255, .05);

    color: #82f3ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    box-shadow:
        0 0 30px rgba(0, 229, 255, .08);
}

.pulse-dot,
.status span,
.result-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 10px var(--cyan);

    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(.65);
    }
}


/* =========================================
   HEADLINE
========================================= */

h1 {
    text-align: center;

    font-size: clamp(40px, 8vw, 78px);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -4px;

    margin-bottom: 20px;

    text-shadow:
        0 0 40px rgba(103, 80, 255, .2);
}

h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #a8b4ff,
            #ffffff
        );

    background-size: 200% auto;

    color: transparent;

    -webkit-background-clip: text;
    background-clip: text;

    animation: textShine 5s linear infinite;
}

h1 strong {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #00e5ff,
            #7c5cff,
            #b26cff,
            #00e5ff
        );

    background-size: 250% auto;

    -webkit-background-clip: text;
    background-clip: text;

    animation: textShine 4s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 250% center;
    }
}

.subtitle {
    text-align: center;

    font-size: clamp(20px, 4vw, 32px);

    font-weight: 800;

    letter-spacing: 7px;

    color: #ffffff;

    text-shadow:
        0 0 25px rgba(0, 229, 255, .4);

    margin-bottom: 15px;
}

.description {
    max-width: 580px;

    margin: auto;

    text-align: center;

    color: var(--muted);

    line-height: 1.7;

    font-size: 14px;
}


/* =========================================
   MAIN PANEL
========================================= */

.ai-panel {
    position: relative;

    margin-top: 45px;

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(17, 24, 49, .82),
            rgba(4, 8, 20, .78)
        );

    backdrop-filter: blur(25px);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, .45),
        inset 0 1px rgba(255, 255, 255, .05);

    overflow: hidden;
}

.ai-panel::before {
    content: "";

    position: absolute;

    top: 0;
    left: 10%;

    width: 80%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #00e5ff,
            #8b5cf6,
            transparent
        );

    box-shadow:
        0 0 20px #00e5ff;
}


/* =========================================
   PANEL TOP
========================================= */

.panel-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;
}

.small-label {
    display: block;

    color: #687493;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 6px;
}

.panel-top h2 {
    font-size: 19px;

    font-weight: 700;
}

.status {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border-radius: 100px;

    background: rgba(0, 229, 255, .06);

    border: 1px solid rgba(0, 229, 255, .15);

    color: #75efff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================
   CHART
========================================= */

.chart-area {
    position: relative;

    height: 280px;

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, .05);

    background:
        linear-gradient(
            rgba(72, 90, 160, .08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(72, 90, 160, .08) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.chart-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    left: 45%;
    top: 0;

    background: #4f46e5;

    opacity: .08;

    filter: blur(100px);

    border-radius: 50%;
}

.chart-svg {
    position: absolute;

    width: 100%;
    height: 100%;

    left: 0;
    top: 0;
}

.chart-line {
    fill: none;

    stroke: url(#lineGradient);

    stroke-width: 4;

    stroke-linecap: round;

    filter:
        drop-shadow(0 0 8px rgba(0, 229, 255, .8));

    stroke-dasharray: 1400;

    stroke-dashoffset: 1400;

    animation:
        drawChart 3s ease forwards;
}

.chart-fill {
    fill: url(#fillGradient);

    opacity: .6;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}


/* Scan effect */

.scan-line {
    position: absolute;

    top: 0;

    left: -10%;

    width: 2px;

    height: 100%;

    background: #00e5ff;

    box-shadow:
        0 0 20px #00e5ff,
        0 0 60px #00e5ff;

    opacity: .6;

    animation:
        scanning 4s linear infinite;
}

@keyframes scanning {

    0% {
        left: -5%;
    }

    100% {
        left: 105%;
    }
}


/* =========================================
   UNLOCK BUTTON
========================================= */

.unlock-btn {
    position: relative;

    width: 100%;

    margin-top: 25px;

    height: 70px;

    border: 1px solid rgba(0, 229, 255, .5);

    border-radius: 17px;

    cursor: pointer;

    color: #ffffff;

    font-family: inherit;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 4px;

    background:
        linear-gradient(
            100deg,
            #096cce,
            #6d36d8,
            #087ed0
        );

    background-size: 200% 100%;

    box-shadow:
        0 0 30px rgba(0, 174, 255, .25),
        inset 0 1px rgba(255, 255, 255, .25);

    transition:
        transform .2s,
        box-shadow .2s;

    animation:
        buttonGradient 4s linear infinite;
}

@keyframes buttonGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.unlock-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 50px rgba(0, 229, 255, .4),
        0 15px 35px rgba(0, 0, 0, .3);
}

.unlock-btn:active {
    transform: scale(.98);
}

.unlock-btn:disabled {
    cursor: wait;
}

.btn-icon {
    margin-right: 10px;

    color: #8ff8ff;

    text-shadow:
        0 0 15px #00e5ff;
}

.arrow {
    position: absolute;

    right: 25px;

    font-size: 24px;

    transition: transform .3s;
}

.unlock-btn:hover .arrow {
    transform: translateX(5px);
}


/* Processing animation */

.unlock-btn.processing {
    animation:
        buttonPulse .7s infinite alternate;
}

@keyframes buttonPulse {

    from {
        box-shadow:
            0 0 20px rgba(0, 229, 255, .25);
    }

    to {
        box-shadow:
            0 0 55px rgba(139, 92, 246, .7);
    }
}


/* =========================================
   LOADING
========================================= */

.loading-box {
    max-height: 0;

    opacity: 0;

    overflow: hidden;

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 0;

    transition:
        max-height .5s ease,
        opacity .5s ease,
        margin .5s ease;
}

.loading-box.show {
    max-height: 100px;

    opacity: 1;

    margin-top: 25px;

    padding: 15px;
}

.loader-ring {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    border:
        2px solid rgba(255, 255, 255, .08);

    border-top-color: #00e5ff;
    border-right-color: #8b5cf6;

    animation:
        spin .8s linear infinite;

    box-shadow:
        0 0 20px rgba(0, 229, 255, .25);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-title {
    display: block;

    color: #dbe5ff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.loading-text {
    color: #65718e;

    font-size: 12px;
}


/* =========================================
   RESULTS
========================================= */

.results {
    display: none;

    margin-top: 25px;

    animation:
        resultAppear .8s ease forwards;
}

.results.show {
    display: block;
}

@keyframes resultAppear {

    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.result-header {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #8af5ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* Numbers */

.numbers {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.number-card {
    position: relative;

    min-height: 150px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 17px;

    border: 1px solid rgba(128, 146, 220, .15);

    background:
        linear-gradient(
            145deg,
            rgba(34, 43, 76, .65),
            rgba(9, 13, 28, .7)
        );

    overflow: hidden;

    box-shadow:
        inset 0 1px rgba(255, 255, 255, .04);
}

.number-card::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 1px;

    top: 0;
    left: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #6978ff,
            transparent
        );
}

.number-card.featured {
    border-color:
        rgba(0, 229, 255, .3);

    box-shadow:
        0 0 35px rgba(0, 229, 255, .1),
        inset 0 1px rgba(255, 255, 255, .06);
}

.number-label {
    color: #65708d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.number {
    margin: 8px 0;

    font-size: 54px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;

    color: #ffffff;

    text-shadow:
        0 0 25px rgba(0, 229, 255, .45);
}

.number-card.featured .number {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #6defff
        );

    color: transparent;

    -webkit-background-clip: text;
    background-clip: text;
}

.mini-line {
    width: 45px;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #00e5ff,
            #8b5cf6
        );

    box-shadow:
        0 0 10px rgba(0, 229, 255, .7);
}

.demo-note {
    text-align: center;

    margin-top: 18px;

    color: #4e5973;

    font-size: 9px;

    letter-spacing: .5px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 30px;

    color: #454e67;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .container {
        width: min(100% - 20px, 1000px);

        padding-top: 45px;
    }

    h1 {
        letter-spacing: -2px;
    }

    .subtitle {
        font-size: 17px;

        letter-spacing: 4px;
    }

    .description {
        font-size: 12px;

        padding: 0 10px;
    }

    .ai-panel {
        padding: 15px;

        border-radius: 20px;

        margin-top: 30px;
    }

    .panel-top h2 {
        font-size: 16px;
    }

    .status {
        font-size: 8px;

        padding: 7px 9px;
    }

    .chart-area {
        height: 210px;
    }

    .unlock-btn {
        height: 62px;

        font-size: 15px;

        letter-spacing: 3px;
    }

    .numbers {
        gap: 8px;
    }

    .number-card {
        min-height: 120px;

        padding: 12px;
    }

    .number {
        font-size: 38px;
    }

    .number-label {
        font-size: 7px;

        letter-spacing: 1px;
    }

    footer {
        flex-wrap: wrap;
    }
}


@media (max-width: 400px) {

    .numbers {
        grid-template-columns: 1fr;
    }

    .number-card {
        min-height: 110px;
    }

    .number {
        font-size: 42px;
    }

    .chart-area {
        height: 180px;
    }

    .panel-top {
        align-items: flex-start;
    }

    .status {
        display: none;
    }
}
```
.date-range {
    margin-top: 8px;
    color: #7cefff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(0, 229, 255, .45);
}

.date-range span {
    margin: 0 7px;
    color: #8b5cf6;
    font-size: 14px;
}