/* ── Hero Banner ── */

.hero-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #04090f 0%, #060e1c 40%, #080b18 100%);
    padding: 48px 20px 40px;
    isolation: isolate;
}

/* Animated glow orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: orb-drift 8s ease-in-out infinite alternate;
}

.hero-orb--1 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(0,229,195,0.14) 0%, transparent 70%);
    top: -100px; left: -80px;
    animation-duration: 9s;
}

.hero-orb--2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(123,97,255,0.12) 0%, transparent 70%);
    bottom: -80px; right: -60px;
    animation-duration: 11s;
    animation-delay: -3s;
}

.hero-orb--3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,92,92,0.07) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 13s;
    animation-delay: -6s;
}

@keyframes orb-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 15px) scale(1.08); }
}

.hero-orb--3 {
    animation-name: orb-drift-center;
}

@keyframes orb-drift-center {
    0%   { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(calc(-50% + 15px), calc(-50% + 10px)) scale(1.1); }
}

/* Grid lines overlay */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,229,195,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,195,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Inner layout */
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left: content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.hero-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
    animation: pulse-live 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--color-white);
    margin-bottom: 14px;
    background: linear-gradient(135deg, #eef2ff 30%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA buttons */
.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.hero-btn svg {
    width: 16px; height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero-btn--primary {
    background: var(--color-primary);
    color: #04090f;
    box-shadow: 0 0 24px rgba(0,229,195,0.25);
}

.hero-btn--primary:hover {
    background: #00ffd5;
    box-shadow: 0 0 40px rgba(0,229,195,0.45);
    transform: translateY(-2px);
}

.hero-btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.12);
}

.hero-btn--ghost:hover {
    border-color: var(--color-border-strong);
    background: rgba(255,255,255,0.04);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 10px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* Right: visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-frame {
    position: relative;
    display: inline-block;
}

.hero-img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(0,229,195,0.15) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0%   { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1;   transform: scale(1.05); }
}

.hero-ad-img {
    display: block;
    width: 100%;
    max-width: 750px;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-strong);
    box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,229,195,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.hero-img-frame:hover .hero-ad-img {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 32px rgba(0,229,195,0.1);
}

.hero-img-badge {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(6,11,20,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-strong);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-primary);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.hero-img-badge svg {
    width: 13px; height: 13px;
    fill: var(--color-primary);
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (min-width: 640px) {
    .hero-title { font-size: 40px; }
    .hero-sub { font-size: 15px; }
}

@media (min-width: 768px) {
    .hero-banner { padding: 64px 32px 56px; }

    .hero-inner {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .hero-content { flex: none; width: 100%; }
    .hero-visual { flex: none; }

    .hero-title { font-size: 44px; }
    .hero-ad-img { max-width: 850px; }

    .hero-orb--1 { width: 500px; height: 500px; top: -150px; left: -120px; }
    .hero-orb--2 { width: 400px; height: 400px; bottom: -120px; right: -80px; }
}

@media (min-width: 1024px) {
    .hero-banner { padding: 80px 48px 72px; }
    .hero-title { font-size: 52px; letter-spacing: -2px; }
    .hero-sub { font-size: 16px; }
    .hero-stat-num { font-size: 22px; }
    .hero-inner { gap: 64px; }
    .hero-ad-img { max-width: 950px; }
}
