/* ============================================================
   BANANA ALBUM - CRO STYLES
   ============================================================ */
:root {
    --bg-dark: #141118;
    --bg-card: #1c1823;
    --bg-card-hover: #251e30;
    --border-color: rgba(255, 255, 255, 0.08);
    --neon-green: #c4ff00;
    --neon-green-glow: rgba(196, 255, 0, 0.3);
    --neon-purple: #8b3dff;
    --neon-purple-glow: rgba(139, 61, 255, 0.4);
    --neon-pink: #ff0055;
    --neon-yellow: #ffcc00;
    --neon-red: #ff3b30;
    --text-main: #ffffff;
    --text-muted: #9aa0aa;
    --font-head: 'Rubik', sans-serif;
    --font-body: 'Lexend', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    background: #09050d;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 61, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 85, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% -10%, #1c0f2b 0%, #09050d 60%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    scroll-behavior: smooth;
    min-height: 100vh;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(20, 15, 28, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: visible;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.5) 0%, transparent 50%, rgba(255, 0, 85, 0.5) 100%);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

/* Texture/Noise */
.bg-noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 0;
    opacity: 0.6; /* Effective ~0.03 opacity */
}

.cro-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 40px;
    margin: 0 auto;
}

/* ============================================================
   SPLIT LAYOUT HERO
   ============================================================ */
.hero-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 100px);
    position: relative;
    z-index: 10;
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.hero-right-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-btn-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
    width: 100%;
}

@media (max-width: 960px) {
    .hero-split-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 80px;
    }
    
    .hero-left-column, .hero-text-section, .hero-btn-container {
        align-items: center;
        text-align: center;
    }
}

/* ============================================================
   TEXT & CONVERSION SIDE
   ============================================================ */
.conversion-side {
    position: relative;
    z-index: 10;
}

.exclusivity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-pink);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.5; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.2); }
}

.main-headline {
    font-family: var(--font-head);
    font-size: 4.2rem;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: white;
    margin: 0 0 16px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.sub-headline {
    font-family: var(--font-head);
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5); /* Subtle grey instead of neon */
}

.text-neon {
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green-glow);
}

.text-pink {
    color: var(--neon-pink);
}

.text-purple {
    color: var(--neon-purple);
}

.rebel-copy {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.rebel-copy strong {
    color: var(--text-main);
    font-weight: 800;
}

/* Form & CTA */
.cta-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.conversion-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega-input {
    width: 100%;
    padding: 20px 24px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    background: #1a1622;
    border: 2px solid #2a2436;
    color: white;
    border-radius: 12px;
    transition: all 0.2s;
    outline: none;
}

.mega-input:focus {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 15px var(--neon-yellow-glow);
}

.mega-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-size: 1.25rem;
    font-family: var(--font-head);
    font-style: italic;
    font-weight: 900;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    margin-top: 10px;
    text-align: center;
    overflow: hidden;
}

.btn-primary-purple {
    background: linear-gradient(to bottom, #b478ff 0%, #8b3dff 100%);
    color: #ffffff;
    box-shadow: 
        0 6px 0 #5f1bbf, 
        0 15px 20px rgba(139, 61, 255, 0.4), 
        inset 0 2px 0 rgba(255,255,255,0.4);
}

.btn-primary-purple:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 0 #5f1bbf, 
        0 20px 25px rgba(139, 61, 255, 0.5), 
        inset 0 2px 0 rgba(255,255,255,0.5);
    background: linear-gradient(to bottom, #c292ff 0%, #994fff 100%);
}

.btn-primary-purple:active {
    transform: translateY(6px);
    box-shadow: 
        0 0 0 #5f1bbf, 
        0 2px 5px rgba(139, 61, 255, 0.4), 
        inset 0 2px 0 rgba(255,255,255,0.2);
}

.btn-outline-green {
    background: rgba(196, 255, 0, 0.05);
    color: var(--neon-green);
    border: 2px solid rgba(196, 255, 0, 0.3);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 0 20px rgba(196, 255, 0, 0.05);
}

.btn-outline-green:hover {
    border-color: var(--neon-green);
    background: rgba(196, 255, 0, 0.1);
    box-shadow: 0 0 25px rgba(196, 255, 0, 0.15);
    transform: translateY(-2px);
}

.micro-trust {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7); /* text-white/70 for better contrast */
    text-align: center;
    margin-top: 12px;
}

