.hero {
    padding: 78px 0 40px;
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: center;
}

.eyebrow {
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.02;
    margin: 0 0 14px;
    letter-spacing: -0.04em;
}

.hero-sub {
    margin: 0 0 18px;
    color: var(--muted);
    max-width: 70ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-tile {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 12px 14px;
    min-width: 140px;
}

.stat-value {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.hero-art {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: radial-gradient(600px 420px at 30% 20%, rgba(140, 210, 255, 0.12), transparent 58%),
        radial-gradient(520px 380px at 70% 60%, rgba(167, 243, 208, 0.08), transparent 60%),
        rgba(255, 255, 255, 0.02);
    height: 360px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mist-layer {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(140, 210, 255, 0.06), transparent 52%),
        radial-gradient(circle at 20% 70%, rgba(167, 243, 208, 0.05), transparent 54%);
    filter: blur(22px);
    opacity: 0.85;
    animation: mist-drift 18s ease-in-out infinite;
}

.mist-layer-2 {
    opacity: 0.55;
    animation-duration: 26s;
    animation-direction: reverse;
}

.hero-logo {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.hero-art.hero-logo {
    height: auto;
    min-height: 360px;          /* keeps visual balance with text */
    overflow: visible;          /* CRITICAL: stops clipping */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 520px;           /* controls how dominant the logo is */
    height: auto;

    animation: logo-float 10s ease-in-out infinite;

    filter:
        drop-shadow(0 28px 80px rgba(0, 0, 0, 0.75))
        drop-shadow(0 0 60px rgba(140, 210, 255, 0.22));
}

.hero-logo .mist-layer {
    inset: -40%;
    pointer-events: none;
}

@keyframes logo-float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes mist-drift {
    0% {
        transform: translate3d(-1.5%, -1%, 0) scale(1.02);
    }
    50% {
        transform: translate3d(1.5%, 1%, 0) scale(1.06);
    }
    100% {
        transform: translate3d(-1.5%, -1%, 0) scale(1.02);
    }
}

@media (max-width: 980px) {
    .hero-inner {
		grid-template-columns: 1.15fr 0.85fr;
	}

    .hero-title {
        font-size: 44px;
    }

    .hero-art {
        height: 280px;
    }
}
