

.hero-scene {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: transparent;
    z-index: 1;
}

.hero-center-box {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-bottom: 120px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-headline {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-headline span {
    color: var(--primary);
    background: linear-gradient(180deg, #ffffff 10%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px var(--primary-glow));
    display: inline-block;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 580px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-red-glow {
    background: var(--primary);
    color: var(--text-on-primary, #fff);
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 20px var(--primary-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-red-glow:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 40px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.02);
}

.stats-bar {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 600px;
    max-width: 90%;
    background: rgba(3, 3, 3, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 20;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
    font-feature-settings: "tnum";
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.stat-label i { color: var(--primary); font-size: 0.8em; }

@media (max-width: 768px) {
    .stats-bar { width: 90%; min-width: unset; border-radius: 16px; padding: 20px; flex-wrap: wrap; justify-content: center; gap: 25px; bottom: 30px; }
    .stat-box { width: 45%; }
    .stat-box:not(:last-child)::after { display: none; }
    .hero-headline { font-size: 2.8rem; }
}