/* Shimmer effect on button */
.btn-glint {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.urgency-warning {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #ffb4ab;
    text-align: center;
    font-weight: 600;
}

/* ============================================================
   DOPAMINE VISUAL SIDE
   ============================================================ */
.visual-side {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.dopamine-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes idleShake {
    0%, 90% { transform: translateY(0) translateZ(50px) rotate(0deg); }
    92% { transform: translateY(0) translateZ(50px) rotate(4deg); }
    94% { transform: translateY(0) translateZ(50px) rotate(-4deg); }
    96% { transform: translateY(0) translateZ(50px) rotate(4deg); }
    98% { transform: translateY(0) translateZ(50px) rotate(-4deg); }
    100% { transform: translateY(0) translateZ(50px) rotate(0deg); }
}

.mystery-pack-wrapper {
    position: relative;
    width: 280px;
    height: 400px;
    transform-style: preserve-3d;
    animation: idleShake 5s ease-in-out infinite;
    z-index: 5;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mystery-pack-wrapper.glow-active {
    transform: scale(1.05) translateZ(80px);
    animation: none; /* Stop shaking when glowing/hovering */
}

.mystery-pack-wrapper.glow-active .super-glow {
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 150, 0.8), transparent 75%) !important;
    opacity: 1 !important;
    transform: scale(1.2);
    border-radius: 50%;
}

.scene {
    perspective: 1000px;
    width: 280px;
    height: 400px; /* Usually packs are taller */
    position: relative;
    z-index: 5;
}

.pack-spinner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: spinY 8s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.pack-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 20px 40px rgba(196, 255, 0, 0.4));
}

.pack-face img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.1); /* slightly larger for impact */
    animation: floatPack 4s ease-in-out infinite;
}

.pack-back {
    transform: rotateY(180deg);
}

@keyframes floatPack {
    0%, 100% { transform: scale(1.1) translateY(0); }
    50% { transform: scale(1.1) translateY(-15px); }
}

@keyframes spinY {
    0%, 35% { transform: rotateY(0deg); }
    40%, 85% { transform: rotateY(180deg); }
    90%, 100% { transform: rotateY(360deg); }
}

@keyframes holo-sweep {
    0% { transform: translateY(-100%) rotate(45deg); }
    100% { transform: translateY(100%) rotate(45deg); }
}

.pack-icon {
    font-size: 6rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(195, 244, 0, 0.6));
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pack-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--neon-yellow);
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--neon-yellow-glow);
    text-align: center;
    line-height: 1.1;
}

.pack-subtitle {
    font-size: 0.9rem;
    color: var(--text-main);
    letter-spacing: 2px;
    margin-top: 8px;
    opacity: 0.8;
}

.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent 60%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border-radius: 16px;
}

.super-glow {
    background: radial-gradient(circle at 50% 50%, rgba(195,244,0,0.4), transparent 70%);
    opacity: 1;
    mix-blend-mode: overlay;
}

