.error-recovery-banner {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    background: #fef2f2;
    border-bottom: 2px solid #ef4444;
    padding: 16px 20px;
    z-index: 99;
    font-size: 14px;
    color: #991b1b;
    text-align: center;
}
.error-recovery-banner.show { display: block; }
.error-recovery-banner a {
    color: #dc2626;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 8px;
}
.error-recovery-banner a:hover { color: #991b1b; }
main { max-width: 1200px; margin: 0 auto; padding: 32px 16px 24px; min-height: calc(100vh - 200px); }
.hero { text-align: center; padding: 2rem 0 1rem; margin-bottom: 2rem; }
.hero h1 { font-size: 2.25rem; font-weight: 800; margin-bottom: 1rem; color: #0f172a; letter-spacing: -0.5px; }
.hero p { font-size: 1rem; color: #64748b; max-width: 600px; margin: 0 auto 2rem; }
.actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.action-btn { display: inline-block; padding: 10px 28px; text-decoration: none; border-radius: 6px; font-weight: 600; font-size: 0.95rem; transition: all 0.2s; }
.action-btn.primary { background: #0a66c2; color: white; }
.action-btn.primary:hover { background: #0052a3; }
.action-btn.secondary { background: white; color: #0a66c2; border: 1.5px solid #0a66c2; }
.action-btn.secondary:hover { background: #f0f6ff; }
.action-btn.tertiary { background: #f1f5f9; color: #0a66c2; }
.action-btn.tertiary:hover { background: #e2e8f0; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
a.feature {
    background: white; border: 1px solid #e2e8f0; border-radius: 10px; padding: 1.5rem;
    text-decoration: none; color: inherit; display: block;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
a.feature:hover { border-color: #94a3b8; box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08); transform: none; }
a.feature:focus-visible { outline: 2px solid #0a66c2; outline-offset: 3px; }
.feature-icon { width: 40px; height: 40px; margin-bottom: 1rem; color: #0a66c2; }
.feature h3 { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem; color: #0f172a; }
a.feature:hover h3 { color: #0a66c2; }
.feature p { font-size: 0.9rem; color: #64748b; margin: 0; line-height: 1.5; }
.feature-cta { display: inline-block; margin-top: 0.85rem; font-size: 0.82rem; font-weight: 700; color: #0a66c2; }
