.block-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 6rem;
}

/* Gradient background */
.block-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1E1B4B 0%, #252262 30%, #1E1B4B 60%, #0D9488 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

/* SVG wave pattern */
.block-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='.5' d='M0 50q25-20 50 0t50 0'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='.5' d='M0 30q25-20 50 0t50 0M0 70q25-20 50 0t50 0'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='.5' d='M0 90q25-20 50 0t50 0M0 10q25-20 50 0t50 0'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: trail-flow 30s linear infinite;
}

/* Floating orbs */
.block-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.block-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 53, 0.3);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.block-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(13, 148, 136, 0.3);
    bottom: -50px;
    left: -50px;
    animation-delay: -2s;
}

.block-hero__orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(251, 191, 36, 0.2);
    top: 50%;
    left: 30%;
    animation-delay: -4s;
}

/* Speed lines */
.block-hero__speed-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.05;
}

.block-hero__speed-lines::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        #fff 10px,
        #fff 11px
    );
    animation: speed-move 20s linear infinite;
}

/* Noise texture */
.block-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Content */
.block-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 4rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.block-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.block-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #FBBF24;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Title */
.block-hero__title {
    font-family: var(--font-display, 'Bricolage Grotesque', system-ui, sans-serif);
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: -0.03em;
}

.block-hero__title-accent {
    display: block;
    color: #FBBF24;
}

/* Subtitle */
.block-hero__subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 560px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Actions */
.block-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations referenced from main.css */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes trail-flow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200px); }
}

@keyframes speed-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(200px); }
}