.floating-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-yellow);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    z-index: 20;
    box-shadow: 0 4px 15px var(--neon-yellow-glow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.bg-tease-cards {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    z-index: 1; /* Behind the wrapper (z-index 5) */
    pointer-events: none;
}

.tease-card {
    position: absolute;
    width: 220px; height: 320px;
    background: linear-gradient(135deg, var(--neon-yellow-glow), rgba(255, 0, 85, 0.4));
    border-radius: 12px;
    filter: blur(20px);
    opacity: 0.5;
    animation: floatTease 8s ease-in-out infinite alternate;
}

.tease-card-1 {
    top: -20px; left: -60px;
    transform: rotate(-15deg);
}

.tease-card-2 {
    bottom: -20px; right: -60px;
    transform: rotate(25deg);
    animation-delay: -4s;
}

@keyframes floatTease {
    0% { transform: translateY(0) rotate(-15deg); }
    100% { transform: translateY(-20px) rotate(-10deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .main-headline { font-size: 3.5rem; }
    .mystery-pack-wrapper { width: 240px; height: 350px; }
}

@media (max-width: 900px) {
    .cro-hero { height: auto; padding: 60px 0; }
    .exclusivity-badge { margin: 0 auto 24px; }
    .rebel-copy { margin: 0 auto 40px; }
    .cta-box { margin: 0 auto; }
    .visual-side { height: 450px; margin-top: 40px; }
}

@media (max-width: 500px) {
    .main-headline { font-size: 2.5rem; }
    .mystery-pack-wrapper { width: 200px; height: 300px; }
    .visual-side { height: 350px; }
}

/* ============================================================
   OTP MODAL
   ============================================================ */
.hidden { display: none !important; }

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 12, 19, 0.85);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-dark);
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(195, 244, 0, 0.1);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--text-main); }

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--neon-yellow);
    margin-bottom: 12px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phone-input-group {
    display: flex;
    gap: 12px;
}

.country-code {
    width: 110px;
    background: #1a1622;
    border: 2px solid #2a2436;
    color: white;
    border-radius: 12px;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    cursor: pointer;
}

.phone-input-group input[type="tel"] {
    flex: 1;
    background: #1a1622;
    border: 2px solid #2a2436;
    color: white;
    border-radius: 12px;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.2s;
}

.phone-input-group input[type="tel"]:focus {
    border-color: var(--neon-yellow);
}

.modal-btn {
    padding: 20px;
    font-size: 1.1rem;
}

/* OTP Digits */
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.otp-digit {
    width: 60px;
    height: 70px;
    background: #1a1622;
    border: 2px solid #2a2436;
    border-radius: 12px;
    color: white;
    font-size: 2rem;
    font-family: var(--font-head);
    font-weight: bold;
    text-align: center;
    outline: none;
    transition: all 0.2s;
}

.otp-digit:focus {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 15px var(--neon-yellow-glow);
    transform: translateY(-2px);
}

.text-link {
    color: var(--neon-yellow);
    text-decoration: underline;
}

.text-link:hover {
    color: var(--text-main);
}

.disabled-link {
    color: var(--text-muted) !important;
    pointer-events: none;
    text-decoration: none;
    opacity: 0.6;
}

/* ============================================================
   PRODUCT SHOWCASE (BELOW THE FOLD)
   ============================================================ */
.product-showcase {
    padding: 60px 0 70px;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, #0d0a12 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.season-countdown-pill {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 255, 0, 0.3);
    border-radius: 9999px;
    padding: 10px 24px;
    margin: 0 auto 50px;
    box-shadow: 0 0 20px rgba(196, 255, 0, 0.1);
    width: fit-content;
}

.countdown-label {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 15px;
}

.flame-icon {
    width: 16px;
    height: 16px;
    stroke: var(--neon-pink);
    margin-right: 8px;
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 5px var(--neon-pink)); }
    50% { opacity: 0.8; transform: scale(0.95); filter: drop-shadow(0 0 2px var(--neon-pink)); }
}

.countdown-timer {
    font-family: monospace;
    font-variant-numeric: tabular-nums;
    color: var(--neon-yellow);
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(196, 255, 0, 0.5);
}

.countdown-timer .secs {
    animation: pulseSecs 1s steps(1) infinite;
}

@keyframes pulseSecs {
    50% { opacity: 0.7; }
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.8),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    padding-bottom: 20px;
    transform-style: preserve-3d;
    will-change: transform;
}

