/* =====================================================
   Techymize Engine v1
===================================================== */

:root{

    --bg:#040404;
    --bg2:#0b0b0b;

    --glass:rgba(255,255,255,.06);

    --glass-border:rgba(255,255,255,.09);

    --red:#ff2d2d;

    --red-glow:rgba(255,45,45,.35);

    --text:#ffffff;

    --muted:#a5a5a5;

    --radius:22px;

    --transition:.35s ease;

    --max-width:1400px;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:Inter,sans-serif;

    overflow-x:hidden;

}

/* ===========================================
BACKGROUND
=========================================== */

#background{

    position:fixed;

    inset:0;

    z-index:-10;

    background:

        radial-gradient(circle at 15% 15%,rgba(255,45,45,.18),transparent 28%),

        radial-gradient(circle at 80% 70%,rgba(255,255,255,.03),transparent 35%),

        linear-gradient(180deg,#020202,#090909);

}

#background::before{

    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:60px 60px;

    animation:gridMove 18s linear infinite;

}

@keyframes gridMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(60px);

    }

}

body::after{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    background:

        radial-gradient(circle,

            transparent 0%,

            rgba(0,0,0,.18) 55%,

            rgba(0,0,0,.82) 100%);

}

/* ===========================================
NAVBAR
=========================================== */

header{

    position:fixed;

    top:28px;

    width:100%;

    display:flex;

    justify-content:center;

    z-index:999;

}

.navbar{

    width:min(94%,var(--max-width));

    height:76px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 34px;

    background:var(--glass);

    border:1px solid var(--glass-border);

    border-radius:24px;

    backdrop-filter:blur(18px);

    box-shadow:

        0 10px 40px rgba(0,0,0,.35);

}

.logo{

    text-decoration:none;

    color:white;

    font-family:"Space Grotesk",sans-serif;

    font-size:28px;

    font-weight:700;

    letter-spacing:2px;

}

.logo-t{

    color:var(--red);

}

.nav-links{

    display:flex;

    list-style:none;

    gap:38px;

}

.nav-links a{

    text-decoration:none;

    color:#d9d9d9;

    transition:var(--transition);

}

.nav-links a:hover{

    color:white;

}

.cta{

    padding:14px 28px;

    text-decoration:none;

    color:white;

    background:linear-gradient(135deg,#ff2d2d,#ff5555);

    border-radius:14px;

    transition:var(--transition);

}

.cta:hover{

    transform:translateY(-2px);

    box-shadow:

        0 0 35px var(--red-glow);

}

/* ===========================================
HERO
=========================================== */

.hero{

    min-height:100vh;

    width:min(94%,var(--max-width));

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-content{

    padding-top:90px;

}

.tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#d5d5d5;

    padding:12px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    margin-bottom:30px;

}

.hero h1{

    font-family:"Space Grotesk",sans-serif;

    font-size:84px;

    line-height:1.02;

    margin-bottom:30px;

}

.hero h1 span{

    color:var(--red);

}

.hero p{

    color:var(--muted);

    max-width:600px;

    line-height:1.9;

    font-size:19px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:60px;

}

.btn-primary{

    background:linear-gradient(135deg,#ff2d2d,#ff4c4c);

    color:white;

}

.btn-secondary{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:white;

}

.btn-primary,

.btn-secondary{

    padding:18px 34px;

    border-radius:16px;

    text-decoration:none;

    transition:var(--transition);

}

.btn-primary:hover,

.btn-secondary:hover{

    transform:translateY(-3px);

}

/* ===========================================
STATS
=========================================== */

.stats{

    display:flex;

    gap:70px;

}

.stats h2{

    font-size:42px;

    font-family:"Space Grotesk";

}

.stats span{

    color:var(--muted);

}

/* ===========================================
RIGHT SIDE
=========================================== */

.hero-scene{

    display:flex;

    justify-content:center;

    align-items:center;

}

#globe-placeholder{

    width:620px;

    height:620px;

}

/* ===========================================
RESPONSIVE
=========================================== */

@media(max-width:1100px){

.hero{

grid-template-columns:1fr;

text-align:center;

padding-top:140px;

}

.hero-content{

padding-top:20px;

}

.hero p{

margin:auto auto 45px;

}

.hero-buttons{

justify-content:center;

}

.stats{

justify-content:center;

}

#globe-placeholder{

width:380px;

height:380px;

margin-top:60px;

}

.nav-links{

display:none;

}

.hero h1{

font-size:60px;

}

}