:root {
    --bg: #070a0f;
    --panel: rgba(255,255,255,.055);
    --border: rgba(255,255,255,.09);
    --text: #f8fafc;
    --muted: #94a3b8;
    --green: #2ecc71;
    --blue: #38bdf8;
    --yellow: #facc15;
    --purple: #a78bfa;
    --red: #fb7185;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(46,204,113,.20), transparent 26%),
        radial-gradient(circle at 85% 20%, rgba(56,189,248,.14), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(167,139,250,.12), transparent 30%),
        var(--bg);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent);
    pointer-events: none;
}

.container {
    width: min(1160px, calc(100% - 36px));
    margin: auto;
    padding: 34px 0 48px;
    position: relative;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--green), #9cffbd);
    color: #07100b;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 0 35px rgba(46,204,113,.35);
}

.logo strong {
    display: block;
    font-size: 18px;
}

.logo span {
    color: var(--muted);
    font-size: 13px;
}

.nav-pill {
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(46,204,113,.10);
    color: var(--green);
    border: 1px solid rgba(46,204,113,.28);
    font-size: 13px;
}

.hero {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 38px;
    align-items: center;
    margin-bottom: 58px;
}

.kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--green);
    font-size: 13px;
    margin-bottom: 16px;
}

.kicker i {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: .95;
    letter-spacing: -3px;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--green), var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 650px;
    margin: 22px 0 0;
}

.live-panel {
    position: relative;
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.live-panel::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(46,204,113,.22);
    filter: blur(20px);
}

.live-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.075);
    position: relative;
    z-index: 2;
}

.live-row:last-child {
    border-bottom: 0;
}

.live-row small {
    color: var(--muted);
}

.live-row strong {
    font-size: 26px;
}

.live-row i {
    color: var(--green);
    margin-right: 9px;
}

.projects {
    display: grid;
    gap: 18px;
}

.project {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(90deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

.project::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(46,204,113,.08), transparent);
    transform: translateX(-100%);
    transition: .6s;
}

.project:hover::before {
    transform: translateX(100%);
}

.project:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(46,204,113,.35);
}

.project-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 25px;
    background: rgba(46,204,113,.13);
    color: var(--green);
    box-shadow: inset 0 0 0 1px rgba(46,204,113,.18);
}

.project:nth-child(2) .project-icon {
    background: rgba(250,204,21,.13);
    color: var(--yellow);
    box-shadow: inset 0 0 0 1px rgba(250,204,21,.20);
}

.project:nth-child(3) .project-icon {
    background: rgba(56,189,248,.13);
    color: var(--blue);
    box-shadow: inset 0 0 0 1px rgba(56,189,248,.20);
}

.project h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.project p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.project-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.click-count {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.click-count strong {
    color: var(--text);
    display: block;
    font-size: 18px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 10px;
}

.status-active {
    color: var(--green);
    background: rgba(46,204,113,.12);
    border: 1px solid rgba(46,204,113,.25);
}

.status-active::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 rgba(46,204,113,.65);
    animation: activePulse 1.5s infinite;
}

.status-build {
    color: var(--yellow);
    background: rgba(250,204,21,.12);
    border: 1px solid rgba(250,204,21,.25);
}

.status-build::before {
    content: "\f013";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    animation: gear 2.2s linear infinite;
}

@keyframes activePulse {
    70% { box-shadow: 0 0 0 9px rgba(46,204,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

@keyframes gear {
    to { transform: rotate(360deg); }
}

.btn {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #061008;
    text-decoration: none;
    font-weight: 900;
    transition: .2s;
}

.btn:hover {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 0 24px rgba(46,204,113,.35);
}

.footer {
    margin-top: 44px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

.logo {
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-text {
    font-weight:800;
    font-size:20px;
    letter-spacing:1px;
}

.logo-text span {
    color:#2ecc71;
}

.logo-sub strong {
    display:block;
    font-size:14px;
}

.logo-sub small {
    color:#8b949e;
    font-size:12px;
}

@media(max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .project {
        grid-template-columns: 60px 1fr;
    }

    .project-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
    }
}

@media(max-width: 560px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .project {
        padding: 18px;
        gap: 15px;
    }

    .project-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }
}