@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --blue: #087cff;
    --blue-light: #38a7ff;
    --blue-dark: #0054c7;
    --cyan: #00c8ff;

    --white: #ffffff;
    --bg: #f5f9ff;
    --bg2: #edf5ff;

    --text: #101828;
    --muted: #667085;

    --border: rgba(8, 124, 255, .13);

    --shadow:
        0 20px 60px rgba(8, 70, 150, .10);

    --blue-shadow:
        0 20px 60px rgba(8, 124, 255, .22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Vazirmatn", sans-serif;
    direction: rtl;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(0, 153, 255, .10),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f9ff 45%,
            #eef6ff 100%
        );

    color: var(--text);
    overflow-x: hidden;
}

/* =========================================================
   GLOBAL BACKGROUND
========================================================= */

body::before {
    content: "";
    position: fixed;

    width: 600px;
    height: 600px;

    top: -300px;
    left: -250px;

    background:
        radial-gradient(
            circle,
            rgba(0, 153, 255, .18),
            transparent 65%
        );

    filter: blur(20px);
    pointer-events: none;
    z-index: -3;
}

body::after {
    content: "";

    position: fixed;

    width: 500px;
    height: 500px;

    bottom: -250px;
    right: -200px;

    background:
        radial-gradient(
            circle,
            rgba(0, 200, 255, .12),
            transparent 65%
        );

    filter: blur(20px);
    pointer-events: none;
    z-index: -3;
}

/* =========================================================
   MOVING ORBS
========================================================= */

.bg-orbs {
    position: fixed;
    inset: 0;

    pointer-events: none;
    overflow: hidden;

    z-index: -1;
}

.bg-orbs span {
    position: absolute;

    display: block;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255,255,255,.95),
            rgba(0, 153, 255, .35)
        );

    filter: blur(1px);

    opacity: .35;

    animation:
        floatingOrb 12s ease-in-out infinite;
}

.bg-orbs span:nth-child(1) {
    width: 180px;
    height: 180px;

    top: 15%;
    left: 5%;

    animation-duration: 14s;
}

.bg-orbs span:nth-child(2) {
    width: 100px;
    height: 100px;

    top: 55%;
    right: 7%;

    animation-duration: 10s;
    animation-delay: -3s;
}

.bg-orbs span:nth-child(3) {
    width: 60px;
    height: 60px;

    top: 75%;
    left: 20%;

    animation-duration: 8s;
    animation-delay: -5s;
}

@keyframes floatingOrb {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(35px, -40px, 0);
    }

    50% {
        transform: translate3d(-20px, -70px, 0);
    }

    75% {
        transform: translate3d(40px, -25px, 0);
    }
}

/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 850px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 100px 30px 150px;
}

/* LEFT CURVED SHAPE */

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 1000px;

    left: -370px;
    top: -100px;

    background:
        linear-gradient(
            145deg,
            #0077ff,
            #00b9ff
        );

    border-radius: 50%;

    transform: rotate(-15deg);

    box-shadow:
        20px 0 80px rgba(0, 126, 255, .18);

    animation: heroShape 8s ease-in-out infinite;

    z-index: -1;
}

/* RIGHT CURVED SHAPE */

.hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 850px;

    right: -340px;
    bottom: -300px;

    background:
        linear-gradient(
            145deg,
            #00c8ff,
            #087cff
        );

    border-radius: 50%;

    transform: rotate(25deg);

    opacity: .8;

    animation: heroShape2 10s ease-in-out infinite;

    z-index: -1;
}

@keyframes heroShape {

    0%,
    100% {
        transform: rotate(-15deg) translateY(0);
    }

    50% {
        transform: rotate(-12deg) translateY(25px);
    }
}

@keyframes heroShape2 {

    0%,
    100% {
        transform: rotate(25deg) translateY(0);
    }

    50% {
        transform: rotate(20deg) translateY(-30px);
    }
}

/* =========================================================
   EXTRA HERO DECORATION
========================================================= */

.hero-content {
    width: min(1100px, 100%);

    text-align: center;

    position: relative;

    z-index: 2;
}

.hero-content::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(0, 140, 255, .10),
            transparent 70%
        );

    filter: blur(20px);

    z-index: -1;
}

/* =========================================================
   LOGO
========================================================= */

.hero-logo {
    width: 150px;
    height: 150px;

    object-fit: contain;

    margin-bottom: 25px;

    filter:
        drop-shadow(0 15px 30px rgba(0, 120, 255, .25));

    animation:
        logoFloat 4s ease-in-out infinite;

    transition: .4s;
}

.hero-logo:hover {
    transform: scale(1.08) rotate(-3deg);

    filter:
        drop-shadow(0 20px 40px rgba(0, 120, 255, .4));
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
    font-size: clamp(32px, 5vw, 65px);

    line-height: 1.25;

    font-weight: 900;

    letter-spacing: -1.5px;

    margin-bottom: 25px;

    background:
        linear-gradient(
            90deg,
            #071b35,
            #0077ff,
            #00aeea
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero p {
    max-width: 760px;

    margin: 0 auto 40px;

    font-size: 18px;

    line-height: 2;

    color: var(--muted);
}

/* =========================================================
   STATUS
========================================================= */

.hero-status {
    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}

.status-card {
    min-width: 270px;

    padding: 20px 30px;

    background:
        rgba(255, 255, 255, .78);

    backdrop-filter: blur(20px);

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);

    transition: .35s;

    position: relative;

    overflow: hidden;
}

.status-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.status-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 60px rgba(0, 110, 255, .16);
}

.status-card span {
    display: block;

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 7px;
}

.status-card strong {
    font-size: 17px;

    color: #087cff;

    direction: ltr;

    display: block;
}

/* =========================================================
   BUTTON
========================================================= */

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;
}

.btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 210px;

    padding: 17px 35px;

    border-radius: 16px;

    text-decoration: none;

    font-weight: 800;

    font-size: 16px;

    overflow: hidden;

    transition:
        transform .3s,
        box-shadow .3s;
}

.btn.primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0074ff,
            #00baff
        );

    box-shadow:
        0 15px 35px rgba(0, 126, 255, .3);
}

.btn.primary::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transition: .6s;
}

.btn.primary:hover::before {
    left: 100%;
}

.btn.primary:hover {
    transform: translateY(-5px) scale(1.02);

    box-shadow:
        0 22px 45px rgba(0, 126, 255, .4);
}

/* =========================================================
   COMMON SECTIONS
========================================================= */

section:not(.hero) {
    width: min(1200px, calc(100% - 40px));

    margin: 0 auto;

    padding: 100px 0;
  
}

section > h2 {
    text-align: center;

    font-size: clamp(28px, 4vw, 42px);

    font-weight: 900;

    margin-bottom: 55px;

    position: relative;
}

