.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: blob-float 18s ease-in-out infinite;
}

.hero__blob--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.6) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation-delay: 0s;
}

.hero__blob--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    animation-delay: -6s;
}

.hero__blob--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.35) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: -12s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-15px, 25px) scale(0.97); }
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: 6px 14px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: var(--r-full);
    font-size: var(--fz-sm);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--s-6);
}

.hero__tag-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

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

.hero__title {
    font-size: clamp(36px, 5vw, var(--fz-5xl));
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--s-6);
}

.hero__sub {
    font-size: var(--fz-md);
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: var(--s-8);
    max-width: 560px;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s-4);
    margin-bottom: var(--s-12);
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-8);
}

.hero__stat-value {
    font-size: var(--fz-3xl);
    font-weight: 800;
    line-height: 1;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: var(--fz-sm);
    color: var(--text-2);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding-block: 120px 80px; }
    .hero__blob--1 { width: 350px; height: 350px; }
    .hero__blob--2 { width: 300px; height: 300px; }
    .hero__blob--3 { width: 250px; height: 250px; }
    .hero__stats { gap: var(--s-6); }
}
