

/* =========================================================
RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'DM Sans',sans-serif;
    background:#050816;
    color:#fff;
    overflow-x:hidden;
    line-height:1.6;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

    -webkit-tap-highlight-color:transparent;
}

/* =========================================================
VARIABLES
========================================================= */

:root{

    --bg:#050816;

    --card:rgba(14,18,35,0.76);

    --cyan:#00d4ff;
    --blue:#3b82f6;
    --purple:#8b5cf6;

    --white:#ffffff;
    --muted:#93a4c3;

    --green:#4ade80;
    --yellow:#facc15;
    --red:#f87171;

    --border:rgba(255,255,255,0.08);

    --shadow:
    0 10px 30px rgba(0,0,0,0.35);

}

/* =========================================================
GLOBAL
========================================================= */

img{
    max-width:100%;
    display:block;
}

button,
textarea,
input{
    font-family:inherit;
}

textarea{
    appearance:none;
    -webkit-appearance:none;
}

/* =========================================================
BACKGROUND
========================================================= */

body::before{

    content:'';

    position:fixed;

    inset:0;

    background:

    radial-gradient(
    circle at top right,
    rgba(0,212,255,0.12),
    transparent 30%
    ),

    radial-gradient(
    circle at bottom left,
    rgba(139,92,246,0.12),
    transparent 30%
    );

    z-index:-2;
}

.grid{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(
    rgba(255,255,255,0.02) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(255,255,255,0.02) 1px,
    transparent 1px
    );

    background-size:60px 60px;

    mask-image:
    radial-gradient(circle at center,
    black 35%,
    transparent 85%);

    z-index:-1;
}

.noise{

    position:fixed;

    inset:0;

    background-image:
    radial-gradient(
    rgba(255,255,255,0.015) 1px,
    transparent 1px
    );

    background-size:3px 3px;

    opacity:0.18;

    pointer-events:none;

    z-index:-1;
}

.blur-orb{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:0.18;

    z-index:-1;
}

.orb1{

    width:300px;
    height:300px;

    background:var(--cyan);

    top:-100px;
    right:-100px;
}

.orb2{

    width:300px;
    height:300px;

    background:var(--purple);

    bottom:-100px;
    left:-100px;
}

/* =========================================================
SCROLL REVEAL
========================================================= */

.reveal{

    opacity:0;

    transform:translateY(30px);

    transition:0.8s ease;
}

.reveal.active{

    opacity:1;

    transform:translateY(0);
}

/* =========================================================
NAVBAR
========================================================= */

nav{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:78px;

    display:flex;

    justify-content:space-between;
    align-items:center;

    padding:0 7%;

    background:rgba(5,8,22,0.82);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-bottom:
    1px solid rgba(255,255,255,0.05);

    z-index:1000;
}

.logo{

    display:flex;
    align-items:center;
    gap:12px;

    font-family:'Syne',sans-serif;

    font-size:1.2rem;
    font-weight:800;
}

.logo img{

    width:42px;
    height:42px;

    object-fit:contain;

    border-radius:12px;
}

.logo span{
    color:var(--cyan);
}

.nav-links{

    display:flex;
    align-items:center;
    gap:32px;
}

.nav-links a{

    text-decoration:none;

    color:var(--muted);

    transition:0.3s;

    position:relative;

    font-size:0.95rem;
}

.nav-links a:hover{
    color:white;
}

.nav-links a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-5px;

    width:0%;
    height:2px;

    background:var(--cyan);

    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}




/* =========================================================
NAV CTA
========================================================= */

.nav-cta{

padding:12px 20px;

border-radius:14px;

background:
linear-gradient(
135deg,
var(--cyan),
var(--blue)
);

color:black !important;

font-weight:700;

box-shadow:
0 10px 25px rgba(0,212,255,0.18);
}

.nav-cta:hover{

transform:translateY(-2px);

color:black !important;
}

.nav-cta::after{
display:none;
}









/* =========================================================
SECTIONS
========================================================= */

section{
    padding:110px 7%;
}

/* =========================================================
HERO
========================================================= */

.hero{

    min-height:100svh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding-top:140px;
    padding-bottom:100px;

    overflow:hidden;
}

.hero-wrapper{

    width:100%;
    max-width:1300px;

    display:grid;

    grid-template-columns:1.1fr 0.9fr;

    gap:60px;

    align-items:center;
}

.hero-left{
    max-width:650px;
}

.hero-logo{

    width:90px;

    margin-bottom:28px;

    border-radius:28px;

    filter:
    drop-shadow(
    0 0 35px rgba(0,212,255,0.18)
    );

    animation:floatLogo 5s ease-in-out infinite;
}

@keyframes floatLogo{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

}