.aura-mitica {
    border-color: rgba(255, 0, 85, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.15), inset 0 0 20px rgba(255, 0, 85, 0.05);
}
.aura-mitica:hover {
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.3), inset 0 0 30px rgba(255, 0, 85, 0.1);
    border-color: var(--neon-pink);
    transform: perspective(800px) rotateX(4deg) rotateY(-6deg) translateY(-14px) scale(1.03);
}

.aura-estrella {
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.15), inset 0 0 20px rgba(255, 204, 0, 0.05);
}
.aura-estrella:hover {
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.3), inset 0 0 30px rgba(255, 204, 0, 0.1);
    border-color: var(--neon-yellow);
    transform: perspective(800px) rotateX(4deg) rotateY(-6deg) translateY(-14px) scale(1.03);
}

.aura-epica {
    border-color: rgba(196, 255, 0, 0.3);
    box-shadow: 0 0 30px rgba(196, 255, 0, 0.15), inset 0 0 20px rgba(196, 255, 0, 0.05);
}
.aura-epica:hover {
    box-shadow: 0 0 40px rgba(196, 255, 0, 0.3), inset 0 0 30px rgba(196, 255, 0, 0.1);
    border-color: var(--neon-green);
    transform: perspective(800px) rotateX(4deg) rotateY(-6deg) translateY(-14px) scale(1.03);
}

.card-image-wrapper {
    width: 100%;
    overflow: hidden;
    background: #0a0a10;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.showcase-card:hover img {
    transform: scale(1.05);
}

.card-details {
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #0f0e14;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.card-badge {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    align-self: center;
    letter-spacing: 0.5px;
}

.badge-mitica { background: #ff0055; color: #fff; }
.badge-estrella { background: #ffa500; color: #fff; }
.badge-epica { background: #00ffc8; color: #000; }

.card-lore {
    color: #ddd;
    font-size: 0.95rem;
    font-weight: bold;
    font-style: italic;
    margin: 0;
}

/* Hero eyebrow label */
.hero-eyebrow {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--neon-yellow);
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.9;
}

/* Sub-headline — descriptive, not a riddle */
.sub-headline {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    max-width: 540px !important;
    color: #ccc !important;
    text-shadow: none !important;
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
}

/* 3-pillar benefit strip */
.benefit-strip {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 540px;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.3;
}

.benefit-item small {
    display: block;
    color: #999;
    font-size: 0.75rem;
    margin-top: 2px;
}

.benefit-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.08);
    margin: 0 12px;
    flex-shrink: 0;
}

.showcase-cta-block {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.showcase-micro-copy {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
}

.scarcity-text {
    color: var(--neon-yellow);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(196,255,0,0.4);
}

.showcase-cta-btn {
    min-width: 340px;
}

/* ============================================================
   PRICING TIERS
   ============================================================ */
.pricing-section {
    padding: 70px 0 90px;
    background: transparent;
}

.text-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.featured-tier {
    transform: scale(1.05);
    border: 2px solid var(--neon-purple);
    background: var(--bg-card);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(139, 61, 255, 0.15), inset 0 0 20px rgba(139, 61, 255, 0.05);
    z-index: 2;
}

.featured-tier:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.8), 0 0 40px rgba(139, 61, 255, 0.25);
    border-color: #b478ff;
}

.ultra-tier {
    border: 2px solid var(--neon-yellow);
    background: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255, 204, 0, 0.1);
}

.ultra-tier:hover {
    border-color: #ffe066;
    box-shadow: 0 20px 50px rgba(255, 204, 0, 0.2);
}