section > h2::after {
    content: "";

    display: block;

    width: 65px;
    height: 5px;

    border-radius: 20px;

    margin: 15px auto 0;

    background:
        linear-gradient(
            90deg,
            #0077ff,
            #00c8ff
        );
}

/* =========================================================
   STATS
========================================================= */

.stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.stat-card {
    padding: 35px 20px;

    text-align: center;

    background:
        rgba(255,255,255,.8);

    border:
        1px solid rgba(0, 120, 255, .10);

    border-radius: 24px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(20px);

    transition: .35s;

    position: relative;

    overflow: hidden;
}

.stat-card::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    top: -50px;
    right: -50px;

    border-radius: 50%;

    background: rgba(0, 145, 255, .08);
}

.stat-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0, 100, 220, .15);
}

.stat-card h2 {
    font-size: 38px;

    font-weight: 900;

    color: #0077ff;

    margin-bottom: 8px;
}

.stat-card span {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

/* =========================================================
   JOBS
========================================================= */

.jobs {
    position: relative;
}

.jobs::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -180px;
    top: 100px;

    border-radius: 50%;

    border: 35px solid rgba(0, 130, 255, .05);

    pointer-events: none;
}

.jobs-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.job-card {
    min-height: 180px;

    padding: 28px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.95),
            rgba(241,248,255,.9)
        );

    border:
        1px solid rgba(0, 120, 255, .10);

    box-shadow: var(--shadow);

    transition:
        transform .35s,
        box-shadow .35s;

    position: relative;

    overflow: hidden;
}

.job-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    left: -45px;
    bottom: -45px;

    border-radius: 50%;

    background:
        rgba(0, 140, 255, .08);

    transition: .4s;
}

.job-card:hover {
    transform:
        translateY(-10px)
        rotateX(2deg);

    box-shadow:
        0 25px 60px rgba(0, 120, 255, .18);
}

.job-card:hover::after {
    transform: scale(2);
}

.job-card h3 {
    font-size: 20px;

    color: #087cff;

    margin-bottom: 15px;

    font-weight: 800;
}

.job-card p {
    color: var(--muted);

    line-height: 2;

    font-size: 14px;
}

/* =========================================================
   FEATURES
========================================================= */

.features {
    position: relative;
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.feature {
    padding: 28px;

    min-height: 170px;

    border-radius: 22px;

    background: #fff;

    border:
        1px solid rgba(0, 120, 255, .09);

    box-shadow:
        0 10px 40px rgba(0, 70, 150, .07);

    transition: .35s;

    position: relative;

    overflow: hidden;
}

.feature::before {
    content: "";

    position: absolute;

    width: 4px;
    height: 0;

    right: 0;
    top: 0;

    background:
        linear-gradient(
            #0077ff,
            #00c8ff
        );

    transition: .4s;
}

.feature:hover::before {
    height: 100%;
}

.feature:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(0, 100, 220, .14);
}

.feature h3 {
    font-size: 17px;

    margin-bottom: 12px;

    color: #087cff;
}

.feature p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}

/* =========================================================
   DOWNLOAD
========================================================= */

.download {
    position: relative;
}

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    position: relative;
}

.steps::before {
    content: "";

    position: absolute;

    top: 35px;

    right: 17%;

    width: 66%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #0077ff,
            #00c8ff
        );

    opacity: .2;
}

.step {
    position: relative;

    text-align: center;

    padding: 35px 20px;

    background: #fff;

    border-radius: 25px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    z-index: 2;

    transition: .35s;
}

.step:hover {
    transform: translateY(-8px);
}

.step span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    color: #fff;

    font-size: 25px;

    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            #0077ff,
            #00c8ff
        );

    box-shadow:
        0 12px 30px rgba(0, 126, 255, .3);
}

.step h3 {
    font-size: 17px;

    line-height: 1.8;
}

/* =========================================================
   ABOUT
========================================================= */

.about {
    position: relative;
}

.about-box {
    position: relative;

    padding: 70px;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #0077ff,
            #00b9ff
        );

    color: #fff;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 120, 255, .25);
}

.about-box::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -150px;
    bottom: -220px;

    border-radius: 50%;

    border: 70px solid rgba(255,255,255,.08);
}

.about-box::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -150px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);
}

.about-box h2 {
    font-size: 35px;

    margin-bottom: 20px;

    position: relative;

    z-index: 2;
}

.about-box p {
    max-width: 850px;

    line-height: 2.3;

    color: rgba(255,255,255,.9);

    position: relative;

    z-index: 2;
}

/* =========================================================
   FAQ
========================================================= */

.faq {
    max-width: 950px !important;
}

.faq-item {
    background: #fff;

    border:
        1px solid rgba(0, 120, 255, .10);

    border-radius: 20px;

    padding: 25px 30px;

    margin-bottom: 15px;

    box-shadow:
        0 10px 35px rgba(0, 70, 150, .06);

    transition: .3s;
}

.faq-item:hover {
    transform: translateX(-5px);

    border-color:
        rgba(0, 120, 255, .25);
}

.faq-item h3 {
    color: #087cff;

    font-size: 18px;

    margin-bottom: 10px;
}

.faq-item p {
    color: var(--muted);

    line-height: 2;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
    position: relative;

    margin-top: 80px;

    padding:
        70px 20px
        40px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #f0f7ff,
            #e5f1ff
        );

    border-top:
        1px solid rgba(0, 120, 255, .1);

    overflow: hidden;
}

footer::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 200px;

    top: -150px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(0, 130, 255, .12);

    filter: blur(30px);
}

footer img {
    width: 90px;

    margin-bottom: 20px;

    filter:
        drop-shadow(
            0 10px 20px
            rgba(0,100,255,.2)
        );
}

footer p {
    color: var(--muted);

    font-size: 13px;

    line-height: 2;

    margin-bottom: 5px;
}

.socials {
    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 25px;
}

.socials a {
    text-decoration: none;

    color: #087cff;

    padding: 10px 20px;

    background: #fff;

    border-radius: 12px;

    border:
        1px solid rgba(0, 120, 255, .12);

    transition: .3s;
}

.socials a:hover {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0077ff,
            #00baff
        );

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px
        rgba(0,120,255,.25);
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(50px)
        scale(.98);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.active {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}

/* =========================================================
   SELECTION
========================================================= */

