/* VELTRION SEO/PWA Phase 38C - visual blend override */
.vseo-pwa-strip {
    position: relative;
    max-width: 1360px;
    margin: 18px auto 28px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) auto;
    gap: 16px 24px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(231, 177, 82, 0.28);
    border-radius: 22px;
    background:
        radial-gradient(circle at 10% 0%, rgba(214, 135, 42, 0.15), transparent 34%),
        linear-gradient(135deg, rgba(27, 15, 11, 0.96), rgba(8, 7, 8, 0.94) 48%, rgba(30, 17, 11, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 226, 170, 0.08),
        0 20px 48px rgba(0, 0, 0, 0.34);
    color: #f6e6bd;
}

.vseo-pwa-strip::before {
    content: "";
    position: absolute;
    inset: 1px;
    pointer-events: none;
    border-radius: 21px;
    background: linear-gradient(90deg, rgba(244, 193, 93, 0.13), transparent 32%, rgba(175, 59, 31, 0.10));
    opacity: 0.82;
}

.vseo-pwa-strip__glow {
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 187, 85, 0.22), transparent 64%);
    filter: blur(6px);
    pointer-events: none;
}

.vseo-pwa-strip__body,
.vseo-pwa-strip__actions,
.vseo-pwa-strip__points {
    position: relative;
    z-index: 1;
}

.vseo-pwa-strip__eyebrow {
    margin: 0 0 7px;
    color: #e8b965;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.vseo-pwa-strip__title {
    margin: 0;
    color: #fff1cf;
    font-size: clamp(23px, 2.2vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.035em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.vseo-pwa-strip__desc {
    max-width: 850px;
    margin: 9px 0 0;
    color: rgba(245, 235, 214, 0.78);
    font-size: 14px;
    line-height: 1.65;
    word-break: keep-all;
}

.vseo-pwa-strip__actions {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    white-space: nowrap;
}

.vseo-pwa-strip__button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid rgba(238, 198, 111, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #f5dfad;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vseo-pwa-strip__button--primary {
    border-color: rgba(255, 223, 145, 0.84);
    background: linear-gradient(180deg, #ffe19a, #c87525 72%, #7f2f18);
    color: #241107;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.48),
        0 8px 24px rgba(201, 107, 31, 0.28);
}

.vseo-pwa-strip__points {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.vseo-pwa-strip__points > div {
    min-height: 64px;
    padding: 11px 13px;
    border: 1px solid rgba(226, 176, 89, 0.17);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.vseo-pwa-strip__points dt {
    margin: 0 0 4px;
    color: #ffe0a3;
    font-size: 13px;
    font-weight: 900;
}

.vseo-pwa-strip__points dd {
    margin: 0;
    color: rgba(236, 226, 207, 0.68);
    font-size: 12px;
    line-height: 1.48;
    word-break: keep-all;
}

/* Safety override for the previous Phase 38 blue-card visual, if it remains cached. */
.vweb-seo-pwa-landing,
.vweb-seo-pwa-hero,
.vweb-seo-pwa-panel,
.veltrion-seo-pwa-landing,
.veltrion-seo-pwa-hero {
    max-width: 1360px !important;
    margin-top: 18px !important;
    margin-bottom: 28px !important;
    border-color: rgba(231, 177, 82, 0.26) !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(214, 135, 42, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(27, 15, 11, 0.96), rgba(8, 7, 8, 0.94) 48%, rgba(30, 17, 11, 0.96)) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34) !important;
}

@media (max-width: 980px) {
    .vseo-pwa-strip {
        grid-template-columns: 1fr;
        margin: 14px 14px 22px;
        padding: 17px;
    }

    .vseo-pwa-strip__actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .vseo-pwa-strip__points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .vseo-pwa-strip__eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .vseo-pwa-strip__title {
        font-size: 25px;
    }

    .vseo-pwa-strip__desc {
        font-size: 13px;
    }
}