/* Base styles */
:root {
    --primary: #1a1a1a;
    --accent: #ffd700;
    --text: #333;
    --bg: #fff;
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

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

/* Typography */
h1, h2 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    color: white;
    padding: 6rem 0;
    text-align: center;
    will-change: transform;
}

.hero h1 {
    color: white;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Buttons */
.cta {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    touch-action: manipulation;
}

.cta:hover {
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 4rem 0;
}

.stats {
    list-style: none;
    margin: 2rem 0;
}

.stats li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Callout */
.callout {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.25rem;
    text-align: center;
}

/* Comparison Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: var(--primary);
    color: white;
}

/* Emphasis */
.emphasis {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin: 2rem 0;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
}