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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #e8e0d4;
    color: #2c2c2c;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #2d5a27 0%, #1a3a15 40%, #0d1f0a 100%);
    color: #fff;
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.scroll-hint {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: rgba(255,255,255,0.3);
    animation: bounce 2s infinite;
}

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

/* Main */
.container {
    max-width: 780px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
}

.card h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a3a15;
}

.icon-header {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Intro */
.intro .lead {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.intro p {
    color: #666;
}

/* Stats */
.stat-box {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.stat {
    flex: 1;
    background: #f4f7f2;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a27;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

@media (max-width: 500px) {
    .stat-box {
        flex-direction: column;
    }
}

/* Facts */
.fact-list {
    list-style: none;
    margin-top: 1rem;
}

.fact-list li {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
}

.fact-list li:last-child {
    border-bottom: none;
}

/* Comparison */
.compared-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.compared {
    flex: 1;
    padding: 1.25rem;
    border-radius: 12px;
}

.compared.bad {
    background: #fdf2f2;
    border: 1px solid #f5d6d6;
}

.compared.good {
    background: #f0f7ec;
    border: 1px solid #c8e6b9;
}

.compared h4 {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.compared ul {
    list-style: none;
    font-size: 0.88rem;
    color: #555;
}

.compared li {
    padding: 0.25rem 0;
}

.compared li::before {
    content: "✗ ";
    color: #e74c3c;
}

.compared.good li::before {
    content: "✓ ";
    color: #27ae60;
}

.vs {
    font-weight: 700;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 600px) {
    .compared-box {
        flex-direction: column;
    }
    .vs {
        order: -1;
    }
}

/* Blockquote */
blockquote {
    background: #f4f7f2;
    border-left: 4px solid #2d5a27;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #444;
    font-size: 1.05rem;
}

/* CTA Grid */
.alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
}

.alt-card {
    background: #f4f7f2;
    border-radius: 12px;
    padding: 1.25rem;
    transition: transform 0.15s, box-shadow 0.15s;
}

.alt-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.alt-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.alt-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #1a3a15;
}

.alt-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 550px) {
    .alt-grid {
        grid-template-columns: 1fr;
    }
}

/* Sources */
.sources {
    list-style: none;
}

.sources li {
    padding: 0.4rem 0;
}

.sources a {
    color: #2d5a27;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 0.95rem;
}

.sources a:hover {
    color: #1a3a15;
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    padding-top: 1rem;
}

/* Print */
@media print {
    .hero {
        padding: 1.5rem;
        min-height: auto;
    }
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    .hero-overlay { display: none; }
}