/* ===== Article Layout ===== */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.8;
}

.article-header {
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 2rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

.article-meta {
    color: var(--gray);
    font-size: 1rem;
}

/* ===== Article Content Typography ===== */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content strong {
    color: var(--dark);
    font-weight: 600;
}

/* ===== Special Boxes ===== */
.highlight-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #fdf2f8 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.waitlist-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.waitlist-section h2 {
    color: white !important;
    margin-top: 0;
}

.waitlist-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.submit-button {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.comparison-box {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.comparison-box h3 {
    margin-top: 0;
    color: var(--primary) !important;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

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

.comparison-list strong {
    color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-input {
        width: 100%;
    }
}