.hero-section{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
    opacity:0; 
    transform:translateY(25px);
    background:var(--backgroun-navy);
}

.hero-section::before{

    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at 18% 22%,
            rgba(59,130,246,.08),
            transparent 32%
        ),

        radial-gradient(
            circle at 82% 18%,
            rgba(96,165,250,.18),
            transparent 28%
        ),

        radial-gradient(
            circle at 55% 78%,
            rgba(37,99,235,.16),
            transparent 36%
        );

    pointer-events:none;

}

.hero-section::after{

    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:48px 48px;
    opacity:.35;
    pointer-events:none;
}

.hero-content,
.hero-showcase{
    position:relative;
    z-index:2;
}

/* included with the hero animation */
.hero-section.loaded{
    animation:heroReveal .85s cubic-bezier(.175,.885,.32,1.1) forwards;
}

@keyframes heroReveal{
    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================================================
   HERO BACKGROUND
========================================================== */

.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
        rgba(59,130,246,.18),
        transparent 35%),

        radial-gradient(circle at bottom left,
        rgba(96,165,250,.10),
        transparent 40%);

    z-index:-2;
}

.hero-section::after{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px);

    background-size:40px 40px;
    z-index:-1;
}

/* ==========================================================
   HERO BADGE
========================================================== */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    padding:.7rem 1rem;
    border-radius:var(--radius-pill);
    background:var(--background);
    border:1px solid var(--border-light);
    color:#9ec8ff;
    font-size:.9rem;
    margin-bottom:1.5rem;
}

/* ==========================================================
   HERO TITLE
========================================================== */

.hero-title{
    font-size:clamp(3rem,5vw,4.8rem);
    line-height:1.08;
    font-weight:700;
    margin-bottom:1.5rem;
    color:#fff;
}

.hero-title span{
    background:linear-gradient(
        135deg,
        #60a5fa,
        #3b82f6);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-description{
    max-width:580px;
    color:rgba(255,255,255,.75);
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:2rem;
}

.hero-buttons{
    display:flex;
    gap:1rem;
    margin-bottom:2.5rem;
    flex-wrap:wrap;
}

.hero-buttons .btn-outline-light{
    border-radius:var(--radius-pill);
    padding:14px 26px;
    border:1px solid var(--border-light);
    color:#fff;
}

.hero-buttons .btn-outline-light:hover{
    background:#fff;
    color:#0f172a;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:1.5rem;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:.6rem;
    color:rgba(255,255,255,.75);
    font-size:.95rem;
}

.hero-features i{
    color:#3b82f6;
}

/* ==========================================================
   SHOWCASE
========================================================== */

.hero-showcase{
    position:relative;
}

.browser-window{
    position:relative;
    background:#ffffff;
    border-radius:var(--radius-md);
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow-md);
}

.browser-top{
    display:flex;
    align-items:center;
    gap:1rem;
    height:48px;
    padding:0 18px;
    background:#f8fafc;
    border-bottom:1px solid #edf2f7;
}

.browser-buttons{
    display:flex;
    gap:.5rem;
}

.browser-buttons span{
    width:12px;
    height:12px;
    border-radius:50%;
    display:block;
}

.red{
    background:#ff5f57;
}

.yellow{
    background:#ffbd2e;
}

.green{
    background:#28c840;
}

.browser-address{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    height:32px;
    border-radius:var(--radius-pill);
    background:#eef2f7;
    color:#64748b;
    font-size:.82rem;
    font-weight:500;
}

.carousel-fade .carousel-item{
    transition: opacity .8s ease-in-out;
}

.carousel-item img{
    width:100%;
    height:420px;
    /*object-fit:cover;*/
    display:block;
    transform:scale(1);
    transition: transform 6s linear;
}

.carousel-item.active img{
    transform:scale(1.05);
}

