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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f0f1a;
    color: #ffffff;
}

/* NAV */
nav {
    padding: 20px 40px;
    background-color: #0f0f1a;
    border-bottom: 1px solid #1e1e3a;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #6c63ff;
}

/* HERO */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #6c63ff;
}

.subtitle {
    font-size: 18px;
    color: #a0a0b0;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* STATS */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: #6c63ff;
}

.stat p {
    font-size: 14px;
    color: #a0a0b0;
}

/* CTA BUTTON */
.cta-btn {
    display: inline-block;
    background-color: #6c63ff;
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background-color: #5548e0;
    transform: translateY(-2px);
}

/* HOW IT WORKS */
.how-it-works {
    padding: 80px 40px;
    text-align: center;
    background-color: #13132a;
}

.how-it-works h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    background-color: #1a1a35;
    border: 1px solid #2a2a50;
    border-radius: 12px;
    padding: 36px 28px;
    max-width: 220px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #6c63ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #a0a0b0;
    line-height: 1.6;
}