.hero h1{

    font-family:'Syne',sans-serif;

    font-size:clamp(3rem,8vw,6.2rem);

    line-height:0.95;

    letter-spacing:-3px;

    margin-bottom:24px;
}

.gradient{

    background:
    linear-gradient(
    135deg,
    var(--cyan),
    var(--blue),
    var(--purple)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero h2{

    color:var(--cyan);

    font-size:1.3rem;

    margin-bottom:24px;
}

.hero p{

    color:var(--muted);

    max-width:650px;

    font-size:1.05rem;
}

.hero-buttons{

    display:flex;
    flex-wrap:wrap;
    gap:18px;

    margin-top:40px;
}

.btn{

    padding:16px 30px;

    border:none;
    border-radius:16px;

    text-decoration:none;

    font-weight:700;

    min-height:54px;

    display:inline-flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    transition:0.3s;
}

.btn:active,
.scan-btn:active,
.example-buttons button:active{
    transform:scale(0.98);
}

.primary{

    background:
    linear-gradient(
    135deg,
    var(--cyan),
    var(--blue)
    );

    color:black;

    box-shadow:
    0 10px 30px rgba(0,212,255,0.18);
}

.primary:hover{
    transform:translateY(-3px);
}

.secondary{

    background:rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    color:white;
}

.secondary:hover{
    background:rgba(255,255,255,0.08);
}

.trust-bar{

    margin-top:50px;

    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.trust-pill{

    padding:10px 16px;

    border-radius:999px;

    background:rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);

    color:var(--muted);

    font-size:0.9rem;
}

/* =========================================================
DASHBOARD
========================================================= */

.dashboard{

    background:rgba(15,20,35,0.82);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:30px;

    padding:30px;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    box-shadow:var(--shadow);

    animation:float 5s ease-in-out infinite;
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

}

.dashboard-top{

    display:flex;

    justify-content:space-between;
    align-items:center;

    gap:20px;

    margin-bottom:30px;
}

.live{

    display:flex;
    align-items:center;
    gap:10px;

    color:var(--green);

    font-size:0.9rem;
}

.live-dot{

    width:10px;
    height:10px;

    background:var(--green);

    border-radius:50%;

    animation:pulse 1.5s infinite;
}

@keyframes pulse{

    0%{
        opacity:0.4;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0.4;
    }

}

.threat-card,
.metric,
.result-box,
.feature,
.feed,
.scanner-card,
.trust-box{

    background:var(--card);

    border:
    1px solid var(--border);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    box-shadow:var(--shadow);
}

/* =========================================================
CARDS
========================================================= */

.threat-card,
.metric,
.result-box,
.feature,
.trust-box{

    border-radius:24px;
}

.threat-card,
.metric,
.result-box,
.feature{
    padding:28px;
}

/* =========================================================
TRUST SECTION
========================================================= */

.trust-section{

    width:100%;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

    padding:0 7% 100px;
}

.trust-box{

    padding:35px;

    text-align:center;

    transition:0.3s;
}

.trust-box:hover{
    transform:translateY(-4px);
}

/* =========================================================
SECTION TITLES
========================================================= */

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title span{

    color:var(--cyan);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:0.8rem;
}

.section-title h2{

    font-family:'Syne',sans-serif;

    font-size:clamp(2rem,5vw,4rem);

    margin-top:14px;
}

/* =========================================================
SCANNER
========================================================= */

.scanner-card{

    width:100%;
    max-width:900px;

    margin:auto;

    border-radius:32px;

    padding:40px;

    position:relative;

    overflow:hidden;
}



.scanner-card::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(0,212,255,0.03),
    transparent,
    rgba(139,92,246,0.03)
    );

    pointer-events:none;
}



textarea{

    width:100%;

    min-height:190px;

    background:rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:20px;

    padding:24px;

    color:white;

    font-size:1rem;

    resize:none;

    outline:none;

    transition:0.3s;
}

textarea:focus{

    border-color:rgba(0,212,255,0.3);

    box-shadow:
    0 0 0 4px rgba(0,212,255,0.08);
}

.example-buttons{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin:22px 0 28px;
}

.example-buttons button{

    padding:12px 16px;

    border-radius:12px;

    border:
    1px solid rgba(255,255,255,0.08);

    background:rgba(255,255,255,0.04);

    color:var(--muted);

    cursor:pointer;

    transition:0.3s;
}

.example-buttons button:hover{
    color:white;
}

.scan-btn{

    width:100%;

    min-height:58px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    var(--cyan),
    var(--blue)
    );

    color:black;

    font-size:1rem;
    font-weight:800;

    cursor:pointer;

    transition:0.3s;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    box-shadow:
    0 10px 30px rgba(0,212,255,0.12);
}

.scan-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 14px 40px rgba(0,212,255,0.18);
}

/* =========================================================
RESULTS
========================================================= */

