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

body {
    min-height: 100vh;
    background: #000;
    color: #fff;
    font-family: system-ui, -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(180deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(180deg, #444 0%, #111 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.75rem;
}

.card p {
    color: #555;
    line-height: 1.6;
}

.card code {
    background: #1a1a1a;
    padding: 2px 8px;
    border-radius: 4px;
    color: #777;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #555;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn:hover {
    color: #999;
    border-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

