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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(to bottom, #ffa347, #ff6b00);
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
}

.brand {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #ffeb99 30%, #ffa347 70%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: #fff;
    color: #ff6b00;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Pitch Section */
.pitch {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    margin: 48px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pitch p {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    margin: 64px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step p {
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    margin: 48px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    text-align: center;
}

.benefit-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-list li {
    padding: 12px 0;
    font-size: 1.125rem;
    display: flex;
    align-items: flex-start;
}

.benefit-list li::before {
    content: "✓";
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: 64px 0 32px;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Footer */
footer {
    text-align: center;
    padding: 32px 0;
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 640px) {
    .brand {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .cta-button {
        width: 100%;
        padding: 16px 24px;
    }

    .pitch,
    .benefits {
        padding: 24px;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .container {
        padding: 64px 24px;
    }
}