::selection {
    background: #087cff;
    color: #fff;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #edf5ff;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            180deg,
            #0077ff,
            #00baff
        );

    border-radius: 20px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .jobs-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 800px) {

    .hero {
        min-height: 750px;

        padding-top: 80px;
    }

    .hero::before {
        width: 400px;
        height: 800px;

        left: -300px;
    }

    .hero::after {
        width: 350px;
        height: 600px;

        right: -250px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero p {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }

    .about-box {
        padding: 45px 30px;
    }
}

@media (max-width: 600px) {

    section:not(.hero) {
        width: min(100% - 25px, 1200px);

        padding: 70px 0;
    }

    .hero {
        padding:
            70px 20px
            110px;
    }

    .hero h1 {
        font-size: 31px;

        letter-spacing: -.5px;
    }

    .hero-status {
        flex-direction: column;
    }

    .status-card {
        width: 100%;
        min-width: 0;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        min-height: auto;
    }

    .about-box h2 {
        font-size: 28px;
    }

    footer {
        margin-top: 40px;
    }
}




/* =========================================================
   NEW VISION GAMING HERO
========================================================= */

.hero {
    min-height: 900px;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    padding:
        80px 7vw
        130px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 45%,
            rgba(0, 145, 255, .10),
            transparent 32%
        ),
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f5faff 55%,
            #edf6ff 100%
        );
}


/* =========================================================
   BIG CURVED BLUE SHAPE
========================================================= */

.hero::before {

    content: "";

    position: absolute;

    width: 850px;
    height: 1250px;

    left: -570px;
    top: -170px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #006cff,
            #00c8ff
        );

    transform:
        rotate(17deg);

    box-shadow:
        40px 0 100px
        rgba(0, 120, 255, .18);

    z-index: 0;

    animation:
        heroBlueShape 8s ease-in-out infinite;
}


@keyframes heroBlueShape {

    0%,
    100% {
        transform:
            rotate(17deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(19deg)
            translateY(20px);
    }
}


/* =========================================================
   SECOND CURVED SHAPE
========================================================= */

.hero::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -350px;
    bottom: -350px;

    border-radius: 50%;

    border:
        90px solid
        rgba(0, 130, 255, .08);

    z-index: 0;

    animation:
        rotateRing 18s linear infinite;
}


@keyframes rotateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .35;

    background-image:

        linear-gradient(
            rgba(0, 120, 255, .06) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(0, 120, 255, .06) 1px,
            transparent 1px
        );

    background-size:
        50px 50px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 35%,
            black 75%,
            transparent
        );

    animation:
        gridMove 15s linear infinite;

    pointer-events: none;
}


@keyframes gridMove {

    from {
        background-position:
            0 0;
    }

    to {
        background-position:
            50px 50px;
    }
}


/* =========================================================
   HERO CIRCLES
========================================================= */

.hero-circle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}


.hero-circle-1 {

    width: 480px;
    height: 480px;

    left: 4%;
    top: 18%;

    border:
        1px solid
        rgba(0, 130, 255, .16);

    box-shadow:
        0 0 0 30px
        rgba(0, 130, 255, .025),
        0 0 0 70px
        rgba(0, 130, 255, .02);

    animation:
        circleFloat 8s ease-in-out infinite;
}


.hero-circle-2 {

    width: 320px;
    height: 320px;

    left: 12%;
    top: 30%;

    border:
        1px dashed
        rgba(0, 150, 255, .22);

    animation:
        rotateRing 20s linear infinite;
}


@keyframes circleFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-25px);
    }
}


/* =========================================================
   HERO LINES / HUD
========================================================= */

.hero-lines {

    position: absolute;

    left: 5%;
    top: 12%;

    width: 250px;
    height: 500px;

    z-index: 2;

    pointer-events: none;
}


.hero-lines span {

    position: absolute;

    display: block;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 125, 255, .6),
            transparent
        );

    animation:
        hudLine 3s ease-in-out infinite;
}


.hero-lines span:nth-child(1) {

    width: 180px;

    top: 50px;
    left: 20px;
}


.hero-lines span:nth-child(2) {

    width: 100px;

    top: 150px;
    left: 70px;

    animation-delay: .7s;
}


.hero-lines span:nth-child(3) {

    width: 220px;

    top: 300px;
    left: 0;

    animation-delay: 1.3s;
}


.hero-lines span:nth-child(4) {

    width: 130px;

    top: 400px;
    left: 80px;

    animation-delay: 2s;
}


@keyframes hudLine {

    0%,
    100% {
        opacity: .2;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(20px);
    }
}


/* =========================================================
   CHARACTER
========================================================= */

/* =========================================================
   BIG CHARACTER SYSTEM
========================================================= */

.hero-character {

    position: absolute;

    width: 780px;
    height: 900px;

    left: -10px;
    bottom: -40px;

    z-index: 4;

    pointer-events: none;
}


/* =========================================================
   CHARACTER IMAGES
========================================================= */

.character-images {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 3;
}

.character {
    opacity: 0;

    transform:
        translate3d(25px, 0, 0)
        scale(.985);

    transition:
        opacity .3s ease,
        transform .35s ease;

    will-change:
        opacity,
        transform;
}

.character.active {
    opacity: 1;

    transform:
        translate3d(0, 0, 0)
        scale(1);

    animation: none;
}


@keyframes characterIdle {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-10px)
            scale(1.015);
    }
}


/* =========================================================
   CHARACTER GLOW
========================================================= */

.character-glow {

    position: absolute;

    width: 650px;
    height: 650px;

    left: 50%;
    top: 45%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 170, 255, .40) 0%,
            rgba(0, 125, 255, .20) 35%,
            rgba(0, 125, 255, .07) 55%,
            transparent 72%
        );

    filter: blur(30px);

    animation:
        characterGlow 4s ease-in-out infinite;

    z-index: 1;
}


@keyframes characterGlow {

    0%,
    100% {
        opacity: .65;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1.12);
    }
}


/* =========================================================
   HUGE RING
========================================================= */

.character-ring {

    position: absolute;

    width: 570px;
    height: 570px;

    left: 50%;
    top: 44%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid
        rgba(0, 140, 255, .20);

    border-radius: 50%;

    z-index: 2;

    animation:
        characterRingRotate 25s linear infinite;
}


.character-ring::before {

    content: "";

    position: absolute;

    width: 18px;
    height: 18px;

    left: 75px;
    top: 20px;

    border-radius: 50%;

    background: #00c8ff;

    box-shadow:
        0 0 15px #00c8ff,
        0 0 35px #00c8ff;
}


.character-ring::after {

    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    right: 80px;
    bottom: 45px;

    border-radius: 50%;

    background: #087cff;

    box-shadow:
        0 0 15px #087cff,
        0 0 30px #087cff;
}


@keyframes characterRingRotate {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}


/* =========================================================
   PARTICLES
========================================================= */

.character-particles {

    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;
}


.character-particles span {

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #00baff;

    box-shadow:
        0 0 10px #00baff,
        0 0 20px rgba(0, 186, 255, .6);

    animation:
        particleFloat 5s ease-in-out infinite;
}


