/* ══════════════════════════════════════════════════════════════════════════
   AI Search Optimise — Front-end badge strip
   Not fixed — sits in the document flow at the bottom of the page.
══════════════════════════════════════════════════════════════════════════ */

.aiso-strip {
    width: 100%;
    background: #0f0f12;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 12px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #999;
    text-align: center;
}

.aiso-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.aiso-strip-icon {
    color: #6ee7b7;
    flex-shrink: 0;
}

.aiso-strip-text {
    color: #888;
}

.aiso-strip-link {
    color: #6ee7b7;
    text-decoration: none;
    margin-left: 4px;
    transition: color .15s;
}

.aiso-strip-link:hover {
    color: #a7f3d0;
    text-decoration: underline;
}

/* Respect dark/light site themes — the strip is always dark */
@media (prefers-color-scheme: light) {
    .aiso-strip {
        background: #0f0f12;
    }
}

@media (max-width: 480px) {
    .aiso-strip {
        padding: 10px 0;
        font-size: 11px;
    }
    .aiso-strip-inner {
        padding: 0 14px;
    }
}
