/* ==========================================
   VOLOWEB - THE OWL PROJECT
========================================== */

:root{
    --primary:#111111;
    --accent:#ff6a00;
    --background:#ffffff;
    --gray:#666666;
    --light:#f7f7f7;
    --border:#ececec;
    --radius:28px;
    --shadow:0 25px 60px rgba(0,0,0,.08);
    --transition:.35s ease;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--background);
    color:var(--primary);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    padding:120px 24px;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

/* Background */

.background-glow{
    position:fixed;
    width:900px;
    height:900px;
    background:radial-gradient(circle,var(--accent),transparent 70%);
    opacity:.06;
    top:-250px;
    left:50%;
    transform:translateX(-50%);
    filter:blur(80px);
    z-index:-1;
}

.particles{
    position:fixed;
    inset:0;
    pointer-events:none;
}

/* Navigation */

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:100;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.72);
    border-bottom:1px solid rgba(0,0,0,.05);
}

nav{
    max-width:1200px;
    height:82px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 24px;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:#111;
    font-weight:800;
    letter-spacing:.08em;
}

.logo img{
    width:42px;
}

.nav-btn{
    padding:14px 24px;
    border-radius:100px;
    background:#111;
    color:#fff;
    transition:var(--transition);
}

.nav-btn:hover{
    background:var(--accent);
}

/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    max-width:950px;
}

.owl-area{
    margin-bottom:35px;
}

.owl-ring{
    width:260px;
    height:260px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    box-shadow:var(--shadow);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.owl{
    width:150px;
    animation:float 5s ease-in-out infinite;
}

.tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    background:#fff3eb;
    color:var(--accent);
    font-size:13px;
    font-weight:700;
    letter-spacing:.15em;
}

.hero h1{
    margin-top:30px;
    font-family:'Sora',sans-serif;
    font-size:clamp(3rem,7vw,6rem);
    line-height:1;
    font-weight:800;
}

.hero p{
    margin:35px auto;
    max-width:700px;
    font-size:1.25rem;
    color:var(--gray);
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    padding:18px 34px;
    border-radius:999px;
    font-weight:700;
    transition:var(--transition);
}

.primary-btn{
    background:#111;
    color:#fff;
}

.primary-btn:hover{
    background:var(--accent);
    transform:translateY(-4px);
}

.secondary-btn{
    border:1px solid var(--border);
    color:#111;
}

.secondary-btn:hover{
    background:#f6f6f6;
}

