/* ===========================
   GLOBAL
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    color:#111827;

    overflow-x:hidden;

}

/* ===========================
   NAVBAR
=========================== */

nav{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:24px 7%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    z-index:999;

    border-bottom:1px solid #f1f5f9;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:34px;

    font-weight:800;

    color:#111827;

}

.logo i{

    font-size:30px;

    background:linear-gradient(135deg,#7C3AED,#EC4899);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.logo span{

    font-size:24px;

}

nav ul{

    list-style:none;

    display:flex;

    gap:55px;

}

nav ul li a{

    text-decoration:none;

    color:#374151;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

nav ul li a:hover{

    color:#7C3AED;

}

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

.hero{

    min-height:100vh;

    padding:140px 7% 80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.hero-left{

    width:50%;

}

.hero-right{

    width:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-right img{

    width:100%;

    max-width:520px;

    filter:drop-shadow(0 25px 60px rgba(124,58,237,.18));

}

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

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:999px;

    background:#F3E8FF;

    color:#7C3AED;

    font-weight:600;

    margin-bottom:28px;

}
/* ===========================
   HERO TEXT
=========================== */

.hero h1{

    font-size:72px;

    font-weight:800;

    line-height:1.05;

    margin-bottom:28px;

    color:#0F172A;

}

.hero h1 span{

    background:linear-gradient(135deg,#7C3AED,#EC4899);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    font-size:22px;

    line-height:1.8;

    color:#64748B;

    max-width:620px;

    margin-bottom:40px;

}

/* ===========================
   BUTTONS
=========================== */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:55px;

}

.btn-primary{

    position:relative;

    overflow:hidden;

    transform-style: preserve-3d;
    
    will-change: transform;

    text-decoration:none;

    letter-spacing:.4px;

    padding:18px 34px;

    border-radius:14px;

    background:linear-gradient(135deg,#7C3AED,#EC4899);

    color:white;

    font-weight:700;

    transition:all .35s cubic-bezier(.175,.885,.32,1.275);

    box-shadow:0 12px 30px rgba(124,58,237,.25);

}

.btn-primary::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:rgba(255,255,255,.35);

    transform:skewX(-25deg);

    transition:.6s;

}

.btn-primary:hover::before{

    left:140%;

}

.btn-primary::after{

    content:"";

    position:absolute;

    inset:-3px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        rgba(124,58,237,.35),
        rgba(236,72,153,.35)
    );

    opacity:0;

    transition:.35s;

    z-index:-1;

    filter:blur(18px);

}

.btn-primary:hover::after{

    opacity:1;

}

.btn-primary:active{

    transform:translateY(-2px) scale(.95);

}

.btn-primary:hover{

    transform:
        perspective(900px)
        rotateX(-8deg)
        translateY(-12px)
        scale(1.15);

    filter:brightness(1.20) saturate(1.15);

    box-shadow:
        0 50px 90px rgba(124,58,237,.45),
        0 25px 60px rgba(236,72,153,.35),
        0 10px 25px rgba(0,0,0,.18);

}

.btn-secondary{

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    border:2px solid #CBD5E1;

    color:#0F172A;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    border-color:#7C3AED;

    color:#7C3AED;

}

/* ===========================
   MINI CARDS
=========================== */

.hero-stats{

    display:flex;

    gap:20px;

}

.mini-card{

    background:white;

    border-radius:18px;

    padding:20px 28px;

    box-shadow:0 10px 35px rgba(15,23,42,.08);

    min-width:140px;

}

.mini-card h3{

    font-size:28px;

    color:#7C3AED;

    margin-bottom:6px;

}

.mini-card p{

    font-size:15px;

    margin:0;

    color:#64748B;

}

/* ===========================
   ANIMATION
=========================== */

@keyframes float{

    0%{transform:translateY(0);}

    50%{transform:translateY(-12px);}

    100%{transform:translateY(0);}

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1100px){

.hero{

flex-direction:column;

text-align:center;

}

.hero-left,
.hero-right{

width:100%;

}

.hero-buttons,
.hero-stats{

justify-content:center;

flex-wrap:wrap;

}

.hero h1{

font-size:54px;

}

}
.hero{

    position:relative;

}

.hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    right:-180px;

    top:80px;

    background:radial-gradient(circle,#F3E8FF 0%,transparent 70%);

    z-index:-1;

    filter:blur(20px);

}