/* ============================================================================
   showcase.css — "La Bóveda Esmeralda" showpiece layer (v1, 2026-07-02)
   The over-the-top pass: Draw-Machine cinematic band, CTA constellation,
   featured-plan levitation. Additive on top of main/elevate/impact.
   Companion JS: /js/showcase.js. Band is FORCED DARK in both themes (like the
   photo bands); all motion respects prefers-reduced-motion.
   ========================================================================== */

/* ---- The Draw Machine band ---- */
.mch {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 9vw, 7.5rem) 0;
    background:
        radial-gradient(90% 120% at 78% 50%, rgba(24, 184, 129, .14), transparent 55%),
        radial-gradient(60% 80% at 20% 100%, rgba(244, 201, 91, .07), transparent 60%),
        #05100b;
}
.mch__wave {
    position: absolute;
    inset: -40px 0;
    background: url('/images/gen/wave-divider.jpg') center / cover no-repeat;
    opacity: .22;
    filter: saturate(.9);
    will-change: transform;
    pointer-events: none;
}
.mch__in {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.mch__kicker {
    display: inline-block;
    font: 700 11px/1 'Space Mono', monospace;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #0E1311;
    background: linear-gradient(120deg, #FFDD83, #F4C95B);
    border-radius: 999px;
    padding: .4rem .85rem;
    margin-bottom: 1.1rem;
}
.mch__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 600;
    line-height: 1.08;
    color: #EAF1ED;
    margin: 0 0 1rem;
}
.mch__body {
    color: rgba(234, 241, 237, .78);
    font-size: 1.06rem;
    line-height: 1.65;
    max-width: 54ch;
    margin: 0 0 1.6rem;
}
.mch__fig { position: relative; will-change: transform; }
.mch__fig img {
    display: block;
    width: min(430px, 86%);
    margin-inline: auto;
    border-radius: 26px;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, .55),
        0 0 110px rgba(24, 184, 129, .16),
        inset 0 1px 0 rgba(255, 255, 255, .06);
    animation: mchFloat 7s ease-in-out infinite alternate;
}
.mch__fig::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -26px;
    width: 62%;
    height: 60px;
    transform: translateX(-50%);
    background: radial-gradient(50% 100% at 50% 0%, rgba(244, 201, 91, .22), transparent 75%);
    filter: blur(6px);
    pointer-events: none;
}
@keyframes mchFloat {
    from { transform: translateY(-7px); }
    to   { transform: translateY(7px); }
}
@media (max-width: 900px) {
    .mch__in { grid-template-columns: 1fr; text-align: center; }
    .mch__fig { order: -1; }
    .mch__fig img { width: min(330px, 78%); }
    .mch__body { margin-inline: auto; }
}

/* ---- Final-CTA constellation (beneath impact.js's gold sparks) ---- */
.cta-constellation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .8;
}

/* ---- Featured plan levitation + gold aura breathing ---- */
.price-card--rec-live {
    animation: recFloat 6.5s ease-in-out infinite alternate;
}
@keyframes recFloat {
    from { transform: translateY(0); box-shadow: 0 10px 34px rgba(24, 184, 129, .16); }
    to   { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(24, 184, 129, .26), 0 0 34px rgba(244, 201, 91, .10); }
}

/* ---- Guard rail ---- */
@media (prefers-reduced-motion: reduce) {
    .mch__fig img { animation: none; }
    .price-card--rec-live { animation: none; }
    .cta-constellation { display: none; }
}