.live-progress{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.live-progress div{
    background:#fff;
    padding:35px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.live-progress h2{
    font-size:3rem;
    margin-bottom:10px;
}

.live-progress span{
    color:var(--gray);
}

/* Section */

.section{
    max-width:1150px;
    margin:auto;
    text-align:center;
}

.section-tag{
    color:var(--accent);
    font-weight:700;
    letter-spacing:.18em;
    font-size:13px;
}

.section h2{
    margin:25px 0;
    font-size:clamp(2.5rem,5vw,4.5rem);
    font-family:'Sora',sans-serif;
}

.section p{
    max-width:780px;
    margin:auto;
    font-size:1.2rem;
    color:#666;
    line-height:1.9;
}

/* Cards */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}

.card{
    background:#fff;
    padding:45px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.card:hover{
    transform:translateY(-10px);
}

.card h2{
    font-size:3rem;
    margin-bottom:15px;
}

.glass-card{
    margin-top:60px;
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.4);
    padding:50px;
    border-radius:32px;
    box-shadow:var(--shadow);
}

.glass-card ul{
    list-style:none;
    display:grid;
    gap:22px;
    text-align:left;
    font-size:1.15rem;
}

/* Reviews */

.reviews{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.review{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.review:hover{
    transform:translateY(-8px);
}

.review p{
    margin-top:18px;
    font-size:1rem;
}

/* CTA */

.final-section{
    text-align:center;
    padding:160px 24px;
}

.final-owl{
    width:170px;
    margin:auto;
    animation:float 4s ease-in-out infinite;
}

.final-section h2{
    margin:35px 0 25px;
    font-size:clamp(3rem,6vw,5.5rem);
    font-family:'Sora',sans-serif;
}

.final-section p{
    max-width:650px;
    margin:0 auto 40px;
    color:#666;
    font-size:1.2rem;
}

footer{
    padding:60px;
    text-align:center;
    color:#888;
    border-top:1px solid var(--border);
}

/* Animations */

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}
/* ==========================================
   RESPONSIVE DESIGN
========================================== */

@media (max-width:1100px){

    .live-progress,
    .stats-grid,
    .reviews{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:4rem;
    }

    .section h2{
        font-size:3rem;
    }

}

@media (max-width:768px){

    section{
        padding:90px 20px;
    }

    nav{
        height:72px;
    }

    .logo span{
        display:none;
    }

    .owl-ring{
        width:190px;
        height:190px;
    }

    .owl{
        width:110px;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .hero p{
        font-size:1.05rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:320px;
        text-align:center;
    }

    .live-progress div,
    .card,
    .review,
    .glass-card{
        padding:28px;
    }

}

@media (max-width:480px){

    .hero h1{
        font-size:2.2rem;
    }

    .section h2{
        font-size:2.2rem;
    }

    .live-progress h2{
        font-size:2.2rem;
    }

}

/* ==========================================
   SCROLL REVEAL
========================================== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ==========================================
   PROGRESS RING
========================================== */

.progress-ring{
    position:absolute;
    inset:-12px;
    width:284px;
    height:284px;
    transform:rotate(-90deg);
}

.progress-ring circle{
    fill:none;
    stroke-width:8;
    stroke-linecap:round;
}

.progress-bg{
    stroke:#ededed;
}

.progress-fill{
    stroke:var(--accent);
    stroke-dasharray:754;
    stroke-dashoffset:570;
    transition:stroke-dashoffset 1.2s ease;
}

/* ==========================================
   OWL GLOW
========================================== */

.owl-ring::before{

    content:"";

    position:absolute;

    width:340px;
    height:340px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,106,0,.18),
    transparent 70%);

    z-index:-1;

    animation:glow 4s infinite;

}

@keyframes glow{

    0%{
        transform:scale(.9);
        opacity:.45;
    }

    50%{
        transform:scale(1.1);
        opacity:.8;
    }

    100%{
        transform:scale(.9);
        opacity:.45;
    }

}

/* ==========================================
   FEATHER PARTICLES
========================================== */

.feather{

    position:absolute;

    width:18px;

    opacity:.15;

    animation:featherFall linear infinite;

}

@keyframes featherFall{

    from{

        transform:
        translateY(-100px)
        rotate(0deg);

    }

    to{

        transform:
        translateY(120vh)
        rotate(360deg);

    }

}

/* ==========================================
   BUTTON EFFECT
========================================== */

.primary-btn{

    position:relative;

    overflow:hidden;

}

.primary-btn::after{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.45),
    transparent);

    transition:.8s;

}

.primary-btn:hover::after{

    left:130%;

}

/* ==========================================
   HOVER EFFECTS
========================================== */

.review:hover,
.card:hover{

    box-shadow:
    0 35px 80px rgba(0,0,0,.12);

}

.owl{

    transition:
    transform .25s ease;

}

.owl:hover{

    transform:
    scale(1.06)
    rotate(2deg);

}

/* ==========================================
   SOFT DIVIDERS
========================================== */

.section{

    position:relative;

}

.section::after{

    content:"";

    position:absolute;

    bottom:0;

    left:50%;

    transform:translateX(-50%);

    width:80px;

    height:2px;

    background:#efefef;

}

/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#fafafa;

}

::-webkit-scrollbar-thumb{

    background:#d7d7d7;

    border-radius:100px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--accent);

}

/* ==========================================
   SELECTION
========================================== */

::selection{

    background:var(--accent);

    color:#fff;

}

/* ==========================================
   GLASS NAV ON SCROLL
========================================== */

header.scrolled{

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

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

/* ==========================================
   PREMIUM BACKGROUND
========================================== */

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top,
    rgba(255,106,0,.05),
    transparent 45%);

    pointer-events:none;

    z-index:-2;

}