.character-particles span:nth-child(1) {
    left: 15%;
    top: 30%;
    animation-delay: 0s;
}

.character-particles span:nth-child(2) {
    left: 78%;
    top: 25%;
    animation-delay: -1s;
}

.character-particles span:nth-child(3) {
    left: 25%;
    top: 60%;
    animation-delay: -2s;
}

.character-particles span:nth-child(4) {
    left: 80%;
    top: 65%;
    animation-delay: -3s;
}

.character-particles span:nth-child(5) {
    left: 45%;
    top: 15%;
    animation-delay: -4s;
}

.character-particles span:nth-child(6) {
    left: 60%;
    top: 80%;
    animation-delay: -2.5s;
}


@keyframes particleFloat {

    0%,
    100% {
        opacity: .2;

        transform:
            translate(0, 0)
            scale(.7);
    }

    50% {
        opacity: 1;

        transform:
            translate(
                20px,
                -35px
            )
            scale(1.3);
    }
}

.hero-character img {

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position:
        center bottom;

    filter:
        drop-shadow(
            0 30px 40px
            rgba(0, 80, 180, .28)
        );

    transform-origin:
        bottom center;

    animation:
        characterFloat 5s ease-in-out infinite;

    z-index: 3;
}


@keyframes characterFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-12px);
    }
}


/* =========================================================
   CHARACTER BLUE GLOW
========================================================= */

.character-glow {

    position: absolute;

    width: 450px;
    height: 450px;

    left: 50%;
    top: 42%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 155, 255, .38),
            rgba(0, 125, 255, .12) 45%,
            transparent 70%
        );

    filter: blur(25px);

    animation:
        glowPulse 4s ease-in-out infinite;

    z-index: 1;
}


@keyframes glowPulse {

    0%,
    100% {
        opacity: .65;
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1.12);
    }
}


/* =========================================================
   CHARACTER RING
========================================================= */

.character-ring {

    position: absolute;

    width: 430px;
    height: 430px;

    left: 50%;
    top: 43%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid
        rgba(0, 140, 255, .22);

    border-radius: 50%;

    box-shadow:
        0 0 0 25px
        rgba(0, 140, 255, .025),
        0 0 0 50px
        rgba(0, 140, 255, .018);

    animation:
        rotateRing 25s linear infinite;

    z-index: 2;
}


.character-ring::before {

    content: "";

    position: absolute;

    width: 15px;
    height: 15px;

    top: 10px;
    left: 70px;

    background: #00baff;

    border-radius: 50%;

    box-shadow:
        0 0 20px #00baff;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    width: 620px;

    margin-right: 5%;

    margin-left: auto;

    text-align: right;

    position: relative;

    z-index: 10;
}

/* =========================================================
   SERVER STATUS BADGE
========================================================= */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 9px 17px;

    margin-bottom: 20px;

    border-radius: 50px;

    background: rgba(255,255,255,.88);

    border: 1px solid var(--status-border);

    color: var(--status-color);

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 8px 25px var(--status-shadow);

    /*
       حذف backdrop-filter برای Performance
    */

    transition:
        color .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


/* =========================================================
   DOT
========================================================= */

.live-dot {

    position: relative;

    flex-shrink: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--status-color);

}


/* حلقه انیمیشن */

.live-dot::after {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 2px solid var(--status-color);

    opacity: 0;

    animation:
        statusPulse 1.8s ease-out infinite;

}


/* =========================================================
   ONLINE
========================================================= */

.hero-badge.status-online {

    --status-color: #16c784;

    --status-border:
        rgba(22,199,132,.18);

    --status-shadow:
        rgba(22,199,132,.08);
}


.status-online .live-dot {

    box-shadow:
        0 0 10px
        rgba(22,199,132,.65);
}


/* =========================================================
   UPDATING
========================================================= */

.hero-badge.status-updating {

    --status-color: #f5a623;

    --status-border:
        rgba(245,166,35,.22);

    --status-shadow:
        rgba(245,166,35,.08);
}


.status-updating .live-dot {

    box-shadow:
        0 0 10px
        rgba(245,166,35,.65);
}


.status-updating .live-dot::after {

    animation-duration: 1.1s;
}


/* =========================================================
   OFFLINE
========================================================= */

.hero-badge.status-offline {

    --status-color: #ef4444;

    --status-border:
        rgba(239,68,68,.20);

    --status-shadow:
        rgba(239,68,68,.07);
}


.status-offline .live-dot {

    box-shadow:
        0 0 10px
        rgba(239,68,68,.55);
}


/*
   در حالت خاموش Pulse خیلی آرام‌تر
*/

.status-offline .live-dot::after {

    animation-duration: 3s;

    opacity: .15;
}


/* =========================================================
   PULSE
========================================================= */

