/* ===== ORIGINAL PORTFOLIO HERO ===== */
.portfolio-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #2b3f5f, #3c5676);
    color: #fff;
    overflow: hidden;
    padding-top: 100px;
}

/* GRID BACKGROUND */
.animated-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
    z-index: 1;
}

/* ORBS */
.hero-effects .orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,184,193,0.25), transparent 70%);
    filter: blur(10px);
}

.o1 { width: 180px; height: 180px; top: 20%; left: 15%; }
.o2 { width: 140px; height: 140px; bottom: 25%; right: 15%; }
.o3 { width: 120px; height: 120px; top: 55%; left: 55%; }

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* TITLE */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
}

/* HIGHLIGHT */
.highlight-word {
    color: #B0B8C1;
    position: relative;
}

.highlight-word::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #B0B8C1;
}

/* SUBTITLE */
.hero-subtitle {
    margin-top: 15px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}