.result-card{

    margin-top:35px;

    background:rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    padding:35px;

    display:none;

    position:relative;

    overflow:hidden;
}

.result-card::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(0,212,255,0.03),
    transparent,
    rgba(139,92,246,0.03)
    );

    pointer-events:none;
}

.result-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-top:30px;
}

.result-top{

    display:flex;

    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    gap:20px;
}

.score{

    font-size:4rem;

    font-family:'Syne',sans-serif;

    line-height:1;
}

.confidence{

    margin-top:8px;

    font-size:0.95rem;

    color:var(--muted);
}

/* =========================================================
THREAT BADGES
========================================================= */

.threat-badge{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    font-size:0.85rem;
    font-weight:700;

    letter-spacing:1px;

    border:1px solid transparent;
}

.safe{

    background:rgba(74,222,128,0.12);

    color:var(--green);

    border-color:rgba(74,222,128,0.2);
}

.warn{

    background:rgba(250,204,21,0.12);

    color:var(--yellow);

    border-color:rgba(250,204,21,0.2);
}

.danger{

    background:rgba(248,113,113,0.12);

    color:var(--red);

    border-color:rgba(248,113,113,0.2);
}

.low{

background: rgba(255, 193, 7, 0.12);

color: #facc15;

border: 1px solid rgba(250, 204, 21, 0.25);

}

/* =========================================================
RESULT BOXES
========================================================= */

.result-box{

    padding:28px;

    border-radius:24px;

    background:var(--card);

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    transition:0.3s ease;

    position:relative;

    overflow:hidden;
}

.result-box::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:1px;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(0,212,255,0.35),
    transparent
    );

    opacity:0;

    transition:0.3s;
}

.result-box:hover{

    transform:translateY(-4px);

    border-color:rgba(0,212,255,0.18);

    box-shadow:
    0 10px 35px rgba(0,212,255,0.08);
}

.result-box:hover::before{
    opacity:1;
}

.result-box h4{

    margin-bottom:14px;

    font-size:1rem;

    font-weight:700;

    color:white;
}

#keywords,
#analysis,
#recommendation,
#threatSummary,
#detectedUrlsBox{

    line-height:1.8;

    color:var(--muted);

    word-break:break-word;
}

/* =========================================================
TIMELINE
========================================================= */

.timeline{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:10px;
}

.timeline div{

    padding:12px 14px;

    border-radius:14px;

    background:rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);

    font-size:0.94rem;

    line-height:1.5;

    color:var(--muted);

    transition:0.3s;
}

.timeline div:hover{

    transform:translateX(3px);

    border-color:rgba(0,212,255,0.12);

    color:white;
}

/* =========================================================
SCAN STATUS
========================================================= */

.scan-status{

    display:none;

    margin-top:24px;
}

.status-line{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    font-size:0.95rem;

    color:var(--muted);

    min-height:24px;
}

.progress{

    width:100%;

    height:10px;

    background:rgba(255,255,255,0.06);

    border-radius:999px;

    overflow:hidden;

    margin-top:12px;
}

.progress-bar{

    width:0%;

    height:100%;

    background:
    linear-gradient(
    90deg,
    var(--cyan),
    var(--blue)
    );

    transition:0.4s;
}

/* =========================================================
SPINNER
========================================================= */

.spinner{

    width:18px;
    height:18px;

    border:
    2px solid rgba(0,0,0,0.2);

    border-top:
    2px solid black;

    border-radius:50%;

    animation:spin 0.8s linear infinite;
}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}

/* =========================================================
FEATURES
========================================================= */

.features{

    width:100%;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;
}

.feature{
    transition:0.35s;
}

.feature:hover{
    transform:translateY(-6px);
}




/* =========================================================
BLOG SECTION
========================================================= */

#blog .feature{

position:relative;

overflow:hidden;
}

#blog .feature::before{

content:'';

position:absolute;

top:0;
left:0;

width:100%;
height:4px;

background:
linear-gradient(
90deg,
var(--cyan),
var(--purple)
);
}

#blog .feature:hover{

transform:
translateY(-8px);

box-shadow:
0 20px 50px rgba(0,212,255,0.12);
}




/* =========================================================
FEED
========================================================= */

.feed{

    width:100%;
    max-width:900px;

    margin:auto;

    border-radius:28px;

    padding:35px;
}

.feed-item{

    display:flex;

    justify-content:space-between;
    align-items:center;

    gap:20px;

    padding:18px 0;

    border-bottom:
    1px solid rgba(255,255,255,0.05);

    transition:0.3s ease;
}

.feed-item:hover{

    transform:translateX(4px);

    border-color:rgba(0,212,255,0.15);
}

.feed-item:last-child{
    border-bottom:none;
}

.feed-left{

    display:flex;
    align-items:center;
    gap:12px;
}

