/* AEO landing-page styles — shared by all root-level <slug>.html guide/comparison pages. */
.aeo-page { padding: 120px 0 80px; min-height: 100vh; min-height: 100dvh; }

.aeo__container { max-width: 780px; margin: 0 auto; }

.aeo__breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; font-size: 0.85rem; }
.aeo__breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.aeo__breadcrumb a:hover { color: var(--green); }
.aeo__breadcrumb span { color: var(--text-muted); }
.aeo__breadcrumb .breadcrumb-current { color: var(--text-secondary); }

.aeo__hero { margin-bottom: 32px; }
.aeo__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    margin-bottom: 14px;
}
.aeo__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.aeo__lead { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7; }
.aeo__lead p { margin: 0; }
.aeo__lead strong { color: var(--text-primary); }

/* Key-takeaway / BLUF box near the top */
.aeo__key {
    background: rgba(16, 212, 142, 0.06);
    border: 1px solid rgba(16, 212, 142, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 32px 0 40px;
}
.aeo__key-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    margin-bottom: 10px;
}
.aeo__key-q { font-family: var(--font-display); font-weight: 700; color: var(--text-primary); margin-bottom: 8px; font-size: 1.05rem; }
.aeo__key-a { color: var(--text-secondary); font-size: 0.98rem; line-height: 1.7; margin: 0; }

.aeo__body { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }
.aeo__body h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.25;
}
.aeo__body p { margin-bottom: 16px; }
.aeo__body ul, .aeo__body ol { margin-bottom: 16px; padding-left: 24px; }
.aeo__body li { margin-bottom: 8px; line-height: 1.7; }
.aeo__body li::marker { color: var(--green); }
.aeo__body strong { color: var(--text-primary); font-weight: 600; }
.aeo__body a { color: var(--green); text-decoration: none; }
.aeo__body a:hover { text-decoration: underline; }

/* Comparison tables */
.aeo__table-wrap { overflow-x: auto; margin: 8px 0 24px; -webkit-overflow-scrolling: touch; }
.aeo__table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 520px; }
.aeo__table caption { text-align: left; color: var(--text-muted); font-size: 0.8rem; margin-bottom: 10px; }
.aeo__table th, .aeo__table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.aeo__table thead th {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--border-light);
}
.aeo__table tbody td:first-child { color: var(--text-primary); font-weight: 600; }

/* FAQ — CSS-only <details> so answers live in raw HTML (LLM-crawlable) */
.aeo__faq { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.aeo__faq > h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.aeo__faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    transition: border-color var(--transition);
}
.aeo__faq-item[open] { border-color: var(--green); }
.aeo__faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 22px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.aeo__faq-item summary::-webkit-details-marker { display: none; }
.aeo__faq-item summary::after {
    content: '';
    width: 10px; height: 10px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.aeo__faq-item[open] summary::after { transform: rotate(-135deg); border-color: var(--green); }
.aeo__faq-item p { padding: 0 22px 20px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin: 0; }

.aeo__related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.aeo__related h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.aeo__related-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.aeo__related-list a { display: inline-flex; align-items: center; gap: 8px; color: var(--text-secondary); text-decoration: none; font-size: 0.95rem; transition: color var(--transition); }
.aeo__related-list a svg { color: var(--green); flex-shrink: 0; transition: transform var(--transition); }
.aeo__related-list a:hover { color: var(--green); }
.aeo__related-list a:hover svg { transform: translateX(3px); }

.aeo__further { margin-top: 24px; font-size: 0.9rem; color: var(--text-muted); }
.aeo__further a { color: var(--green); text-decoration: none; }
.aeo__further a:hover { text-decoration: underline; }

.aeo__cta-band {
    margin-top: 48px;
    padding: 40px 28px;
    text-align: center;
    background: rgba(16, 212, 142, 0.05);
    border: 1px solid rgba(16, 212, 142, 0.15);
    border-radius: var(--radius-lg);
}
.aeo__cta-band h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 20px; }

@media (max-width: 600px) {
    .aeo-page { padding: 100px 0 60px; }
}
