:root {
    --bg-1: #0b1021;
    --bg-2: #0c172e;
    --accent: #8ef3c5;
    --accent-2: #4cc3ff;
    --card: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #e7ecf4;
    --muted: #92a1ba;
    --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 20% 20%, #14213d, transparent 25%), radial-gradient(circle at 80% 0%, #10345e, transparent 30%), linear-gradient(135deg, var(--bg-1), var(--bg-2));
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.backdrop {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    filter: blur(60px);
    opacity: 0.8;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: float 12s ease-in-out infinite;
}
.orb-1 { width: 40vw; height: 40vw; background: #1de9b6; top: -10%; left: -10%; }
.orb-2 { width: 35vw; height: 35vw; background: #58b2ff; bottom: -5%; right: -5%; animation-delay: -4s; }
.orb-3 { width: 30vw; height: 30vw; background: #ff9f1c; top: 20%; right: 15%; opacity: 0.5; animation-delay: -2s; }

.grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.1;
}

.grain {
    position: absolute;
    inset: -100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
    opacity: 0.08;
    animation: grain 12s steps(10) infinite;
}

.shell {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 72px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.brand-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #7cf3c4, #4cc3ff);
    border-radius: 50%;
    box-shadow: 0 0 12px #4cc3ff;
}
.brand-name { font-weight: 600; letter-spacing: 0.02em; }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(142, 243, 197, 0.12);
    color: var(--accent);
    border: 1px solid rgba(142, 243, 197, 0.3);
    font-weight: 600;
    letter-spacing: 0.04em;
}
.status-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.hero-text h1 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

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

.chip {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.chip-label {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.card-title { font-weight: 600; letter-spacing: 0.01em; }
.card-meta { color: var(--muted); font-size: 13px; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.stat {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 110px;
}
.stat:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-1px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.label { color: var(--muted); font-size: 13px; margin-bottom: 6px; letter-spacing: 0.02em; }
.value { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; }
.value.online { color: var(--accent); text-shadow: 0 0 10px rgba(142, 243, 197, 0.4); }
.hint { color: var(--muted); margin-top: 6px; font-size: 12px; }

@keyframes float {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(14px, -12px); }
}
@keyframes grain {
    0% { transform: translate3d(0,0,0); }
    100% { transform: translate3d(-10%, -10%, 0); }
}

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

@media (max-width: 600px) {
    .shell { padding: 32px 16px 56px; }
    .stat-grid { grid-template-columns: 1fr; }
    .quick-stats { flex-direction: column; }
}
