/* HERO SECTION */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

/* BACKGROUND BLOBS */
.bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
}

.blob-1 {
    background: var(--color-accent);
    top: -100px;
    left: -100px;
    animation: blobFloat 20s infinite alternate;
}

.blob-2 {
    background: var(--color-gold);
    bottom: -100px;
    right: -100px;
    animation: blobFloat 15s infinite alternate-reverse;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-brand-dark);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 24px;
    width: 360px;
    box-shadow: var(--shadow-premium);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.hero-glass-card:hover {
    transform: rotate(0) scale(1.02);
}

.app-interface {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-surface-off);
}

.app-status-icon {
    width: 32px;
    height: 32px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-progress-bar {
    height: 6px;
    background: var(--color-surface-off);
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;
}

.app-progress-fill {
    height: 100%;
    width: 75%;
    background: var(--color-accent);
    border-radius: 3px;
}

.app-float-badge {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

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

    50% {
        transform: translateY(-10px);
    }
}

/* BRUSH UNDERLINE EFFECT */
.brush-underline {
    position: relative;
    z-index: 1;
}

.brush-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 12px;
    background: #435c9e;
    z-index: -1;
    opacity: 0.8;
    border-radius: 4px;
    transform: rotate(-1deg);
}

/* CTA BANNER */
.cta-banner {
    background: var(--color-brand);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

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