/* ============================================================
   DevWerk Hero Core
   ============================================================ */

.hero-section-core {
    position: relative;
    overflow: hidden;
    background-color: #0b0b0d; /* Deep dark base */
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Space for navbar */
    padding-bottom: 60px;
}

/* --- Animated Core Background --- */
.hero-core-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Grid overlay to give it a tech feel */
.hero-core-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

/* Glowing orbs that create the "Digital Core" */
.hero-core-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: corePulse 12s infinite alternate ease-in-out;
}

.hero-core-orb-1 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 85, 3, 0.4) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero-core-orb-2 {
    top: 40%;
    left: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 104, 197, 0.3) 0%, transparent 70%);
    animation-delay: -4s;
}

.hero-core-orb-3 {
    top: 30%;
    right: 30%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    animation-delay: -8s;
}

@keyframes corePulse {
    0% { transform: scale(1) translate(-10px, 10px); opacity: 0.5; }
    50% { transform: scale(1.1) translate(10px, -20px); opacity: 0.7; }
    100% { transform: scale(0.95) translate(-20px, -10px); opacity: 0.4; }
}

/* --- Content Container --- */
.hero-core-container {
    position: relative;
    z-index: 2;
}

.hero-core-content {
    max-width: 900px;
    margin: 0 auto;
}

/* --- Floating Badges (Glassmorphism) --- */
.core-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatBadge 6s infinite ease-in-out alternate;
    pointer-events: none;
    white-space: nowrap;
}

.core-badge i {
    font-size: 16px;
}

.badge-top-left {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.badge-top-right {
    top: 15%;
    right: -15%;
    animation-delay: -2s;
}

.badge-bottom-right {
    bottom: 25%;
    right: -10%;
    animation-delay: -4s;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

/* --- Typography --- */
.hero-core-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 85, 3, 0.1);
    border: 1px solid rgba(241, 85, 3, 0.2);
    color: #f15503;
    padding: 6px 16px;
    border-radius: 30px;
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: #f15503;
    border-radius: 50%;
    box-shadow: 0 0 10px #f15503;
}

.hero-core-headline {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-core-highlight {
    background: linear-gradient(90deg, #f15503, #ff9a5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-core-sub {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* --- Buttons --- */
.hero-core-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-core-secondary {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-core-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Trust Section --- */
.hero-core-trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.trust-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 2px;
}

.trust-text {
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    color: #aaa;
    text-align: left;
    line-height: 1.4;
}

.trust-text strong {
    color: #fff;
    font-weight: 600;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .core-badge { display: none !important; }
    .hero-core-actions { flex-direction: column; width: 100%; }
    .hero-core-actions .banner-btn,
    .hero-core-actions .btn-core-secondary { width: 100%; text-align: center; justify-content: center; }
    .hero-core-orb-1 { width: 400px; height: 400px; }
    .hero-core-orb-2 { width: 300px; height: 300px; }
}
