:root {
    --bg: #0a0a0a;
    --fg: #e2e8f0;
    --accent: #fff;
    --surface: #1e1e1e;
    --surface-light: #2d2d2d;
    --font: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--font);
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* Keeping the subtle grid background user liked */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.main-wrapper {
    width: 100%;
    max-width: 400px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header */
.brand-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%; /* Making it circular */
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3); /* Soft blue glow matching image */
}

.status-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}

h1 {
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.light {
    color: #94a3b8;
    font-weight: 300;
}

/* Stats */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    border: 1px solid rgba(255,255,255,0.03);
}

.featured {
    padding: 1.5rem 1rem;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-light) 100%);
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
}

.featured .value {
    font-size: 2.5rem;
    font-weight: 200; /* Super light/thin as requested */
    letter-spacing: -2px;
}

.label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 300;
}

.check {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
}

/* Action */
.action-area {
    margin-top: 0;
    text-align: center;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.sub-text {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 380px) {
    .main-wrapper {
        padding: 1.5rem;
    }
}