.feed-left span{
    word-break:break-word;
}

.feed-dot{

    width:10px;
    height:10px;

    background:var(--cyan);

    border-radius:50%;
}

/* =========================================================
FOOTER
========================================================= */

footer{

    padding:50px 7%;

    text-align:center;

    border-top:
    1px solid rgba(255,255,255,0.05);

    color:var(--muted);
}

footer h3{

    font-family:'Syne',sans-serif;

    margin-bottom:10px;
}

.footer-links{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:25px;

    margin-top:20px;
}

.footer-links a{

    color:var(--muted);

    text-decoration:none;

    transition:0.3s;
}

.footer-links a:hover{
    color:white;
}

.copyright{

    margin-top:25px;

    opacity:0.7;

    font-size:0.9rem;
}

/* =========================================================
LARGE TABLETS
========================================================= */

@media(max-width:1100px){

.hero-wrapper{

    grid-template-columns:1fr;

    gap:50px;
}

.features,
.trust-section{
    grid-template-columns:1fr;
}

.dashboard{

    width:100%;
    max-width:700px;

    margin:auto;
}

.hero-left{
    max-width:100%;
}

}

/* =========================================================
TABLETS
========================================================= */

@media(max-width:800px){

.result-grid{
    grid-template-columns:1fr;
}

.hero{
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.trust-bar{
    justify-content:center;
}

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:700px){

nav{
    padding:0 5%;
}

.nav-links{
    display:none;
}

section{
    padding:90px 5%;
}

.hero{

    min-height:auto;

    padding-top:120px;

    overflow:hidden;
}

.hero h1{

    font-size:3rem;

    letter-spacing:-2px;
}

.hero h2{
    font-size:1.05rem;
}

.hero p{
    font-size:0.96rem;
}

.hero-buttons{
    flex-direction:column;
}

.btn{
    width:100%;
}

.dashboard,
.scanner-card,
.feed{
    padding:24px 18px;
}

.result-card{
    padding:24px;
}

.score{
    font-size:3rem;
}

.feed-item{

    flex-direction:column;

    align-items:flex-start;
}

.dashboard,
.hero-logo{
    animation:none;
}

.dashboard,
.scanner-card,
.feed,
.feature,
.result-box,
.threat-card,
.metric,
.trust-box,
nav{

    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    background:rgba(15,20,35,0.95);
}

}

/* =========================================================
SMALL MOBILE
========================================================= */

@media(max-width:480px){

.hero h1{

    font-size:clamp(2.1rem,9vw,2.8rem);

    line-height:1.05;
}

.section-title h2{
    font-size:2rem;
}

.trust-box,
.feature,
.result-box,
.metric,
.threat-card{
    padding:22px;
}

textarea{

    min-height:160px;

    padding:18px;
}

.scan-btn{
    min-height:54px;
}

.hero-logo{
    width:72px;
}

.scanner-card,
.result-card,
.feed,
.dashboard{
    border-radius:22px;
}

}

/* =========================================================
REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

*{

    animation:none !important;

    transition:none !important;

    scroll-behavior:auto !important;
}

}









/* =========================================================
BLOG LINKS
========================================================= */

.blog-link{

display:inline-block;

margin-top:20px;

color:var(--cyan);

text-decoration:none;

font-weight:700;

transition:0.3s;
}

.blog-link:hover{

color:white;

transform:translateX(4px);
}

/* =========================================================
FOOTER
========================================================= */

.footer{

padding:80px 7% 40px;

border-top:
1px solid rgba(255,255,255,0.06);

background:
linear-gradient(
180deg,
rgba(255,255,255,0.02),
rgba(0,212,255,0.03)
);

position:relative;

overflow:hidden;

}

.footer::before{

content:'';

position:absolute;

width:350px;
height:350px;

background:
rgba(0,212,255,0.08);

filter:blur(120px);

top:-100px;
right:-100px;

pointer-events:none;
}



.footer-container{

display:grid;

grid-template-columns:
2fr 1fr 1fr 1fr;

gap:40px;
}

.footer-brand h2{

font-family:'Syne',sans-serif;

font-size:1.6rem;
}

.footer-brand span{
color:var(--cyan);
}

.footer-brand p{

margin-top:20px;

color:var(--muted);

line-height:1.8;

max-width:420px;
}

.footer-column{

display:flex;

flex-direction:column;

gap:14px;
}

.footer-column h4{

margin-bottom:10px;

color:white;
}

.footer-column a{

text-decoration:none;

color:var(--muted);

transition:0.3s;
}


.footer-column a:hover{

color:white;

transform:translateX(4px);
}

.footer-bottom{

margin-top:60px;

padding-top:25px;

border-top:
1px solid rgba(255,255,255,0.06);

display:flex;

justify-content:space-between;

flex-wrap:wrap;

gap:20px;
}

.footer-bottom p{

color:var(--muted);

font-size:0.95rem;
}



/* =========================================================
SECTION DIVIDER
========================================================= */

.section-divider{

width:100%;
height:1px;

background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,0.08),
transparent
);