@keyframes statusPulse {

    0% {

        transform: scale(.65);

        opacity: .75;
    }

    70% {

        transform: scale(1.5);

        opacity: 0;
    }

    100% {

        transform: scale(1.5);

        opacity: 0;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .live-dot::after {

        animation: none !important;
    }

    .hero-badge {

        transition: none;
    }
}
/* =========================================================
   HERO LOGO
========================================================= */

.hero-content .hero-logo {

    width: 105px;
    height: 105px;

    display: block;

    margin:
        0 0 15px auto;

    animation:
        logoFloat 4s ease-in-out infinite;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-content h1 {

    margin: 0;

    font-size:
        clamp(48px, 6vw, 82px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;

    color: #071b35;

    background: none;

    -webkit-text-fill-color: initial;
}


.hero-content h1 span {

    display: inline-block;

    color: #087cff;

    position: relative;
}


.hero-content h1 span::after {

    content: "";

    position: absolute;

    width: 100%;
    height: 8px;

    right: 0;
    bottom: -10px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #0077ff,
            #00c8ff
        );

    opacity: .35;
}


.hero-content h2 {

    margin:
        25px 0 15px;

    font-size: 27px;

    font-weight: 800;

    color: #183b62;
}


.hero-content > p {

    margin:
        0 0 30px;

    max-width: 600px;

    font-size: 16px;

    line-height: 2.1;

    color: #64748b;
}


/* =========================================================
   HERO STATUS
========================================================= */

.hero-content .hero-status {

    justify-content: flex-start;

    margin-bottom: 25px;
}


.hero-content .status-card {

    min-width: 250px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        13px 18px;

    text-align: right;

    border-radius: 15px;
}


.status-icon {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(0, 125, 255, .09);

    color: #087cff;
}


.status-icon.online {

    color: #16c784;

    font-size: 18px;

    animation:
        livePulse 1.5s infinite;
}


.hero-content .status-card strong {

    font-size: 14px;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-content .hero-buttons {

    justify-content: flex-start;
}


.hero-content .btn {

    min-width: 190px;

    border-radius: 14px;
}


.btn.secondary {

    color: #087cff;

    background: #fff;

    border:
        1px solid
        rgba(0, 125, 255, .15);

    box-shadow:
        0 10px 30px
        rgba(0, 70, 150, .08);

    gap: 12px;
}


.btn.secondary:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 18px 40px
        rgba(0, 100, 220, .15);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hero-scroll {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 12px;

    color: #8aa2bc;

    z-index: 10;
}


.hero-scroll span {

    width: 22px;
    height: 36px;

    border:
        2px solid
        rgba(0, 120, 255, .25);

    border-radius: 20px;

    position: relative;
}


.hero-scroll span::after {

    content: "";

    position: absolute;

    width: 4px;
    height: 7px;

    top: 6px;
    left: 50%;

    transform:
        translateX(-50%);

    border-radius: 10px;

    background: #087cff;

    animation:
        scrollDot 1.7s infinite;
}


@keyframes scrollDot {

    0% {
        opacity: 0;

        transform:
            translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;

        transform:
            translate(-50%, 13px);
    }
}


/* =========================================================
   DESKTOP DEPTH
========================================================= */

@media (min-width: 1400px) {

.hero-character {
    width: 900px;
    height: 1000px;
        left: 4%;
    left: -80px;
    bottom: -70px;
}
    .hero-content {

        margin-right: 8%;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero {

        min-height: 850px;

        padding:
            80px 5vw
            120px;
    }

    .hero-character {

        width: 500px;
        height: 700px;

        left: -80px;

        opacity: .65;
    }

    .hero-content {

        width: 600px;

        margin-right: 0;
    }

    .hero-content h1 {

        font-size: 60px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .hero {

        min-height: 850px;

        padding:
            70px 20px
            100px;

        align-items: flex-start;

        text-align: center;
    }

    .hero::before {

        width: 500px;
        height: 800px;

        left: -400px;
    }

    .hero-character {

        width: 430px;
        height: 600px;

        left: 50%;

        bottom: -100px;

        transform:
            translateX(-50%);

        opacity: .20;
    }

    .hero-content {

        width: 100%;

        margin: 0;

        text-align: center;
    }

    .hero-content .hero-logo {

        margin:
            0 auto 15px;
    }

    .hero-content h1 {

        font-size: 48px;

        letter-spacing: -2px;
    }

    .hero-content h2 {

        font-size: 21px;
    }

    .hero-content > p {

        font-size: 14px;
    }

    .hero-content .hero-status {

        flex-direction: column;

        align-items: center;
    }

    .hero-content .status-card {

        width: 100%;

        max-width: 400px;
    }

    .hero-content .hero-buttons {

        flex-direction: column;

        align-items: center;
    }

    .hero-content .btn {

        width: 100%;

        max-width: 350px;
    }

    .hero-circle-1 {

        left: 50%;

        transform:
            translateX(-50%);

        width: 380px;
        height: 380px;
    }

    .hero-circle-2 {

        left: 50%;

        width: 260px;
        height: 260px;
    }

    .hero-lines {

        display: none;
    }

    .hero-scroll {

        display: none;
    }
}




/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;
    }
}





















/* =========================================================
   NEW VISION MTA
   GAMING LANDING V2
   GLOBAL OVERRIDE
========================================================= */

:root {
    --nv-blue: #087cff;
    --nv-blue-2: #00c8ff;
    --nv-dark: #071426;
    --nv-dark-2: #0b1d35;
    --nv-text: #101828;
    --nv-muted: #6b7c91;
    --nv-white: #ffffff;
    --nv-bg: #f3f8ff;
    --nv-line: rgba(8, 124, 255, .11);
}

/* =========================================================
   BODY
========================================================= */

body {
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(0, 153, 255, .07),
            transparent 24%
        ),
        radial-gradient(
            circle at 85% 60%,
            rgba(0, 200, 255, .06),
            transparent 25%
        ),
        #f4f8fd;
}


/* =========================================================
   SECTION GENERAL
========================================================= */

section:not(.hero) {
    position: relative;

    width: min(1380px, calc(100% - 60px));

    padding:
        130px 0;

    isolation: isolate;
}


/* subtle section line */

section:not(.hero)::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 2px;

    top: 0;
    right: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(8,124,255,.45)
        );

    opacity: .7;
}


/* =========================================================
   SECTION HEADERS
========================================================= */

section:not(.hero) > h2 {
    text-align: right;

    font-size:
        clamp(32px, 4vw, 52px);

    line-height: 1.2;

    margin-bottom: 65px;

    color: var(--nv-dark);

    letter-spacing: -1.5px;

    position: relative;
}

section:not(.hero) > h2::before {
    content: "NEW VISION";

    display: block;

    margin-bottom: 10px;

    font-size: 11px;

    letter-spacing: 4px;

    color: var(--nv-blue);

    font-weight: 900;
}

section:not(.hero) > h2::after {
    content: "";

    display: block;

    width: 90px;
    height: 5px;

    margin:
        18px 0 0;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--nv-blue),
            var(--nv-blue-2)
        );

    box-shadow:
        0 0 20px
        rgba(0,150,255,.3);
}


/* =========================================================
   STATS - HUD STYLE
========================================================= */

.stats {
    display: grid;

    grid-template-columns:
        1.2fr 1fr 1fr 1fr;

    gap: 1px;

    padding:
        0 !important;

    margin-top: -50px;

    background:
        rgba(8,124,255,.10);

    border:
        1px solid
        rgba(8,124,255,.10);

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 30px 80px
        rgba(0,70,150,.10);

    backdrop-filter: blur(20px);
}

.stat-card {
    position: relative;

    min-height: 180px;

    padding: 38px 30px;

    border-radius: 0;

    background:
        rgba(255,255,255,.88);

    box-shadow: none;

    overflow: hidden;

    transition:
        transform .35s,
        background .35s;
}

.stat-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    left: -60px;
    bottom: -60px;

    border-radius: 50%;

    border:
        1px solid
        rgba(0,130,255,.14);

    transition: .5s;
}

.stat-card::after {
    content: "";

    position: absolute;

    width: 3px;
    height: 50px;

    right: 0;
    top: 35px;

    background:
        linear-gradient(
            #087cff,
            #00c8ff
        );
}

.stat-card:hover {
    transform: translateY(-5px);

    background: #fff;
}

.stat-card:hover::before {
    transform: scale(2);
}

.stat-card h2 {
    font-size: 42px;

    font-weight: 900;

    margin-bottom: 10px;

    color: var(--nv-dark);

    text-align: right;
}

