body {
    margin: 0;
    background: var(--bg);
    color: #0f172a;
    line-height: 1.5;
    overflow-x: hidden;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:nth-child(even) {
    flex-direction: row-reverse;
    background: #f1f5f9;
}

.text {
    max-width: 640px;
    margin: 0 auto;
}

.text h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.text p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 10px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.hero-top h1 {
    font-size: 48px;
    text-align: center;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.hero-top h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 18px;
}

.hero-top p {
    text-align: center;
    font-size: 18px;
    color: #475569;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.5;
}

.api-mcp-details-section {
    max-width: 1200px;
    background: var(--card);
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin: 0 auto 40px;
    display: grid;
    gap: 18px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.api-mcp-details-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.limits-table-wrap {
    overflow-x: auto;
    margin-top: 12px;
}

.limits-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg);
    border-radius: 10px;
    overflow: hidden;
    min-width: 560px;
}

.limits-table th,
.limits-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 14px;
}

.limits-table th {
    color: #0f172a;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.08);
}

.limits-table td:first-child {
    color: #0f172a;
    font-weight: 500;
}

.limits-table td {
    color: var(--muted);
}

.limits-table tbody tr:last-child td {
    border-bottom: none;
}

.limits-footnote {
    text-align: left;
}

.micro-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    background: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.micro-benefits.visible {
    opacity: 1;
    transform: translateY(0);
}

.micro-benefit {
    text-align: center;
    max-width: 220px;
}

.micro-benefit h4 {
    margin: 10px 0 6px;
    color: #0f172a;
}

.micro-benefit p {
    color: var(--muted);
    font-size: 14px;
}

.muted-small {
    color: var(--muted);
    font-size: 14px;
}

.cta-section {
    border: none;
    border-radius: 10px;
    text-align: center;
    padding: 100px 20px;
    background: var(--card);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-section p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .hero-top h1 {
        font-size: 36px;
    }

    .section {
        flex-direction: column;
        padding: 60px 16px;
    }

    .text h2 {
        font-size: 26px;
    }
}
