/* 
    EASYBOOST ULTRA-PREMIUM HERO ENGINE v2.0
    Theme: Deep Space / Neo-Neon
    Colors: Logo Matched (Pink, Orange, Cyan)
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --h-pink: #FF2E63;
    --h-orange: #FF9933;
    --h-cyan: #00C2FF;
    --h-dark: #020205;
    --h-glass: rgba(255, 255, 255, 0.03);
    --h-border: rgba(255, 255, 255, 0.08);
}

.hero-engine-master {
    position: relative;
    width: 100%;
    min-height: 110vh; /* Extra height for scroll effect */
    background-color: var(--h-dark);
    font-family: 'Space Grotesk', sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    perspective: 2000px;
}

/* --- 1. NEURAL BACKGROUND LAYER --- */
.hero-canvas-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Animated Fog/Smoke Effect */
.nebula-cloud {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 46, 99, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: moveNebula 20s infinite alternate linear;
}

@keyframes moveNebula {
    0% { transform: translate(-10%, -10%) scale(1); }
    100% { transform: translate(20%, 30%) scale(1.3); }
}

/* Interactive Digital Grid (Neural Grid) */
.neural-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: 80px 80px;
    mask-image: radial-gradient(circle at var(--m-x, 50%) var(--m-y, 50%), black 0%, transparent 40%);
    -webkit-mask-image: radial-gradient(circle at var(--m-x, 50%) var(--m-y, 50%), black 0%, transparent 40%);
    z-index: 2;
    transition: mask-image 0.1s ease;
}

/* Glowing Intersection Dots */
.grid-points {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--h-cyan) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.1;
    z-index: 3;
}

/* --- 2. HUGE BACKGROUND TEXT (Authority Styling) --- */
.bg-giant-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -1vw;
}

/* --- 3. MAIN CONTENT LAYER --- */
.hero-content-core {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    position: relative;
    z-index: 10;
}

/* Typography Mastery */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--h-border);
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge-pill span {
    width: 8px; height: 8px;
    background: var(--h-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--h-cyan);
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-main-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 30px;
}

.title-glow {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
    transition: 0.5s;
}

.hero-main-title:hover .title-glow {
    color: #fff;
    -webkit-text-stroke: 1.5px #fff;
    text-shadow: 0 0 50px var(--h-cyan);
}

.hero-description {
    font-size: 20px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 50px;
    border-left: 3px solid var(--h-pink);
    padding-left: 25px;
}

/* --- 4. ACTION BUTTONS (Neo-Brutalism) --- */
.action-cluster {
    display: flex;
    gap: 25px;
    align-items: center;
}

.btn-ultimate {
    position: relative;
    padding: 22px 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    background: #fff;
    border-radius: 15px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    cursor: pointer;
}

.btn-ultimate::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--h-pink), var(--h-orange));
    transition: 0.5s;
    z-index: -1;
}

.btn-ultimate:hover {
    color: #fff;
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 20px 40px rgba(255, 46, 99, 0.3);
}

.btn-ultimate:hover::before { left: 0; }

.btn-secondary-glass {
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.btn-secondary-glass:hover {
    color: var(--h-cyan);
    transform: translateX(10px);
}

.play-circle {
    width: 50px; height: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* --- 5. VISUAL COMPOSITION (Right Side) --- */
.visual-stage {
    position: relative;
    transform-style: preserve-3d;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating Glass Bento Cards */
.bento-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    transition: 0.1s ease-out;
}

.card-main {
    width: 450px; height: 550px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
}

.card-float-top {
    top: -20px; right: -40px;
    padding: 15px 25px;
    background: rgba(0, 194, 255, 0.1);
    border-color: var(--h-cyan);
    z-index: 3;
    animation: float-slow 4s infinite ease-in-out;
}

.card-float-bottom {
    bottom: 20px; left: -50px;
    padding: 20px;
    z-index: 3;
    animation: float-slow 5s infinite ease-in-out reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) translateZ(50px) rotate(0); }
    50% { transform: translateY(-20px) translateZ(80px) rotate(2deg); }
}

/* Glowing Neural Sphere */
.sphere-glow {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--h-cyan) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(50px);
    z-index: 1;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
    .hero-content-core { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin: 0 auto 50px auto; }
    .action-cluster { justify-content: center; }
    .visual-stage { margin-top: 80px; height: 400px; }
    .card-main { width: 300px; height: 400px; }
    .bg-giant-text { display: none; }
}

/* Interaction Effects */
.light-follower {
    position: fixed;
    top: 0; left: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}