margin-top:40px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:900px){

.footer-container{

grid-template-columns:
1fr 1fr;
}

}

@media(max-width:700px){

.footer-container{

grid-template-columns:1fr;
}

.footer-bottom{

flex-direction:column;

align-items:flex-start;
}

}





/* =========================================================
PREMIUM FOOTER IMPROVEMENTS
========================================================= */

.footer{

position:relative;

overflow:hidden;

background:
linear-gradient(
180deg,
rgba(255,255,255,0.02),
rgba(0,212,255,0.03)
);
}

.footer::before{

content:'';

position:absolute;

top:-120px;
right:-120px;

width:320px;
height:320px;

background:
rgba(0,212,255,0.08);

filter:blur(120px);

pointer-events:none;
}

.footer-socials{

display:flex;

gap:14px;

margin-top:28px;

flex-wrap:wrap;
}

.footer-socials a{

padding:10px 18px;

border-radius:999px;

text-decoration:none;

background:
rgba(255,255,255,0.04);

border:
1px solid rgba(255,255,255,0.08);

color:var(--muted);

font-size:0.92rem;

transition:0.3s;
}

.footer-socials a:hover{

transform:translateY(-3px);

color:white;

border-color:
rgba(0,212,255,0.2);

box-shadow:
0 10px 25px rgba(0,212,255,0.12);
}

.footer-column a:hover{

color:white;

transform:translateX(4px);
}

.footer-highlight{

color:var(--cyan);

font-weight:700;
}






/* =========================================================
BLOG ARTICLE PAGE
THREATLENS AI
========================================================= */

.blog-content{

max-width:950px;

margin:auto;

padding:120px 7% 100px;
}

/* =========================================================
ARTICLE
========================================================= */

.blog-article{

position:relative;
z-index:2;
}

/* =========================================================
TITLE
========================================================= */

