:root {
    --mx-ink: #071217;
    --mx-ink-soft: #102632;
    --mx-cyan: #41e6d7;
    --mx-lime: #d6ff5b;
    --mx-sun: #ff9d3d;
    --mx-paper: #f5fbff;
    --mx-muted: #a3bfcd;
    --mx-border: rgba(161, 245, 235, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--mx-paper);
    background: radial-gradient(circle at 15% 15%, #14445f 0%, #071217 45%, #041015 100%);
    overflow-x: hidden;
}

.mx-stage {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mx-noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 0.7px, transparent 0.7px);
    background-size: 4px 4px;
    opacity: 0.16;
    pointer-events: none;
}

.mx-wrap {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
    padding: 32px 18px;
}

.mx-panel {
    width: min(960px, 100%);
    border-radius: 30px;
    padding: 34px;
    background: linear-gradient(140deg, rgba(6, 26, 37, 0.78), rgba(6, 18, 28, 0.84));
    border: 1px solid var(--mx-border);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(9px);
}

.mx-badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(214, 255, 91, 0.35);
    color: var(--mx-lime);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(214, 255, 91, 0.08);
}

.mx-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
}

.mx-title {
    margin-top: 16px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.mx-title span {
    color: var(--mx-cyan);
}

.mx-copy {
    margin-top: 14px;
    color: var(--mx-muted);
    max-width: 62ch;
    line-height: 1.68;
    font-size: clamp(0.95rem, 2.7vw, 1.08rem);
}

.mx-subcopy {
    margin-top: 8px;
    color: #c3d8e4;
    font-size: 0.96rem;
}

.mx-progress {
    margin-top: 28px;
}

.mx-progress-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #d1ecf6;
}

.mx-progress-track {
    height: 11px;
    width: 100%;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    overflow: hidden;
}

.mx-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mx-cyan), var(--mx-sun));
    box-shadow: 0 0 20px rgba(65, 230, 215, 0.5);
}

.mx-meta {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mx-meta-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px;
}

.mx-meta-label {
    color: #8fb3c3;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mx-meta-value {
    margin-top: 6px;
    color: #ebf8ff;
    font-weight: 600;
    font-size: 1.03rem;
}

.mx-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.mx-kicker {
    background: linear-gradient(155deg, rgba(65, 230, 215, 0.16), rgba(255, 157, 61, 0.12));
    border: 1px solid rgba(65, 230, 215, 0.28);
    border-radius: 22px;
    padding: 18px;
}

.mx-kicker h3 {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mx-cyan);
    font-weight: 700;
}

.mx-kicker p {
    margin-top: 9px;
    color: #d8e8f1;
    line-height: 1.55;
}

.mx-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    gap: 8px;
    width: 100%;
    text-decoration: none;
    color: #081921;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 16px;
    background: linear-gradient(120deg, var(--mx-lime), #f4ffbf);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mx-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214, 255, 91, 0.25);
}

.mx-pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--mx-lime);
    box-shadow: 0 0 0 rgba(214, 255, 91, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(214, 255, 91, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(214, 255, 91, 0); }
    100% { box-shadow: 0 0 0 0 rgba(214, 255, 91, 0); }
}

.mx-footer {
    margin-top: 20px;
    text-align: center;
    color: #89a8b8;
    font-size: 0.86rem;
}

@media (max-width: 920px) {
    .mx-grid {
        grid-template-columns: 1fr;
    }

    .mx-panel {
        border-radius: 24px;
        padding: 24px;
    }
}

@media (max-width: 540px) {
    .mx-title {
        font-size: 1.8rem;
    }

    .mx-meta {
        grid-template-columns: 1fr;
    }
}
