/* Hero */
.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 3rem;
    background: white;
    border: 1px solid var(--text);
    box-shadow: 8px 8px 0px var(--text);
    position: relative;
    align-items: center;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text h1 span {
    color: var(--accent);
    background: linear-gradient(180deg, transparent 70%, rgba(14, 165, 233, 0.2) 70%);
}

.cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid var(--stroke);
}

.stat {
    padding: 1.5rem;
    border-right: 1px solid var(--stroke);
    background: white;
    transition: background 0.3s;
}

.stat:last-child {
    border-right: none;
}

.stat:hover {
    background: #f8fafc;
}

.stat strong {
    display: block;
    color: var(--text);
    font-size: 1.1rem; /* Reduced stat strong size */
    margin-bottom: 0.2rem;
}

.stat small {
    font-size: 0.8rem; /* Reduced stat small size */
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid var(--stroke);
    background-image: radial-gradient(circle, #e0f2fe 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Replaced Orb with a geometric shape for boxy theme */
.orb {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    position: absolute;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.glass-card {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    width: auto;
    max-width: none;
    box-shadow: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card:hover {
    transform: scale(1.05); /* Gentle scale instead of translate */
    box-shadow: none;
}

.profile-pic {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 0;
    object-fit: cover;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.1); /* Hard shadow initially */
    transition: all 0.2s ease; /* Snappy transition */
}

.glass-card:hover .profile-pic {
    transform: translate(-4px, -4px); /* Move up-left */
    box-shadow: 12px 12px 0px var(--accent); /* Hard colored shadow on hover */
    border-color: var(--accent-strong);
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        box-shadow: 6px 6px 0px var(--text);
    }
    
    .stat-grid {
        border-top: none;
    }
    
    .stat {
        border-right: none;
        border-bottom: 1px solid var(--stroke);
    }
}