.blog-article h1{

font-family:'Syne',sans-serif;

font-size:clamp(2.8rem,6vw,4.6rem);

line-height:1.1;

margin-bottom:35px;

background:
linear-gradient(
135deg,
white,
#9be7ff
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* =========================================================
META
========================================================= */

.blog-meta{

display:flex;

gap:16px;

flex-wrap:wrap;

margin-bottom:45px;
}

.blog-meta span{

padding:12px 18px;

border-radius:999px;

background:
rgba(255,255,255,0.04);

border:
1px solid rgba(255,255,255,0.06);

color:var(--muted);

font-size:0.9rem;

backdrop-filter:blur(8px);
}

/* =========================================================
HEADINGS
========================================================= */

.blog-article h2{

margin-top:90px;

margin-bottom:28px;

font-size:2.2rem;

line-height:1.3;

font-family:'Syne',sans-serif;

color:white;
}

.blog-article h3{

margin-top:50px;

margin-bottom:20px;

font-size:1.4rem;

font-family:'Syne',sans-serif;
}

/* =========================================================
TEXT
========================================================= */

.blog-article p{

line-height:2;

color:var(--muted);

margin-bottom:28px;

font-size:1.06rem;
}

/* =========================================================
LISTS
========================================================= */

.blog-article ul,
.blog-article ol{

padding-left:28px;

margin-bottom:35px;
}

.blog-article li{

margin-bottom:16px;

line-height:1.9;

color:var(--muted);

font-size:1.03rem;
}

/* =========================================================
BLOG IMAGES
========================================================= */

.blog-image{

margin:55px 0;

border-radius:30px;

overflow:hidden;

border:
1px solid rgba(255,255,255,0.08);

background:
rgba(255,255,255,0.03);

box-shadow:
0 25px 60px rgba(0,0,0,0.35);

position:relative;
}

.blog-image::before{

content:'';

position:absolute;

inset:0;

background:
linear-gradient(
180deg,
transparent,
rgba(0,0,0,0.12)
);

pointer-events:none;
}

.blog-image img{

width:100%;

display:block;

object-fit:cover;

transition:0.5s;
}

.blog-image:hover img{

transform:scale(1.03);
}

.image-caption{

margin-top:16px;

font-size:0.95rem;

color:var(--muted);

text-align:center;

line-height:1.7;
}

/* =========================================================
WARNING BOX
========================================================= */

.warning-box{

padding:32px;

border-radius:28px;

background:
rgba(255,80,80,0.08);

border:
1px solid rgba(255,80,80,0.18);

margin:45px 0;

line-height:2;

color:#ffdede;

position:relative;

overflow:hidden;
}

.warning-box::before{

content:'';

position:absolute;

top:-60px;
right:-60px;

width:180px;
height:180px;

background:
rgba(255,80,80,0.08);

filter:blur(80px);
}

/* =========================================================
STAT HIGHLIGHT
========================================================= */

.stat-highlight{

padding:34px;

border-radius:30px;

background:
rgba(0,212,255,0.08);

border:
1px solid rgba(0,212,255,0.18);

margin:45px 0;

line-height:2;

font-size:1.08rem;

color:#dff9ff;

position:relative;

overflow:hidden;
}

.stat-highlight::before{

content:'';

position:absolute;

top:-80px;
right:-80px;

width:220px;
height:220px;

background:
rgba(0,212,255,0.08);

filter:blur(100px);
}

/* =========================================================
EMERGENCY BOX
========================================================= */

.emergency-box{

padding:40px;

border-radius:32px;

background:
rgba(255,0,80,0.08);

border:
1px solid rgba(255,0,80,0.2);

margin:50px 0;

text-align:center;

position:relative;

overflow:hidden;

box-shadow:
0 20px 60px rgba(255,0,80,0.08);
}

.emergency-box::before{

content:'';

position:absolute;

top:-100px;
left:-100px;

width:250px;
height:250px;

background:
rgba(255,0,80,0.08);

filter:blur(120px);
}

.emergency-box h3{

font-size:1.6rem;

margin-bottom:20px;

font-family:'Syne',sans-serif;
}

.emergency-box p{

font-size:1.1rem;

margin-bottom:12px;

color:white;
}

/* =========================================================
AUTHOR BOX
========================================================= */

.author-box{

margin-top:100px;

padding:45px;

border-radius:32px;

background:
rgba(255,255,255,0.03);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:blur(12px);

position:relative;

overflow:hidden;
}

.author-box::before{

content:'';

position:absolute;

top:-80px;
right:-80px;

width:240px;
height:240px;

background:
rgba(139,92,246,0.08);

filter:blur(120px);
}

.author-box h3{

font-size:1.8rem;

margin-bottom:22px;

font-family:'Syne',sans-serif;
}

.author-box p{

margin-bottom:20px;
}

/* =========================================================
STRONG TEXT
========================================================= */

.blog-article strong{

color:white;
}

/* =========================================================
BLOCKQUOTE
========================================================= */

.blog-article blockquote{

margin:45px 0;

padding:30px;

border-left:
4px solid var(--cyan);

background:
rgba(255,255,255,0.03);

border-radius:20px;

font-size:1.1rem;

line-height:1.9;

color:#dff9ff;
}

/* =========================================================
LINKS
========================================================= */

.blog-article a{

color:var(--cyan);

text-decoration:none;

transition:0.3s;
}

.blog-article a:hover{

color:white;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:900px){

.blog-content{

padding:100px 6% 90px;
}

.blog-article h1{

font-size:3rem;
}

.blog-article h2{

font-size:1.8rem;
}

}

@media(max-width:700px){

.blog-content{

padding:90px 5% 80px;
}

.blog-article h1{

font-size:2.4rem;

line-height:1.2;
}

.blog-article h2{

font-size:1.55rem;
}

.blog-meta{

gap:10px;
}

.blog-meta span{

font-size:0.82rem;

padding:10px 14px;
}

.warning-box,
.stat-highlight,
.emergency-box,
.author-box{

padding:28px;
}

.blog-article p,
.blog-article li{

font-size:1rem;
}

}




/* =========================================================
BLOG PAGE
========================================================= */

.blog-section{

padding:100px 7%;
}

.blog-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:30px;

margin-top:60px;
}

/* =========================================================
BLOG CARD
========================================================= */

.blog-card{

position:relative;

padding:28px;

border-radius:30px;

background:
rgba(255,255,255,0.03);

border:
1px solid rgba(255,255,255,0.08);

overflow:hidden;

transition:0.4s;

backdrop-filter:blur(10px);
}

.blog-card:hover{

transform:translateY(-8px);

border-color:
rgba(0,212,255,0.18);

box-shadow:
0 25px 60px rgba(0,0,0,0.35);
}

.blog-card-image{

width:100%;

height:220px;

border-radius:20px;

overflow:hidden;

margin:22px 0;
}

.blog-card-image img{

width:100%;
height:100%;

object-fit:cover;

transition:0.5s;
}

.blog-card:hover img{

transform:scale(1.05);
}

.blog-card h3{

font-size:1.5rem;

margin-bottom:18px;

font-family:'Syne',sans-serif;

line-height:1.4;
}

.blog-card p{

line-height:1.9;

color:var(--muted);

margin-bottom:25px;
}

.blog-card a{

display:inline-flex;

align-items:center;

gap:8px;

text-decoration:none;

color:var(--cyan);

font-weight:600;

transition:0.3s;
}

.blog-card a:hover{

gap:14px;

color:white;
}

/* =========================================================
FEATURED SECTION
========================================================= */

.featured{

padding:20px 7% 100px;
}

.featured-card{

display:grid;

grid-template-columns:
1.1fr 1fr;

gap:50px;

align-items:center;

padding:40px;

border-radius:36px;

background:
rgba(255,255,255,0.03);

border:
1px solid rgba(255,255,255,0.08);

overflow:hidden;

position:relative;

backdrop-filter:blur(10px);
}

.featured-card::before{

content:'';

position:absolute;

top:-120px;
right:-120px;

width:300px;
height:300px;

background:
rgba(0,212,255,0.08);

filter:blur(120px);
}

.featured-image{

height:100%;
min-height:420px;

border-radius:28px;

overflow:hidden;
}

.featured-content{

position:relative;
z-index:2;
}

.featured-content h2{

font-size:3rem;

margin:20px 0;

line-height:1.2;

font-family:'Syne',sans-serif;
}

.featured-content p{

line-height:2;

color:var(--muted);

font-size:1.05rem;
}

/* =========================================================
TAG
========================================================= */

.tag{

display:inline-flex;

align-items:center;

padding:10px 18px;

border-radius:999px;

background:
rgba(0,212,255,0.08);

border:
1px solid rgba(0,212,255,0.15);

color:var(--cyan);

font-size:0.85rem;

font-weight:700;

letter-spacing:1px;
}

/* =========================================================
READ BUTTON
========================================================= */

.read-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 28px;

border-radius:999px;

margin-top:35px;

text-decoration:none;

font-weight:700;

background:
linear-gradient(
135deg,
var(--cyan),
#7c4dff
);

color:white;

transition:0.35s;

box-shadow:
0 15px 40px rgba(0,212,255,0.18);
}

