:root{
    --gx-black:#0b0b0f;
    --gx-dark:#121218;
    --gx-red:#ff1b2d;
    --gx-red-dark:#cc1623;
    --gx-text:#e6e6eb;
    --gx-muted:#9a9aa3;
    --gx-border:#1c1c24;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
    background:linear-gradient(135deg,#121218 0%,#0b0b0f 100%);
    color:var(--gx-text);
    font-family:'Inter',system-ui,sans-serif;
}

/* HEADER */
header{
    position:fixed;
    top:0;
    width:100%;
    height:72px;
    padding:0 32px;
    background:rgba(11,11,15,.96);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--gx-border);
    display:flex;
    align-items:center;
    justify-content:space-between;
    z-index:10;
}

header img{height:30px}

.header-btn{
    background:var(--gx-red);
    color:#fff;
    padding:10px 26px;
    border-radius:999px;
    font-weight:700;
    font-size:14px;
}

/* HERO */
.hero{
    min-height:78vh;
    padding:26px 32px 8px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 30% 50%,rgba(255,27,45,.14),transparent 55%);
}

.hero-inner{
    max-width:1320px;
    width:100%;
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:56px;
    align-items:center;
    z-index:1;
}

/* TEXT */
.hero-content{
    max-width:640px;
    text-align:center;
    margin:0 auto;
}

.hero-content h1{
    font-size:46px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:10px;
}

.hero-content h2{
    font-size:42px;
    font-weight:900;
    color:var(--gx-red);
    margin-bottom:16px;
}

.hero-subtitle{
    font-size:18px;
    line-height:1.55;
    color:var(--gx-muted);
}

/* IMAGE */
.hero-image{
    height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-image img{
    max-width:115%;
    max-height:115%;
    object-fit:contain;
    filter:drop-shadow(0 40px 80px rgba(255,27,45,.3));
}

/* CTA */
.cta-block{
    grid-column:1 / -1;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
}

.primary-btn{
    padding:16px 44px;
    font-size:16px;
    font-weight:800;
    background:var(--gx-red);
    color:#fff;
    border-radius:999px;
    transition:.25s;
}

.primary-btn:hover{
    background:var(--gx-red-dark);
    transform:translateY(-2px);
}

.tagline{
    font-size:17px;
    font-weight:600;
    background:linear-gradient(90deg,#fff,var(--gx-red));
    -webkit-background-clip:text;
    color:transparent;
}

/* STATS */
.stats{
    display:flex;
    gap:44px;
}

.stat-number{
    font-size:30px;
    font-weight:900;
    color:var(--gx-red);
    text-align:center;
}

.stat-label{
    font-size:13px;
    color:var(--gx-muted);
    text-align:center;
}

/* FOOTER */
footer{
    border-top:1px solid var(--gx-border);
    padding:22px;
    text-align:center;
    color:var(--gx-muted);
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .hero-inner{grid-template-columns:1fr}
    .hero-image{height:320px}
    .stats{flex-direction:column;gap:16px}
}
