:root {
    --bg0: #070A0E;
    --bg1: #0B0F14;
    --text: #E8EEF6;
    --muted: #9AA7B7;
    --accent: #F2C14E;
    --accent2: #FFB000;
    --border: rgba(255, 255, 255, .10);
    --shadow: 0 18px 60px rgba(0, 0, 0, .55);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color: var(--text);
    background:
        radial-gradient(1200px 700px at 20% 15%, rgba(242, 193, 78, .15), transparent 60%),
        radial-gradient(900px 500px at 85% 25%, rgba(255, 176, 0, .12), transparent 55%),
        radial-gradient(800px 600px at 50% 85%, rgba(66, 133, 244, .08), transparent 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    overflow-x: hidden;
}

.wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 18px;
}

.shell {
    width: min(1100px, 100%);
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .35), transparent 55%),
        linear-gradient(135deg, rgba(15, 23, 34, .97), rgba(12, 19, 29, .97));
    box-shadow: 0 10px 26px rgba(242, 193, 78, .20);
    border: none;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.logo svg {
    width: 22px;
    height: 22px;
    fill: rgba(0, 0, 0, .7);
    position: relative;
    z-index: 1;
}

.logo img {
    width: 35px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.logo::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 210deg, transparent 0 75%, rgba(255, 255, 255, .22) 80%, transparent 95%);
    animation: sheen 6s linear infinite;
}

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

.brand h1 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.brand p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #20E3B2;
    box-shadow: 0 0 0 5px rgba(32, 227, 178, .12);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(32, 227, 178, .12);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(32, 227, 178, .06);
    }
}

.chip span {
    color: var(--muted);
    font-size: 12px;
}

.hero {
    padding: 24px 22px 22px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(600px 220px at 30% 0%, rgba(242, 193, 78, .14), transparent 60%),
        radial-gradient(520px 260px at 90% 10%, rgba(255, 176, 0, .10), transparent 55%);
    pointer-events: none;
}

.hero-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.hero h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 750;
}

.hero .sub {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    max-width: 70ch;
}

.hint {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.kbd {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .3);
    padding: 2px 8px;
    border-radius: 8px;
    color: var(--accent);
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.card {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(15, 23, 34, .97), rgba(12, 19, 29, .97));
    box-shadow: 0 16px 50px rgba(0, 0, 0, .45);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 193, 78, .35);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .6), 0 0 0 1px rgba(242, 193, 78, .12);
}

.card .bar {
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), transparent);
}

.card-inner {
    padding: 20px 20px 14px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(242, 193, 78, .08);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.icon svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
}

.card h3 {
    margin: 2px 0 6px;
    font-size: 16px;
    font-weight: 720;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(32, 227, 178, .08);
    border: 1px solid rgba(32, 227, 178, .18);
    color: #20E3B2;
    font-size: 11px;
    font-weight: 600;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #20E3B2;
}

.actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    appearance: none;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 650;
    font-size: 13px;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(242, 193, 78, .35);
}

.btn.primary {
    border-color: rgba(242, 193, 78, .38);
    background: linear-gradient(135deg, rgba(242, 193, 78, .18), rgba(255, 176, 0, .08));
}

.btn .k {
    font-size: 11px;
    color: rgba(232, 238, 246, .7);
    padding: 2px 7px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .3);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
    margin: 20px 0 16px;
}

.stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-val {
    font-size: 20px;
    font-weight: 750;
    color: var(--accent);
}

.stat-lbl {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
}

footer {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(154, 167, 183, .8);
    font-size: 12px;
    padding: 8px 4px;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media(max-width:760px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero-top {
        flex-direction: column;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hint {
        display: none;
    }

    .stats {
        gap: 16px;
    }
}