.stat-card:first-child h2 {
    color: var(--nv-blue);
}

.stat-card span {
    display: block;

    max-width: 190px;

    font-size: 13px;

    line-height: 1.9;

    color: var(--nv-muted);

    text-align: right;
}


/* =========================================================
   JOBS
========================================================= */

.jobs {
    overflow: visible;
}

.jobs::after {
    content: "ROLES";

    position: absolute;

    left: -40px;
    top: 170px;

    font-size: 100px;

    font-weight: 900;

    color:
        rgba(8,124,255,.025);

    writing-mode:
        vertical-rl;

    pointer-events: none;

    z-index: -1;
}

.jobs-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.job-card {
    min-height: 245px;

    padding: 30px 25px;

    border-radius: 0;

    border:
        1px solid
        rgba(8,124,255,.10);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f2f7fd
        );

    box-shadow:
        0 15px 45px
        rgba(0,70,140,.07);

    position: relative;

    overflow: hidden;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s;
}

.job-card:nth-child(3n + 1) {
    border-radius: 28px 4px 4px 4px;
}

.job-card:nth-child(3n + 2) {
    border-radius: 4px 28px 4px 4px;
}

.job-card:nth-child(3n) {
    border-radius: 4px 4px 28px 4px;
}

.job-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,160,255,.18),
            transparent 70%
        );

    transition: .5s;
}

.job-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--nv-blue),
            var(--nv-blue-2)
        );

    transition: .45s;
}

.job-card:hover {
    transform:
        translateY(-12px)
        scale(1.015);

    box-shadow:
        0 30px 65px
        rgba(0,100,220,.15);
}

.job-card:hover::before {
    transform: scale(1.8);
}

.job-card:hover::after {
    width: 100%;
}

.job-card h3 {
    position: relative;

    z-index: 2;

    font-size: 19px;

    color: var(--nv-dark);

    margin-bottom: 20px;
}

.job-card p {
    position: relative;

    z-index: 2;

    color: var(--nv-muted);

    font-size: 13px;

    line-height: 2;
}


/* role number */

.job-card:nth-child(1)::after {
    content: "01";
}

.job-card:nth-child(2)::after {
    content: "02";
}

.job-card:nth-child(3)::after {
    content: "03";
}

.job-card:nth-child(4)::after {
    content: "04";
}

.job-card:nth-child(5)::after {
    content: "05";
}

.job-card:nth-child(6)::after {
    content: "06";
}

.job-card:nth-child(7)::after {
    content: "07";
}

.job-card:nth-child(8)::after {
    content: "08";
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    width: min(1450px, calc(100% - 40px)) !important;

    padding:
        150px 50px !important;

    background:
        linear-gradient(
            135deg,
            #07172a,
            #0b2440
        );

    border-radius:
        50px 8px 50px 8px;

    color: #fff;

    overflow: hidden;
}

.features::before {
    width: 500px !important;
    height: 500px !important;

    top: -200px !important;
    right: -200px !important;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,170,255,.22),
            transparent 65%
        );

    filter: blur(10px);

    border: none !important;
}

.features::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    bottom: -350px;
    left: -300px;

    border-radius: 50%;

    border:
        80px solid
        rgba(0,170,255,.04);

    pointer-events: none;
}

.features > h2 {
    color: #fff !important;

    text-align: right !important;
}

.features > h2::before {
    color: #35c7ff !important;
}

.features > h2::after {
    background:
        linear-gradient(
            90deg,
            #00c8ff,
            #087cff
        );
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    position: relative;

    z-index: 2;
}

.feature {
    min-height: 200px;

    padding: 30px;

    border-radius: 18px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid
        rgba(255,255,255,.08);

    box-shadow: none;

    backdrop-filter: blur(15px);

    transition:
        transform .4s,
        background .4s,
        border-color .4s;
}

.feature:nth-child(2n) {
    transform:
        translateY(25px);
}

.feature:hover {
    transform:
        translateY(-8px);

    background:
        rgba(0,145,255,.10);

    border-color:
        rgba(0,190,255,.35);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.15);
}

.feature h3 {
    color: #fff;

    font-size: 17px;

    margin-bottom: 15px;
}

.feature p {
    color:
        rgba(220,235,250,.65);

    font-size: 13px;

    line-height: 2;
}


/* =========================================================
   DOWNLOAD / LAUNCHER
========================================================= */

.download {
    width: min(1300px, calc(100% - 40px)) !important;

    padding:
        100px 80px !important;

    background:
        linear-gradient(
            120deg,
            #087cff,
            #005bd4
        );

    border-radius:
        40px 8px 40px 8px;

    overflow: hidden;

    box-shadow:
        0 35px 90px
        rgba(0,90,210,.25);
}

.download::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    top: -300px;

    border-radius: 50%;

    border:
        80px solid
        rgba(255,255,255,.06);
}

.download::after {
    content: "PLAY";

    position: absolute;

    left: -30px;
    bottom: -90px;

    font-size: 220px;

    font-weight: 900;

    color:
        rgba(255,255,255,.035);

    pointer-events: none;
}

.download > h2 {
    color: #fff !important;

    position: relative;

    z-index: 2;

    margin-bottom: 60px;
}

.download > h2::before {
    color:
        rgba(255,255,255,.7) !important;
}

.download > h2::after {
    background: #fff !important;
}

.steps {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    z-index: 3;
}

.steps::before {
    top: 42px;

    right: 16%;

    width: 68%;

    height: 1px;

    background:
        rgba(255,255,255,.3);

    opacity: 1;
}

.step {
    min-height: 190px;

    padding: 35px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 22px;

    background:
        rgba(255,255,255,.09);

    backdrop-filter: blur(20px);

    box-shadow: none;

    color: #fff;

    transition: .4s;
}

.step:hover {
    transform:
        translateY(-10px);

    background:
        rgba(255,255,255,.14);
}

.step span {
    width: 60px;
    height: 60px;

    margin:
        0 auto 20px;

    background: #fff;

    color: #087cff;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.15);
}

.step h3 {
    color: #fff;

    font-size: 16px;
}


/* =========================================================
   ABOUT - CINEMATIC
========================================================= */

.about {
    width: min(1300px, calc(100% - 40px)) !important;

    padding:
        100px 0 !important;
}

.about-box {
    min-height: 420px;

    padding: 75px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            120deg,
            #071426,
            #0c2949
        );

    border-radius:
        10px 55px 10px 55px;

    overflow: hidden;

    box-shadow:
        0 40px 100px
        rgba(0,50,120,.20);
}

.about-box::before {
    width: 600px;
    height: 600px;

    left: auto;
    right: -250px;
    bottom: -300px;

    border:
        100px solid
        rgba(0,180,255,.06);
}

