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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.hero h1 {
    font-size: 3rem;
    color: #1C3A52;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 20px;
}

.deploy-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1C3A52;
    color: white;
    padding: 20px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(28, 58, 82, 0.3);
    transition: all 0.3s ease;
}

.deploy-button:hover {
    background: #2a4a62;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(28, 58, 82, 0.4);
}

.button-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.deploy-time {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #666;
}

.alternative-text {
    margin-top: 30px;
    font-size: 1rem;
    color: #666;
}

.alternative-text a {
    color: #1C3A52;
    text-decoration: underline;
}

/* What You Get Section */
.what-you-get {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    margin: 60px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.what-you-get h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1C3A52;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1C3A52;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 50px 20px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1C3A52;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #1C3A52;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    color: #1C3A52;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    font-size: 1rem;
}

/* What You Own Section */
.what-you-own {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    margin: 60px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.what-you-own h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1C3A52;
    margin-bottom: 40px;
}

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

.ownership-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.check-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ownership-item p {
    font-size: 1rem;
    color: #333;
}

/* Prerequisites Section */
.prerequisites {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.prerequisites h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1C3A52;
    margin-bottom: 40px;
}

.prereq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prereq-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.prereq-badge {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.prereq-badge.free {
    background: #d4edda;
    color: #155724;
}

.prereq-badge.optional {
    background: #fff3cd;
    color: #856404;
}

.prereq-item p {
    font-size: 1rem;
    color: #333;
}

/* Bottom CTA */
.bottom-cta {
    padding: 60px 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

footer a {
    color: #1C3A52;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.built-by {
    margin-top: 15px;
    font-style: italic;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .deploy-button {
        font-size: 1.2rem;
        padding: 16px 40px;
    }

    .what-you-get h2,
    .how-it-works h2,
    .what-you-own h2,
    .prerequisites h2 {
        font-size: 2rem;
    }

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

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