.tier-name {
    font-family: var(--font-head);
    font-size: 1.2rem; 
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tier-price {
    font-family: var(--font-head);
    font-size: 3.5rem; 
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.cents { font-size: 1.5rem; vertical-align: top; }
.period { font-size: 1rem; color: var(--text-muted); font-weight: normal; }

.tier-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.tier-features li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.tier-features strong {
    color: white;
}

.tier-btn {
    padding: 16px;
    font-size: 1.1rem;
}

.urgency-banner {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a0812;
    border: 1px solid var(--neon-pink);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(255,0,85,0.3);
}

.inventory-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Glassmorphism Mask for Ultra Tier */
.glass-price-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.glass-mask {
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    background: rgba(21, 18, 24, 0.6);
    backdrop-filter: blur(8px);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 85, 0.2);
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.glass-mask span {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ultra-tier:hover .glass-mask {
    opacity: 0;
    pointer-events: none;
}

/* Metallic Button Animation */
.metallic-btn {
    background: linear-gradient(135deg, #2a2436 0%, #1a1622 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.metallic-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: metallicShine 4s infinite;
}

.neutral-btn {
    background: #2a2436;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.neutral-btn:hover {
    background: #362e45;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

@keyframes metallicShine {
    0% { left: -150%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* ============================================================
   LIVE TICKER (SOCIAL PROOF)
   ============================================================ */
.live-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 8, 12, 0.85);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    z-index: 100;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: tickerScroll 20s linear infinite;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
}

.ticker-item {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ticker-dot {
    margin: 0 20px;
    color: rgba(255, 255, 255, 0.2);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls half of the track since it's duplicated */
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: 60px 0 80px;
    background: transparent;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    align-items: center;
    perspective: 1500px;
}

.step-card-wrapper {
    transition: transform 0.5s ease;
    transform: rotateX(15deg) rotateY(10deg);
}

.step-card-wrapper:hover {
    transform: rotateX(0) rotateY(0) translateZ(40px);
}

.circuit-line {
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
}

.circuit-glow {
    position: absolute;
    top: 0;
    left: -20%;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--neon-yellow), transparent);
    animation: flowCircuit 3s linear infinite;
    box-shadow: 0 0 15px var(--neon-yellow);
}

@keyframes flowCircuit {
    0% { left: -20%; }
    100% { left: 100%; }
}

.step-card {
    position: relative;
    z-index: 1;
    background: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-yellow);
    box-shadow: 0 10px 30px rgba(196, 255, 0, 0.15);
}

.step-card.card-danger:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.15);
}

.step-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.icon-green {
    filter: drop-shadow(0 0 15px rgba(196, 255, 0, 0.5));
    color: var(--neon-yellow);
}

.icon-danger {
    filter: drop-shadow(0 0 15px rgba(255, 0, 85, 0.5));
    color: var(--neon-pink);
}

.step-card:hover .icon-green {
    filter: drop-shadow(0 0 25px rgba(196, 255, 0, 0.8));
    transform: scale(1.1);
}

.step-card:hover .icon-danger {
    filter: drop-shadow(0 0 25px rgba(255, 0, 85, 0.8));
    transform: scale(1.1);
}

.thick-icon {
    width: 60px;
    height: 60px;
}

.micro-asset {
    width: 140px;
    height: 140px;
    object-fit: contain;
    mix-blend-mode: screen;
    transition: all 0.3s ease;
}

.step-card:hover .micro-asset {
    transform: scale(1.15) translateY(-5px);
}

.step-card.card-danger:hover .micro-asset {
    transform: scale(1.15) translateY(-5px);
}

.step-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.step-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

.text-danger {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}

/* ============================================================
   FINAL CTA (EL CIERRE)
   ============================================================ */
.final-cta {
    padding: 80px 0 120px;
    background: transparent;
    text-align: center;
}

.final-title {
    font-family: var(--font-head);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.final-btn-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.pulse-btn {
    animation: btnBreath 2s infinite alternate;
}

@keyframes btnBreath {
    from { transform: scale(1); box-shadow: 0 10px 30px rgba(195, 244, 0, 0.4); }
    to { transform: scale(1.05); box-shadow: 0 20px 50px rgba(195, 244, 0, 0.8); }
}

/* Heartbeat button — replaces simple breath pulse */
.heartbeat-btn {
    animation: heartbeat 2.4s ease-in-out infinite;
    cursor: pointer;
}

@keyframes heartbeat {
    0%   { transform: scale(1);    box-shadow: 0 10px 30px rgba(196,255,0,0.35); }
    14%  { transform: scale(1.05); box-shadow: 0 16px 40px rgba(196,255,0,0.65); }
    28%  { transform: scale(1);    box-shadow: 0 10px 30px rgba(196,255,0,0.35); }
    42%  { transform: scale(1.04); box-shadow: 0 14px 38px rgba(196,255,0,0.55); }
    70%  { transform: scale(1);    box-shadow: 0 10px 30px rgba(196,255,0,0.35); }
    100% { transform: scale(1);    box-shadow: 0 10px 30px rgba(196,255,0,0.35); }
}

.heartbeat-btn:hover {
    transform: scale(1.03) !important;
    animation-play-state: paused;
    box-shadow: 0 22px 55px rgba(196,255,0,0.85), 0 0 0 4px rgba(196,255,0,0.2);
    cursor: pointer;
}

/* Expiry urgency label */
.expiry-label {
    color: var(--neon-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    background: rgba(196,255,0,0.08);
    border: 1px solid rgba(196,255,0,0.25);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: flickerExpiry 4s infinite;
}

@keyframes flickerExpiry {
    0%, 90%, 100% { opacity: 1; }
    93%            { opacity: 0.3; }
    96%            { opacity: 1; }
    98%            { opacity: 0.5; }
}

/* Social proof avatar strip */
.social-proof-strip {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 960px) {
    .social-proof-strip {
        justify-content: center;
    }
}

.avatar-stack {
    display: flex;
    align-items: center;
    margin-right: -4px;
}

.avatar-svg {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: -10px;
    background: #0f0e14;
    border: 2px solid #0f0e14;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transition: transform 0.2s;
}

.avatar-svg:first-child {
    margin-left: 0;
}

.avatar-svg:hover {
    transform: translateY(-2px);
    z-index: 10;
}

.herd-text {
    font-size: 0.82rem;
    color: #999;
    margin: 0;
}

.herd-text strong {
    color: #fff;
    font-weight: 600;
}

/* Mystery pack exploding shake on button hover */
@keyframes packExplode {
    0%   { transform: rotate(0deg)   scale(1); }
    10%  { transform: rotate(-4deg)  scale(1.04); }
    20%  { transform: rotate(5deg)   scale(1.06); }
    30%  { transform: rotate(-5deg)  scale(1.04); }
    40%  { transform: rotate(4deg)   scale(1.07); }
    50%  { transform: rotate(-3deg)  scale(1.05); }
    60%  { transform: rotate(5deg)   scale(1.08); }
    70%  { transform: rotate(-4deg)  scale(1.05); }
    80%  { transform: rotate(3deg)   scale(1.06); }
    90%  { transform: rotate(-2deg)  scale(1.04); }
    100% { transform: rotate(0deg)   scale(1); }
}

.pack-exploding {
    animation: packExplode 0.5s ease-in-out infinite !important;
    filter: drop-shadow(0 0 24px rgba(196,255,0,0.9)) drop-shadow(0 0 8px rgba(255,0,85,0.5)) !important;
}

/* ============================================================
   LEGAL FOOTER
   ============================================================ */
.legal-footer {
    background-color: #0a080c;
    padding: 60px 20px 100px 20px; /* Extra bottom padding for live ticker clearance */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.legal-footer p {
    font-size: 0.75rem; /* text-xs equivalent */
    color: rgba(255, 255, 255, 0.35); /* Subtle grey */
    line-height: 1.6;
    margin: 0 auto;
    max-width: 900px;
    font-family: var(--font-body);
}

.legal-footer strong {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .showcase-title { font-size: 2rem; }
    
    .season-countdown-pill {
        flex-direction: column;
        border-radius: 16px;
        padding: 15px;
    }
    .countdown-label { 
        margin-right: 0; 
        margin-bottom: 10px; 
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .featured-tier {
        transform: scale(1);
    }
    .featured-tier:hover {
        transform: translateY(-10px);
    }

    .steps-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .circuit-line {
        display: none;
    }
    .final-title { 
        font-size: 2.2rem; 
    }
}

/* ============================================================
   CAPTURE MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(196, 255, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 40px rgba(196, 255, 0, 0.15);
    transform: translateY(0) scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.hidden .modal-content {
    transform: translateY(20px) scale(0.95);
}

.modal-icon {
    width: 50px;
    height: 50px;
    stroke: var(--neon-yellow);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(196, 255, 0, 0.5));
}

.modal-title {
    font-family: var(--font-head);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: border-color 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 15px rgba(196, 255, 0, 0.2);
}

.country-select {
    background: transparent;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.country-select option {
    background: #121212;
    color: #fff;
}

.phone-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1px;
    outline: none;
    width: 100%;
}

.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit-btn.loading {
    background: rgba(196, 255, 0, 0.5);
    pointer-events: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.modal-footer {
    margin-top: 25px;
    font-size: 0.8rem;
    color: #777;
    letter-spacing: 0.5px;
}

/* ============================================================
   FIX 1+5: PRICING SECTION HEADER & BUTTON VARIANTS
   ============================================================ */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}
.pricing-eyebrow {
    color: var(--neon-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.pricing-title {
    font-family: var(--font-head);
    font-size: 2.4rem;
    margin-bottom: 10px;
}
.pricing-sub {
    color: var(--text-muted);
    font-size: 1rem;
}

.neon-outline-btn {
    background: transparent !important;
    border: 2px solid var(--neon-yellow) !important;
    color: var(--neon-yellow) !important;
    box-shadow: 0 0 12px rgba(196,255,0,0.2);
    transition: all 0.3s ease;
}
.neon-outline-btn:hover {
    background: rgba(196,255,0,0.1) !important;
    box-shadow: 0 0 24px rgba(196,255,0,0.5);
}

.btn-primary-purple {
    background: linear-gradient(135deg, #a64dff 0%, #7300e6 100%);
    box-shadow: 0 10px 30px rgba(139, 61, 255, 0.5), inset 0 -3px 0 rgba(0,0,0,0.2);
}

.btn-primary-purple:hover {
    background: linear-gradient(135deg, #b478ff 0%, #8b3dff 100%);
    box-shadow: 0 15px 40px rgba(139, 61, 255, 0.7), inset 0 -3px 0 rgba(0,0,0,0.2);
}

.btn-primary-pulse {
    background: linear-gradient(135deg, #ffcc00 0%, #ff6600 100%);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.6), inset 0 -3px 0 rgba(0,0,0,0.3);
    color: #000;
    text-shadow: none;
    border: 2px solid #ffcc00;
    animation: actionPulse 2s infinite;
}

.btn-primary-pulse:hover {
    background: linear-gradient(135deg, #ffe066 0%, #ff8533 100%);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.8), inset 0 -3px 0 rgba(0,0,0,0.3);
    transform: translateY(-5px) scale(1.05);
}

@keyframes actionPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.pink-glow-btn {
    background: linear-gradient(135deg, #ff0055 0%, #c0004a 100%) !important;
    box-shadow: 0 8px 25px rgba(255,0,85,0.5);
    animation: pinkHeartbeat 2.4s ease-in-out infinite;
}
.pink-glow-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(255,0,85,0.75);
}
@keyframes pinkHeartbeat {
    0%,70%,100% { box-shadow: 0 8px 25px rgba(255,0,85,0.4); }
    14%          { box-shadow: 0 14px 35px rgba(255,0,85,0.7); }
    42%          { box-shadow: 0 12px 30px rgba(255,0,85,0.6); }
}

/* ============================================================
   FIX 2: ENLARGED MICRO-ASSETS (How It Works)
   ============================================================ */
.micro-asset {
    width: 160px !important;
    height: 160px !important;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    transition: all 0.35s ease;
}
.step-card:hover .micro-asset {
    transform: scale(1.08);
}
.how-it-works {
    padding: 80px 0 100px;
}



/* ============================================================
   FIX 4: SCROLL-REVEAL ANIMATION SYSTEM
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