.about-box::after {
    width: 450px;
    height: 450px;

    right: -150px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(0,175,255,.20),
            transparent 65%
        );
}

.about-box h2 {
    font-size:
        clamp(32px, 5vw, 55px);

    color: #fff;

    position: relative;

    z-index: 3;
}

.about-box h2::before {
    content: "THE VISION";

    display: block;

    font-size: 11px;

    letter-spacing: 5px;

    color: #00c8ff;

    margin-bottom: 15px;
}

.about-box p {
    max-width: 800px;

    font-size: 16px;

    line-height: 2.4;

    color:
        rgba(220,235,250,.7);
}


/* =========================================================
   FAQ - MODERN
========================================================= */

.faq {
    width: min(1000px, calc(100% - 40px)) !important;
}

.faq > h2 {
    text-align: center !important;
}

.faq > h2::after {
    margin:
        18px auto 0 !important;
}

.faq-item {
    position: relative;

    padding:
        0;

    margin-bottom: 10px;

    border:
        1px solid
        rgba(8,124,255,.10);

    border-radius: 16px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 8px 30px
        rgba(0,70,140,.05);

    transition: .3s;
}

.faq-item h3 {
    margin: 0;

    padding:
        24px 55px 24px 25px;

    color: var(--nv-dark);

    font-size: 16px;

    cursor: pointer;

    position: relative;
}

.faq-item h3::before {
    content: "+";

    position: absolute;

    right: 20px;
    top: 50%;

    transform:
        translateY(-50%);

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(8,124,255,.08);

    color: var(--nv-blue);

    font-size: 18px;

    transition: .3s;
}

.faq-item p {
    margin: 0;

    padding:
        0 55px 25px 25px;

    color: var(--nv-muted);

    font-size: 14px;

    line-height: 2;

    border-top:
        1px solid
        rgba(8,124,255,.06);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    margin-top: 100px;

    padding:
        100px 30px 45px;

    background:
        linear-gradient(
            180deg,
            #071426,
            #040c17
        );

    color: #fff;

    position: relative;

    overflow: hidden;
}

footer::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 300px;

    left: 50%;
    top: -250px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        rgba(0,150,255,.15);

    filter: blur(40px);
}

footer::after {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(0,160,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,160,255,.035) 1px,
            transparent 1px
        );

    background-size:
        45px 45px;

    pointer-events: none;
}

footer > * {
    position: relative;

    z-index: 2;
}

footer img {
    width: 95px;

    margin-bottom: 25px;
}

footer p {
    color:
        rgba(220,235,250,.55);

    font-size: 13px;
}

.socials a {
    background:
        rgba(255,255,255,.05);

    border:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.75);

    backdrop-filter: blur(10px);
}

.socials a:hover {
    background:
        linear-gradient(
            135deg,
            #087cff,
            #00baff
        );

    color: #fff;

    border-color: transparent;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(70px);

    transition:
        opacity .9s ease,
        transform 1s cubic-bezier(.2,.8,.2,1);
}

.reveal.active {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   STAGGER ANIMATION
========================================================= */

.jobs-grid .job-card,
.features-grid .feature,
.stats .stat-card {
    transition-delay: 0s;
}

.reveal.active .job-card:nth-child(2),
.reveal.active .feature:nth-child(2) {
    transition-delay: .08s;
}

.reveal.active .job-card:nth-child(3),
.reveal.active .feature:nth-child(3) {
    transition-delay: .16s;
}

.reveal.active .job-card:nth-child(4),
.reveal.active .feature:nth-child(4) {
    transition-delay: .24s;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

    .jobs-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }
}


@media (max-width: 800px) {

    section:not(.hero) {
        width:
            calc(100% - 30px);

        padding:
            90px 0;
    }

    section:not(.hero) > h2 {
        text-align: center;

        font-size: 34px;
    }

    section:not(.hero) > h2::after {
        margin:
            18px auto 0;
    }

    .stats {
        grid-template-columns:
            repeat(2, 1fr);

        margin-top: -30px;
    }

    .jobs-grid,
    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .features {
        padding:
            90px 25px !important;

        border-radius:
            35px 5px 35px 5px;
    }

    .download {
        padding:
            80px 25px !important;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }

    .about-box {
        padding:
            55px 30px;
    }
}


@media (max-width: 550px) {

    .stats {
        grid-template-columns: 1fr;
    }

    .jobs-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature:nth-child(2n) {
        transform:
            none;
    }

    .features {
        width:
            calc(100% - 20px) !important;

        padding:
            75px 18px !important;
    }

    .download {
        width:
            calc(100% - 20px) !important;

        border-radius:
            25px 5px 25px 5px;
    }

    .about {
        width:
            calc(100% - 20px) !important;
    }

    .about-box {
        border-radius:
            20px 35px 20px 35px;
    }

    .faq {
        width:
            calc(100% - 25px) !important;
    }
}


/* =========================================================
   NEW VISION - MOBILE PERFORMANCE OVERRIDE
   سبک، یک‌دست و بدون افکت‌های سنگین
========================================================= */

