/* ------------------------------------------------ */
/* HOME SECTION */
/* ------------------------------------------------ */

.home-section {
    background: #ffffff;
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    margin-top: -100px;
}

/* Text styling */
.gradient-text {
    background: linear-gradient(90deg, #0284c7, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.headline { font-size: 3rem; font-weight: 700; margin: 1.2rem 0; }
.intro { max-width: 700px; margin: 10px auto 2rem; font-size: 1.1rem; opacity: 0.9; }
.highlight { color: #0284c7; }

/* CTA button */
.cta-btn {
    background: #0284c7;
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    animation: pulse 2s infinite; 
}

.cta-btn:hover {
    background: #0369a1;
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

/* CTA ulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(2,132,199,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(2,132,199,0); }
    100% { box-shadow: 0 0 0 0 rgba(2,132,199,0); }
}


.cursor {
    display: inline-block;
    font-weight: bold;
    color: #0284c7;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}


@media (max-width: 992px) {
    .acct-icon { 
        display: none !important; 
    }
}

.home-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
}

/* LEFT SIDE — SAFE ZONE */
.home-left {
    z-index: 10;
    max-width: 520px;
}

/* RIGHT SIDE — VISUAL ONLY */
.home-visual {
    position: relative;
    height: 420px;
    pointer-events: none; /* NEVER affects interaction */
}

/* BASE SHAPE */
.shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.22;
    animation: float 8s ease-in-out infinite;
}

/* INDIVIDUAL SHAPES */
.s1 {
    width: 140px;
    height: 140px;
    background: rgba(0, 60, 140, 0.98);
    top: 40px;
    right: 120px;
}

.s2 {
    width: 90px;
    height: 90px;
    background: rgba(56, 189, 248, 0.85);
    border-radius: 50%;
    bottom: 80px;
    right: 40px;
    animation-delay: 1.5s;
}

.s3 {
    width: 180px;
    height: 70px;
    background: rgba(148, 163, 184, 0.35);
    top: 200px;
    right: 160px;
    animation-delay: 3s;
}

.s4 {
    width: 60px;
    height: 60px;
    background: rgba(0, 60, 140, 0.98);
    border-radius: 50%;
    top: 120px;
    right: 10px;
    animation-delay: 4.5s;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .home-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-visual {
        display: none; /* Hide visuals on mobile */
    }
}
