/* Explain: Component styles for the hero visual background and phone mockups. - */
/* Hero Visual Background */
.hero-visual-bg {
    background:
        radial-gradient(circle at 50% 45%, rgba(37, 211, 102, 0.18), transparent 38%),
        linear-gradient(160deg, #f8fafc, #edf2f7);
}

/* CSS Drawn Phones Stack */
.phone-stack {
    position: relative;
    width: 280px;
    height: 390px;
}

.phone-mock {
    position: absolute;
    width: 190px;
    height: 360px;
    border-radius: 34px;
    background: #111827;
    border: 8px solid #1f2937;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.25);
    overflow: hidden;
}

.phone-mock::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 8px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    z-index: 2;
}

.phone-mock::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.18), transparent 38%),
        radial-gradient(circle at 30% 25%, #6ee7b7, transparent 24%),
        radial-gradient(circle at 70% 65%, #60a5fa, transparent 30%),
        linear-gradient(145deg, #111827, #334155);
}

.phone-mock.one {
    right: 15px;
    top: 10px;
    transform: rotate(8deg);
}

.phone-mock.two {
    left: 15px;
    bottom: 0;
    transform: rotate(-9deg) scale(0.92);
    opacity: 0.92;
}