/* Search interstitial - full-screen branded overlay shown during the vehicle search.
   Loaded on the home page (where orderreport2.css is NOT present), so colours are literal, not vars. */

.mr-si {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(160deg, #2f49b3 0%, #1d2b66 100%);
    color: #ffffff;
    opacity: 0;
    transition: opacity .25s ease;
    -webkit-font-smoothing: antialiased;
}
.mr-si.is-active { display: flex; opacity: 1; }

.mr-si__inner { width: 100%; max-width: 460px; text-align: center; }

.mr-si__logo {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
}

.mr-si__title { font-size: 24px; font-weight: 800; margin: 0 0 10px; }

/* The entered rego/VIN, shown plate-style. Hidden by JS when no value was captured. */
.mr-si__query {
    display: inline-block;
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 6px 16px;
}

.mr-si__bar { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); overflow: hidden; margin-bottom: 22px; }
.mr-si__bar-fill { height: 100%; width: 0; background: #ffffff; border-radius: 999px; transition: width .45s cubic-bezier(.25, .1, .25, 1); }

/* Concise value message + the extra records we cover. These rows are spotlighted in turn purely
   for readability - a presentational highlight, NOT a per-step confirmation that a record is clear. */
.mr-si__valueintro { font-size: 15px; line-height: 1.5; opacity: .92; margin: 0 0 16px; }

.mr-si__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mr-si__feature {
    display: flex; align-items: center; gap: 14px;
    text-align: left;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: background .45s ease, border-color .45s ease, box-shadow .45s ease, transform .45s ease;
}
.mr-si__feature-ico {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    transition: background .45s ease, color .45s ease, box-shadow .45s ease;
}
.mr-si__feature-text { display: flex; flex-direction: column; line-height: 1.3; }
.mr-si__feature-name { font-size: 15.5px; font-weight: 700; letter-spacing: .01em; }
.mr-si__feature-desc { font-size: 13px; font-weight: 500; opacity: .68; margin-top: 2px; }

/* Spotlight - the highlighted row lifts and brightens; its icon inverts. Driven by JS cycling .is-on. */
.mr-si__feature.is-on {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 10px 28px rgba(13, 22, 64, 0.35);
    transform: translateY(-1px);
}
.mr-si__feature.is-on .mr-si__feature-ico {
    background: #ffffff;
    color: #1d2b66;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}
.mr-si__feature.is-on .mr-si__feature-desc { opacity: .85; }

@media (prefers-reduced-motion: reduce) {
    .mr-si__feature { transition: none; }
    .mr-si__feature-ico { transition: none; }
}

.mr-si__dots span { animation: mrSiBlink 1.4s infinite both; }
.mr-si__dots span:nth-child(2) { animation-delay: .2s; }
.mr-si__dots span:nth-child(3) { animation-delay: .4s; }
@keyframes mrSiBlink { 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } }
