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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        radial-gradient(circle at top, #1e293b 0%, #0f172a 70%);
}

.badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto;
    color: #cbd5e1;
    font-size: 1.15rem;
}

.hero-buttons {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: #38bdf8;
    color: #0f172a;
}

.btn-secondary {
    border: 1px solid #334155;
    color: white;
}

.stats-section,
.apps-section {
    padding: 100px 0;
}

.stats-section h2,
.apps-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.stat-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 10px;
}

.label {
    color: #cbd5e1;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.app-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 20px;
    padding: 28px;
    transition: .25s ease;
}

.app-card:hover {
    transform: translateY(-6px);
    border-color: #38bdf8;
}

.app-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.app-card p {
    color: #cbd5e1;
}

footer {
    border-top: 1px solid #1f2937;
    padding: 40px 0;
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 768px) {

    .stats-section,
    .apps-section {
        padding: 70px 0;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stats-section h2,
    .apps-section h2 {
        font-size: 2rem;
    }
}
