/* ========================================
   HERO SECTION - Premium Redesign
   Override styles for premium hero look
   ======================================== */

/* Enhanced hero with organic blob background */
.hero {
    min-height: 100vh;
    /* Premium layered mesh gradient background */
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(123, 120, 170, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(125, 156, 134, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse 70% 60% at 85% 85%, rgba(230, 220, 207, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(248, 219, 217, 0.12) 0%, transparent 45%),
        linear-gradient(180deg, var(--background) 0%, rgba(250, 250, 246, 0.97) 100%);
}

/* Organic blob shapes for visual depth */
.hero::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -15%;
    width: 45%;
    height: 55%;
    background: radial-gradient(ellipse, rgba(123, 120, 170, 0.06) 0%, transparent 60%);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 25%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(125, 156, 134, 0.10) 0%, transparent 65%);
    border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
    filter: blur(50px);
    z-index: 0;
}

/* Third blob for additional depth */
.hero-blob-accent {
    position: absolute;
    bottom: 5%;
    left: 30%;
    width: 35%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(230, 220, 207, 0.15) 0%, transparent 60%);
    border-radius: 50% 50% 40% 60% / 45% 55% 45% 55%;
    filter: blur(45px);
    z-index: 0;
    pointer-events: none;
}

@keyframes blob-morph-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }

    25% {
        transform: translate(3%, 5%) scale(1.05) rotate(5deg);
        border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    }

    50% {
        transform: translate(-2%, 3%) scale(0.98) rotate(-3deg);
        border-radius: 45% 55% 55% 45% / 45% 55% 45% 55%;
    }

    75% {
        transform: translate(4%, -2%) scale(1.02) rotate(2deg);
        border-radius: 55% 45% 50% 50% / 50% 50% 55% 45%;
    }
}

@keyframes blob-morph-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
    }

    33% {
        transform: translate(-4%, 3%) scale(1.03) rotate(-4deg);
        border-radius: 55% 45% 45% 55% / 45% 55% 50% 50%;
    }

    66% {
        transform: translate(2%, -4%) scale(0.97) rotate(3deg);
        border-radius: 50% 50% 60% 40% / 50% 50% 40% 60%;
    }
}

@keyframes blob-morph-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(5%, -3%) scale(1.08);
        opacity: 1;
    }
}

/* Ensure content is above blobs */
.hero-inner {
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Enhanced headline typography */
.hero-content h1 {
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: var(--space-md);
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg,
            var(--primary) 0%,
            #9B97D0 25%,
            var(--tertiary) 50%,
            #9FBBA6 75%,
            var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease-in-out infinite;
    font-weight: 900;
    display: inline-block;
    padding-bottom: 0.05em;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Description styling */
.hero-content .lead {
    font-size: 1.3rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

/* Enhanced eyebrow badge */
.hero-eyebrow {
    background: linear-gradient(135deg, rgba(123, 120, 170, 0.12) 0%, rgba(125, 156, 134, 0.08) 100%);
    padding: 8px 18px;
    border: 1px solid rgba(123, 120, 170, 0.15);
    backdrop-filter: blur(8px);
}

/* Better CTA spacing */
.hero-cta-wrapper {
    margin-top: var(--space-lg);
}

/* Floating decorative elements around illustration */
.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-coin,
.floating-sparkle,
.floating-shape {
    position: absolute;
    opacity: 0.6;
    animation: gentle-float 6s ease-in-out infinite;
}

.floating-coin {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFD93D 0%, #F4C430 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(244, 196, 48, 0.3);
}

.floating-coin::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.floating-coin-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.floating-coin-2 {
    bottom: 25%;
    right: 15%;
    width: 24px;
    height: 24px;
    animation-delay: 1.5s;
}

.floating-sparkle {
    width: 16px;
    height: 16px;
    background: var(--primary-bright);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.floating-sparkle-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.floating-sparkle-2 {
    bottom: 30%;
    right: 8%;
    width: 12px;
    height: 12px;
    animation-delay: 2s;
}

.floating-sparkle-3 {
    top: 35%;
    right: 2%;
    width: 10px;
    height: 10px;
    animation-delay: 3s;
    background: var(--tertiary);
}

.floating-shape {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.floating-shape-1 {
    width: 40px;
    height: 40px;
    background: rgba(123, 120, 170, 0.15);
    top: 10%;
    right: 12%;
    animation-delay: 0.8s;
}

.floating-shape-2 {
    width: 28px;
    height: 28px;
    background: rgba(125, 156, 134, 0.12);
    bottom: 20%;
    right: 25%;
    animation-delay: 2.5s;
}

@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(5deg);
    }

    50% {
        transform: translateY(-12px) rotate(-3deg);
    }

    75% {
        transform: translateY(-6px) rotate(2deg);
    }
}

/* Coming Soon badge integration - better flow */
.coming-soon-wrapper {
    margin-top: var(--space-lg);
}

.coming-soon-badge {
    background: linear-gradient(135deg, rgba(123, 120, 170, 0.15) 0%, rgba(125, 156, 134, 0.10) 100%);
    border: 1px solid rgba(123, 120, 170, 0.25);
    box-shadow: 0 4px 16px rgba(123, 120, 170, 0.12);
}

/* Enhanced visual area */
.hero-visual {
    z-index: 2;
}

.hero-visual::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .hero::before,
    .hero::after {
        filter: blur(40px);
    }

    .hero-blob-accent {
        display: none;
    }

    .hero-floating-elements {
        display: none;
    }
}