@media (max-width: 700px) {

    html {
        scroll-behavior: auto;
    }

    body {
        overflow-x: hidden;
        background: #f4f8fd;
    }

    /* حذف بک‌گراندهای fixed و blur سنگین */
    body::before,
    body::after,
    .bg-orbs,
    .hero-grid,
    .hero-lines,
    .hero-circle,
    .hero-scroll {
        display: none !important;
    }

    /* HERO */
    .hero {
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        padding: 55px 16px 65px !important;
        margin: 0 !important;
        display: block !important;
        overflow: hidden;
        background: #f4f8fd !important;
    }

    /* حذف شکل‌های بزرگ و انیمیشنی تم Override */
    .hero::before,
    .hero::after {
        display: none !important;
        animation: none !important;
        box-shadow: none !important;
        filter: none !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .hero-content::before {
        display: none !important;
    }

    /* کاراکتر روی موبایل حذف می‌شود تا GPU درگیر نشود */
    .hero-character,
    .character-images,
    .character-glow,
    .character-ring,
    .character-particles {
        display: none !important;
        animation: none !important;
        filter: none !important;
        box-shadow: none !important;
        will-change: auto !important;
    }

    .hero-content .hero-logo {
        width: 82px !important;
        height: 82px !important;
        margin: 0 auto 16px !important;
        animation: none !important;
        filter: none !important;
    }

    .hero-badge {
        display: inline-flex !important;
        max-width: 100%;
        padding: 8px 13px !important;
        margin-bottom: 16px !important;
        box-shadow: none !important;
        transition: none !important;
    }

    .live-dot::after {
        animation: none !important;
        display: none !important;
    }

    .status-online .live-dot,
    .status-updating .live-dot {
        box-shadow: none !important;
    }

    .hero-content h1 {
        font-size: clamp(34px, 10vw, 46px) !important;
        line-height: 1.2 !important;
        letter-spacing: -1px !important;
        margin-bottom: 12px !important;
    }

    .hero-content h1 span::after {
        height: 4px !important;
        bottom: -5px !important;
    }

    .hero-content h2 {
        font-size: 18px !important;
        line-height: 1.7 !important;
        margin: 12px 0 !important;
    }

    .hero-content > p {
        max-width: 100% !important;
        font-size: 13px !important;
        line-height: 2 !important;
        margin-bottom: 22px !important;
    }

    /* STATUS */
    .hero-content .hero-status {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 18px !important;
    }

    .hero-content .status-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: 11px 13px !important;
        border-radius: 12px !important;
        background: #fff !important;
        border: 1px solid rgba(8,124,255,.08) !important;
        box-shadow: 0 5px 18px rgba(0,70,150,.05) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: none !important;
    }

    .hero-content .status-card:hover {
        transform: none !important;
        box-shadow: 0 5px 18px rgba(0,70,150,.05) !important;
    }

    .status-icon {
        width: 34px !important;
        height: 34px !important;
        border-radius: 9px !important;
        animation: none !important;
    }

    /* BUTTONS */
    .hero-content .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .hero-content .btn {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: 14px 18px !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        transition: none !important;
    }

    .hero-content .btn::before {
        display: none !important;
    }

    .hero-content .btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    /* تمام سکشن‌ها */
    section:not(.hero) {
        width: calc(100% - 24px) !important;
        max-width: none !important;
        padding: 65px 0 !important;
    }

    section:not(.hero)::before {
        display: none !important;
    }

    section:not(.hero) > h2 {
        font-size: 27px !important;
        line-height: 1.4 !important;
        text-align: center !important;
        margin-bottom: 35px !important;
        letter-spacing: -.5px !important;
    }

    section:not(.hero) > h2::before {
        font-size: 9px !important;
        letter-spacing: 3px !important;
    }

    section:not(.hero) > h2::after {
        width: 55px !important;
        height: 3px !important;
        margin: 12px auto 0 !important;
        box-shadow: none !important;
    }

    /* GRIDها یک‌ستونه و سبک */
    .stats,
    .jobs-grid,
    .features-grid,
    .steps {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .stats {
        margin-top: 0 !important;
        border-radius: 16px !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .stat-card {
        min-height: 0 !important;
        padding: 22px 18px !important;
        border-radius: 0 !important;
        background: #fff !important;
        transition: none !important;
    }

    .stat-card:hover {
        transform: none !important;
    }

    .stat-card::before {
        display: none !important;
    }

    .stat-card h2 {
        font-size: 32px !important;
    }

    .jobs::after {
        display: none !important;
    }

    .job-card {
        min-height: 0 !important;
        padding: 22px 18px !important;
        border-radius: 14px !important;
        box-shadow: 0 5px 18px rgba(0,70,140,.05) !important;
        transition: none !important;
    }

    .job-card:hover {
        transform: none !important;
        box-shadow: 0 5px 18px rgba(0,70,140,.05) !important;
    }

    .job-card::before,
    .job-card::after {
        display: none !important;
    }

    /* FEATURES - حذف Glass/Blur تم Override */
    .features {
        width: calc(100% - 12px) !important;
        padding: 60px 14px !important;
        border-radius: 22px !important;
        box-shadow: none !important;
    }

    .features::before,
    .features::after {
        display: none !important;
        filter: none !important;
    }

    .feature {
        min-height: 0 !important;
        padding: 20px 17px !important;
        border-radius: 13px !important;
        background: rgba(255,255,255,.055) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        transition: none !important;
    }

    .feature:nth-child(2n) {
        transform: none !important;
    }

    .feature:hover {
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255,255,255,.055) !important;
    }

    /* DOWNLOAD */
    .download {
        width: calc(100% - 12px) !important;
        padding: 55px 18px !important;
        border-radius: 22px !important;
        box-shadow: none !important;
    }

    .download::before,
    .download::after {
        display: none !important;
    }

    .step {
        min-height: 0 !important;
        padding: 25px 18px !important;
        border-radius: 14px !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        transition: none !important;
    }

    .step:hover {
        transform: none !important;
        background: rgba(255,255,255,.09) !important;
    }

    /* ABOUT */
    .about {
        width: calc(100% - 12px) !important;
        padding: 65px 0 !important;
    }

    .about-box {
        min-height: 0 !important;
        padding: 45px 22px !important;
        border-radius: 18px !important;
        box-shadow: none !important;
    }

    .about-box::before,
    .about-box::after {
        display: none !important;
    }

    .about-box h2 {
        font-size: 29px !important;
    }

    .about-box p {
        font-size: 13px !important;
        line-height: 2.1 !important;
    }

    /* FAQ */
    .faq {
        width: calc(100% - 24px) !important;
    }

    .faq-item {
        border-radius: 12px !important;
        box-shadow: none !important;
        transition: none !important;
    }

    .faq-item:hover {
        transform: none !important;
    }

    .faq-item h3 {
        font-size: 14px !important;
        padding: 19px 48px 19px 18px !important;
    }

    .faq-item p {
        font-size: 13px !important;
        padding: 0 48px 20px 18px !important;
    }

    /* FOOTER */
    footer {
        margin-top: 45px !important;
        padding: 65px 18px 35px !important;
    }

    footer::before,
    footer::after {
        display: none !important;
        filter: none !important;
    }

    .socials a {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: none !important;
    }

    /* Reveal روی موبایل بدون انیمیشن */
    .reveal,
    .reveal.active {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* همه انیمیشن‌های تزئینی موبایل خاموش */
    .hero *,
    section:not(.hero) *,
    footer * {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
    }

    /* جلوگیری از overflow ناشی از overrideهای قبلی */
    img {
        max-width: 100%;
    }
}

/* موبایل خیلی کوچک */
@media (max-width: 380px) {

    .hero {
        padding: 45px 13px 55px !important;
    }

    .hero-content h1 {
        font-size: 32px !important;
    }

    .hero-content h2 {
        font-size: 17px !important;
    }

    .hero-content > p {
        font-size: 12px !important;
    }

    section:not(.hero) {
        width: calc(100% - 18px) !important;
        padding: 55px 0 !important;
    }

    section:not(.hero) > h2 {
        font-size: 24px !important;
    }
}

/* دستگاه‌های لمسی: hover بی‌اثر */
@media (hover: none) and (pointer: coarse) {

    .btn:hover,
    .status-card:hover,
    .job-card:hover,
    .feature:hover,
    .step:hover,
    .faq-item:hover,
    .socials a:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}
