﻿:root {
    --rmx-bg: #0f0f13;
    --rmx-card: #fff;
    --rmx-ink: #111827;
    --rmx-sub: #6b7280;
    --rmx-border: #e5e7eb;
    --rmx-pill: #EEF2FF;
    --rmx-brand: #4F46E5;
    --rmx-green: #10b981;
    --rmx-amber: #f59e0b;
    --rmx-red: #ef4444;
    --rmx-muted: #f8fafc;
    --rmx-shadow: 0 10px 24px rgba(2,6,23,.08);
    --rmx-radius: 16px;
}

.rmx-wrap {
    max-width: 1160px;
    margin: 40px auto 80px;
    padding: 0 24px;
    color: var(--rmx-ink)
}

.rmx-hero {
    background: linear-gradient(120deg,#6d5ce7 0%,#8b5cf6 35%,#4f46e5 100%);
    border-radius: var(--rmx-radius);
    padding: 28px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: center;
    gap: 24px;
    box-shadow: var(--rmx-shadow)
}

    .rmx-hero h1 {
        font-size: clamp(24px,3.4vw,36px);
        line-height: 1.15;
        margin: 0 0 8px
    }

.rmx-cta {
    display: flex;
    gap: 12px;
    justify-content: end;
    flex-wrap: wrap
}

.rmx-btn {
    appearance: none;
    border: 0;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s transform,.2s box-shadow;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,.12)
}

.rmx-btn--primary {
    background: #fff;
    color: var(--rmx-brand)
}

.rmx-btn--ghost {
    background: rgba(255,255,255,.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,.24)
}

.rmx-btn:hover {
    transform: translateY(-1px)
}

.rmx-kpis {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.rmx-kpi {
    background: var(--rmx-card);
    border: 1px solid var(--rmx-border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--rmx-shadow)
}

    .rmx-kpi small {
        color: var(--rmx-sub);
        font-weight: 600;
        letter-spacing: .4px
    }

    .rmx-kpi b {
        display: block;
        font-size: 28px;
        margin-top: 6px
    }

    .rmx-kpi .trend {
        font-size: 12px;
        margin-top: 6px
    }

.rmx-up {
    color: var(--rmx-green)
}

.rmx-down {
    color: var(--rmx-red)
}

.rmx-actions {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.rmx-card {
    background: var(--rmx-card);
    border: 1px solid var(--rmx-border);
    border-radius: var(--rmx-radius);
    padding: 18px;
    box-shadow: var(--rmx-shadow)
}

.rmx-action {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit
}

.rmx-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--rmx-pill);
    display: grid;
    place-items: center;
    flex: 0 0 44px
}

.rmx-action h3 {
    font-size: 16px;
    margin: 0
}

.rmx-action p {
    margin: 2px 0 0;
    color: var(--rmx-sub);
    font-size: 13px
}

.rmx-columns {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 0fr;
    gap: 16px
}

.rmx-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px
}

    .rmx-table th, .rmx-table td {
        padding: 12px 10px;
        border-bottom: 1px solid var(--rmx-border)
    }

    .rmx-table th {
        text-align: left;
        color: var(--rmx-sub);
        font-weight: 700;
        letter-spacing: .2px
    }

.rmx-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--rmx-pill);
    color: var(--rmx-brand);
    font-weight: 700;
    font-size: 12px
}

.rmx-badge--green {
    background: #ecfdf5;
    color: var(--rmx-green)
}

.rmx-badge--amber {
    background: #fffbeb;
    color: var(--rmx-amber)
}

.rmx-badge--red {
    background: #fef2f2;
    color: var(--rmx-red)
}

.rmx-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px
}

    .rmx-list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px
    }

    .rmx-list a {
        text-decoration: none;
        color: var(--rmx-brand);
        font-weight: 600
    }

.rmx-pilltag {
    background: var(--rmx-muted);
    color: var(--rmx-sub);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px
}

.rmx-empty {
    border: 1px dashed var(--rmx-border);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    color: var(--rmx-sub);
    background: #fff
}
/* Getting Started */
.rmx-steps {
    display: grid;
    gap: 10px
}

.rmx-step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px;
    border: 1px solid var(--rmx-border);
    border-radius: 12px;
    background: #fff
}

    .rmx-step .dot {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        border: 2px solid var(--rmx-brand);
        color: var(--rmx-brand);
        font-size: 12px;
        font-weight: 800;
        flex: 0 0 22px
    }

    .rmx-step.done {
        background: #f5f7ff;
        border-color: #dfe3ff
    }

        .rmx-step.done .dot {
            background: var(--rmx-brand);
            color: #fff
        }

    .rmx-step h5 {
        margin: 0 0 2px 0;
        font-size: 14px
    }

    .rmx-step p {
        margin: 0;
        color: var(--rmx-sub);
        font-size: 12px
    }

.rmx-progress {
    height: 8px;
    background: #eef2ff;
    border-radius: 999px;
    overflow: hidden;
    margin: 6px 0 12px
}

    .rmx-progress > span {
        display: block;
        height: 100%;
        background: var(--rmx-brand);
        width: 0%
    }

.rmx-step a {
    font-weight: 700
}

@media (max-width:980px) {
    .rmx-hero {
        grid-template-columns: 1fr
    }

    .rmx-cta {
        justify-content: start
    }

    .rmx-kpis, .rmx-actions {
        grid-template-columns: repeat(2,1fr)
    }

    .rmx-columns {
        grid-template-columns: 1fr
    }
}

@media (max-width:560px) {
    .rmx-kpis, .rmx-actions {
        grid-template-columns: 1fr
    }
}

.hero-white {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 36px 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.hero-white h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111827;
}

.hero-white p {
    margin: 0;
    color: #6B7280;
    font-size: 16px;
}

.hero-white-buttons {
    display: flex;
    gap: 12px;
}

.hero-white-btn {
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid #EEF2FF;
    transition: all .2s ease;
}

    .hero-white-btn.primary {
        background: #000000;
        color: #fff;
    }

        .hero-white-btn.primary:hover {
            background: #f9e8ff;
            border: 1px solid #000000;
            color: #000000;
        }

    .hero-white-btn.secondary {
        background: #EEF2FF;
        color: #4F46E5;
    }

        .hero-white-btn.secondary:hover {
            background: #f9e8ff;
            border: 1px solid #000000;
            color: #000000;
        }