.read-btn:hover{

transform:translateY(-4px);

box-shadow:
0 20px 50px rgba(0,212,255,0.25);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1000px){

.featured-card{

grid-template-columns:1fr;
}

.featured-content h2{

font-size:2.5rem;
}

}

@media(max-width:700px){

.blog-section,
.featured{

padding-left:5%;
padding-right:5%;
}

.blog-card{

padding:24px;
}

.featured-card{

padding:24px;
}

.featured-content h2{

font-size:2rem;
}

.blog-card-image{

height:200px;
}

}



/* =========================================================
ARTICLE HERO
========================================================= */

.article-hero{

padding:
180px 7% 100px;

position:relative;

overflow:hidden;
}

.article-hero::before{

content:'';

position:absolute;

top:-200px;
right:-200px;

width:500px;
height:500px;

background:
rgba(0,212,255,0.08);

filter:blur(140px);

pointer-events:none;
}

.article-hero-content{

max-width:1100px;

margin:auto;

position:relative;

z-index:2;
}

/* =========================================================
TITLE
========================================================= */

.article-title{

font-family:'Syne',sans-serif;

font-size:
clamp(3.5rem,8vw,7rem);

line-height:1.02;

letter-spacing:-4px;

margin:
25px 0 30px;
}

.article-title .gradient{

background:
linear-gradient(
135deg,
var(--cyan),
#7c4dff
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.article-subtitle{

font-size:1.25rem;

color:var(--cyan);

margin-bottom:25px;

font-weight:600;
}

.article-description{

max-width:850px;

font-size:1.1rem;

line-height:2;

color:var(--muted);

margin-bottom:40px;
}

/* =========================================================
ACTIONS
========================================================= */

.article-actions{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:60px;
}

/* =========================================================
STATS
========================================================= */

.hero-stats{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:22px;
}

.hero-stat{

padding:30px;

border-radius:28px;

background:
rgba(255,255,255,0.03);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:blur(10px);

transition:0.35s;
}

.hero-stat:hover{

transform:translateY(-6px);

border-color:
rgba(0,212,255,0.2);

box-shadow:
0 20px 50px rgba(0,0,0,0.35);
}

.hero-stat h3{

font-size:2rem;

margin-bottom:12px;

font-family:'Syne',sans-serif;

color:white;
}

.hero-stat p{

color:var(--muted);
}

/* =========================================================
ARTICLE LAYOUT IMPROVEMENTS
========================================================= */

.blog-content{

max-width:900px;

margin:auto;

padding:
40px 7% 120px;
}

.blog-article h2{

font-size:2.2rem;

line-height:1.3;

margin:
90px 0 25px;
}

.blog-article p{

font-size:1.07rem;

line-height:2;
}

/* =========================================================
IMAGE IMPROVEMENTS
========================================================= */

.blog-image{

margin:60px 0;

border-radius:32px;

overflow:hidden;

border:
1px solid rgba(255,255,255,0.08);

background:
rgba(255,255,255,0.03);

box-shadow:
0 30px 70px rgba(0,0,0,0.4);
}

.blog-image img{

width:100%;

display:block;

transition:0.5s;
}

.blog-image:hover img{

transform:scale(1.03);
}

.image-caption{

text-align:center;

margin-top:16px;

color:var(--muted);

font-size:0.92rem;
}

/* =========================================================
NAVBAR IMPROVEMENT
========================================================= */

nav{

backdrop-filter:blur(16px);

background:
rgba(5,10,25,0.75);

border-bottom:
1px solid rgba(255,255,255,0.05);
}

/* =========================================================
FOOTER IMPROVEMENT
========================================================= */

.footer{

margin-top:100px;

border-top:
1px solid rgba(255,255,255,0.06);
}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

.article-hero{

padding:
150px 5% 80px;
}

.article-title{

font-size:3.2rem;

letter-spacing:-2px;
}

.article-description{

font-size:1rem;
}

.blog-content{

padding:
20px 5% 100px;
}

.hero-stat{

padding:24px;
}

}







/* =========================================================
GLOBAL MOBILE FIXES
========================================================= */

html,
body{

overflow-x:hidden;
}

img{

max-width:100%;

height:auto;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:1024px){

.hero-wrapper,
.featured-card{

grid-template-columns:1fr !important;

gap:50px;
}

.dashboard{

width:100%;
}

.hero-left{

max-width:100%;
}

.article-title{

font-size:4.5rem !important;
}

}

/* =========================================================
MOBILE NAVBAR
========================================================= */

@media(max-width:768px){

nav{

padding:18px 5%;
}

.nav-links{

gap:14px;

flex-wrap:wrap;

justify-content:flex-end;
}

.nav-links a{

font-size:0.92rem;
}

.logo{

font-size:1rem;
}

.logo img{

width:42px;
height:42px;
}

}

/* =========================================================
MOBILE HERO
========================================================= */

@media(max-width:768px){

.hero,
.article-hero{

padding:
140px 5% 80px !important;
}

.hero-left h1,
.article-title{

font-size:3rem !important;

line-height:1.1 !important;

letter-spacing:-2px !important;
}

.hero-left h2,
.article-subtitle{

font-size:1.05rem;
}

.hero-left p,
.article-description{

font-size:1rem;

line-height:1.9;
}

.hero-buttons,
.article-actions{

flex-direction:column;

align-items:flex-start;
}

.btn{

width:100%;

justify-content:center;
}

.hero-stats{

grid-template-columns:1fr;
}

}

/* =========================================================
BLOG GRID MOBILE
========================================================= */

@media(max-width:768px){

.blog-grid{

grid-template-columns:1fr;
}

.blog-card{

padding:22px;
}

.blog-card-image{

height:200px;
}

.featured-card{

padding:24px;
}

.featured-content h2{

font-size:2rem;
}

}

/* =========================================================
ARTICLE MOBILE
========================================================= */

@media(max-width:768px){

.blog-content{

padding:
20px 5% 90px;
}

.blog-article h1{

font-size:2.5rem !important;

line-height:1.2;
}

.blog-article h2{

font-size:1.6rem;

line-height:1.4;
}

.blog-article p,
.blog-article li{

font-size:1rem;

line-height:1.9;
}

.warning-box,
.stat-highlight,
.emergency-box,
.author-box{

padding:24px;

border-radius:24px;
}

.blog-image{

margin:40px 0;
}

.image-caption{

font-size:0.85rem;
}

}

/* =========================================================
FOOTER MOBILE
========================================================= */

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

gap:40px;
}

.footer-bottom{

flex-direction:column;

gap:12px;

text-align:center;
}

.footer-socials{

justify-content:center;
}

}

/* =========================================================
SMALL MOBILE DEVICES
========================================================= */

@media(max-width:480px){

.hero-left h1,
.article-title{

font-size:2.4rem !important;
}

.hero-left p,
.article-description{

font-size:0.95rem;
}

.hero-stat h3{

font-size:1.7rem;
}

.blog-article h2{

font-size:1.4rem;
}

.btn{

padding:14px 20px;
}

.nav-links{

justify-content:center;
}

}

/* =========================================================
SMOOTH SCROLLING
========================================================= */

html{

scroll-behavior:smooth;
}

/* =========================================================
SMOOTH TRANSITIONS
========================================================= */

*{

-webkit-tap-highlight-color:transparent;
}

button,
a,
.blog-card,
.feature,
.hero-stat,
.featured-card{

transition:
all 0.35s ease;
}

/* =========================================================
BETTER MOBILE TOUCH
========================================================= */

button,
a{

touch-action:manipulation;
}