:root {
    --primary: #3b82f6;
    --secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --text-primary: #1f2937;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-soft: #f3f4f6;
    --border: #e5e7eb;
    --border-soft: #f3f4f6;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --weight-medium: 500;
    --weight-semibold: 600;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: var(--space-8) var(--space-4);
    text-align: center;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-8);
}

.app-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-3);
}

.tagline {
    font-size: var(--text-xl);
    opacity: 0.9;
}

.hero {
    text-align: center;
    padding: var(--space-8) var(--space-4);
    margin-bottom: var(--space-8);
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.hero p {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto var(--space-6);
}

.cta-button {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: var(--weight-semibold);
    font-size: var(--text-lg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.features {
    margin-bottom: var(--space-8);
}

.features h2 {
    text-align: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
    color: var(--text-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}

.feature-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.feature-card ul {
    list-style-type: none;
}

.feature-card li {
    margin-bottom: var(--space-2);
    padding-left: var(--space-4);
    position: relative;
}

.feature-card li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.tech-details {
    background: white;
    border-radius: var(--radius);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-8);
}

.tech-details h2 {
    text-align: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
    color: var(--text-secondary);
}

.tech-content p {
    font-size: var(--text-lg);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-6);
}

.tech-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.highlight {
    text-align: center;
    padding: var(--space-6);
    border-radius: var(--radius);
    background: var(--bg-soft);
}

.highlight h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
}

.getting-started {
    text-align: center;
    margin-bottom: var(--space-8);
}

.getting-started h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
    color: var(--text-secondary);
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-4);
}

.step-content h3 {
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
}

.documentation {
    margin-bottom: var(--space-8);
}

.documentation h2 {
    text-align: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
    color: var(--text-secondary);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
}

.doc-card {
    background: white;
    border-radius: var(--radius);
    padding: var(--space-5);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.doc-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    color: var(--primary);
}

footer {
    text-align: center;
    padding: var(--space-6) 0;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: var(--space-8);
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-6) var(--space-4);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-highlights {
        grid-template-columns: 1fr;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
    }
}