/* ==============================
   Home Page Specific Styles
============================== */

/* Box-less Promo Node */
.promo-node {
    position: relative;
    padding: 4rem 1rem 6rem;
    text-align: center;
    z-index: 1;
}

.promo-clock-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.promo-clock {
    font-size: 4rem;
    color: var(--neon);
    filter: drop-shadow(0 0 15px var(--neon-weak));
    /* Removed heartbeat animation – static */
}

/* Smooth float for hero image */
.hero__img {
    transition: transform 0.2s ease-out;
}

.about__img img {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}
.about__img img:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}
