/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #07051a;
    color: #ffffff;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 25px 60px;

    background: transparent;

    transition:
        background 0.4s ease,
        padding 0.4s ease,
        backdrop-filter 0.4s ease;
}


/* هذا راح نفعله بالجافاسكربت عند النزول */

.navbar.scrolled {
    padding: 16px 60px;

    background: rgba(7, 5, 26, 0.90);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(92, 78, 190, 0.22);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}


.nav-container {
    max-width: 1400px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;

    transition: 0.3s ease;
}

.logo img {
    width: 150px;
    height: auto;

    display: block;
}

.logo:hover {
    opacity: 0.75;
}

.logo:hover {
    opacity: 0.7;
}


/* =========================
   NAV LINKS
========================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: 38px;
}


.nav-links a {
    position: relative;

    color: rgba(235, 232, 255, 0.88);

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.3s ease;
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #8b7cff;

    transition: width 0.3s ease;
}


.nav-links a:hover {
    color: #ffffff;
}


.nav-links a:hover::after {
    width: 100%;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    width: 100%;

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* =========================
   HERO VIDEO
========================= */

.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

/* =========================
   VIDEO OVERLAY
========================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 5, 26, 0.72) 0%,
            rgba(16, 12, 52, 0.48) 45%,
            rgba(24, 18, 65, 0.20) 100%
        );
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1400px;

    margin: auto;

    padding: 150px 60px 100px;
}


.hero-label {
    margin-bottom: 25px;

    font-size: 12px;

    letter-spacing: 4px;

    color: rgba(255, 255, 255, 0.65);

    font-weight: 600;
}


.hero h1 {
    max-width: 900px;

    font-size: clamp(55px, 7vw, 105px);

    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -4px;

    text-transform: uppercase;
}


.hero h1 span {
    display: block;

    color: rgba(255, 255, 255, 0.42);
}


.hero-content p {
    max-width: 650px;

    margin-top: 35px;

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}
/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1400px;

    margin: auto;

    padding: 150px 60px 100px;

    opacity: 0;

    animation:
        heroContentReveal
        1.3s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.2s
        forwards;
}


.hero h1 {
    max-width: 900px;

    font-size: clamp(55px, 7vw, 105px);

    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -4px;

    text-transform: uppercase;

    opacity: 0;

    transform: translateY(25px);

    animation:
        heroTextReveal
        1.2s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.35s
        forwards;
}


.hero h1 span {
    display: block;

    color: rgba(255, 255, 255, 0.42);
}


.hero-content p {
    max-width: 650px;

    margin-top: 35px;

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);

    opacity: 0;

    transform: translateY(20px);

    animation:
        heroTextReveal
        1.2s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.6s
        forwards;
}


.hero-button {
    opacity: 0;

    transform: translateY(18px);

    animation:
        heroTextReveal
        1.2s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.85s
        forwards;
}


/* =========================
   HERO ANIMATIONS
========================= */

@keyframes heroContentReveal {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes heroTextReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================
   HERO BUTTON
========================= */

.hero-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 42px;

    padding: 17px 30px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease;
}


.hero-button:hover {
    background: #ffffff;

    color: #050505;

    border-color: #ffffff;
}
/* =========================
   MOBILE HERO TITLE
========================= */

@media (max-width: 768px) {

    .hero h1 {
        max-width: 100%;

        font-size: 30px;

        line-height: 1.05;

        letter-spacing: -1.5px;

        word-break: normal;

        overflow-wrap: normal;
    }

}
/* =========================
   SCROLL INDICATOR
========================= */

.scroll-indicator {
    position: absolute;

    z-index: 2;

    bottom: 35px;
    right: 60px;

    display: flex;

    align-items: center;

    gap: 12px;
}


.scroll-indicator span {
    width: 35px;
    height: 1px;

    background: rgba(255, 255, 255, 0.6);
}


.scroll-indicator p {
    font-size: 9px;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================
   PLACEHOLDER SECTIONS
========================= */

#technology,
#benchmarks,
#applications,
#compliance {
    min-height: 100vh;
}

/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width: 768px) {

    .navbar {
        position: fixed;

        top: 0;
        left: 0;

        width: 100%;

        padding: 9px 10px;

        z-index: 1000;
    }


    .navbar.scrolled {
        padding: 7px 10px;
    }


    .nav-container {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 6px;
    }


    /* LOGO */

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        width: 58px;

        height: auto;
    }


    /* NAV LINKS */

    .nav-links {
        display: flex;

        align-items: center;

        justify-content: flex-end;

        gap: 7px;

        flex: 1;

        min-width: 0;
    }


    .nav-links a {
        font-size: 6.5px;

        letter-spacing: 0.3px;

        white-space: nowrap;
    }


    .nav-links a::after {
        bottom: -4px;

        height: 1px;
    }

}
    /* =========================
       MOBILE HERO
    ========================= */

    .hero {
        min-height: 100svh;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-content {
        padding: 120px 24px 90px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 58px);
        line-height: 1;
        letter-spacing: -1.5px;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        margin-top: 25px;
    }

    .hero-button {
        margin-top: 30px;
        padding: 15px 22px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }


    /* =========================
       SCROLL INDICATOR
    ========================= */

    .scroll-indicator {
        left: 25px;
        right: auto;
        bottom: 25px;
    }

/* =========================
   HERO ENTRANCE ANIMATION
========================= */

.hero-content {
    padding: 120px 24px 90px;
}

.hero h1 {
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1;
    letter-spacing: -1.5px;
    max-width: 100%;
}

.hero-content p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
    margin-top: 25px;
}

.hero-button {
    margin-top: 30px;
    padding: 15px 22px;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.hero-button {
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextReveal 1s ease-out 0.7s forwards;
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TECHNOLOGY SECTION
========================= */

.technology {
    position: relative;

    min-height: 100vh;

    padding: 140px 60px;

    background:
        url("../images/applications-png.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}
.technology::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 5, 26, 0.92) 0%,
            rgba(10, 7, 35, 0.78) 50%,
            rgba(12, 8, 40, 0.62) 100%
        );

    pointer-events: none;

    z-index: 0;
}
.technology::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.technology-container {
    max-width: 1400px;

    margin: 0 auto;

    position: relative;

    z-index: 2;
}
/* =========================
   TECHNOLOGY HEADER
========================= */

.technology-header {
    max-width: 800px;

    margin-bottom: 75px;
}


.technology-label {
    margin-bottom: 22px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.48);
}


.technology-header h2 {
    font-size: clamp(45px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;

    text-transform: uppercase;
}


.technology-header h2 span {
    display: block;

    color: rgba(255, 255, 255, 0.42);
}


.technology-header p {
    max-width: 650px;

    margin-top: 30px;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.60);
}

/* =========================
   TECHNOLOGY CARD ANIMATION
========================= */

.technology-card {
    min-height: 300px;

    padding: 35px 30px;

    background: #0c0924;

    position: relative;

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.4s ease;
}


/* تظهر البطاقات */

.technology-card.show {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   ONE AFTER ANOTHER
========================= */

.technology-card:nth-child(1) {
    transition-delay: 0.05s;
}

.technology-card:nth-child(2) {
    transition-delay: 0.20s;
}

.technology-card:nth-child(3) {
    transition-delay: 0.35s;
}

.technology-card:nth-child(4) {
    transition-delay: 0.50s;
}


/* =========================
   HOVER
========================= */

.technology-card:hover {
    background: #13103a;

    transform: translateY(-5px);
}

/* =========================
   CARDS VISIBLE
========================= */

.technology-card.show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   ONE AFTER ANOTHER
========================= */

.technology-card:nth-child(1) {
    transition-delay: 0.05s;
}

.technology-card:nth-child(2) {
    transition-delay: 0.20s;
}

.technology-card:nth-child(3) {
    transition-delay: 0.35s;
}

.technology-card:nth-child(4) {
    transition-delay: 0.50s;
}


/* =========================
   CARD HOVER
========================= */

.technology-card.show:hover {
    background: #13103a;
    transform: translateY(-5px);
}
/* Cards appear when they enter the screen */

.technology-card.show {
    opacity: 1;
    transform: translateY(0);
}


/* One after another */

.technology-card:nth-child(1) {
    transition-delay: 0.05s;
}

.technology-card:nth-child(2) {
    transition-delay: 0.20s;
}

.technology-card:nth-child(3) {
    transition-delay: 0.35s;
}

.technology-card:nth-child(4) {
    transition-delay: 0.50s;
}


.technology-card:hover {
    background: #13103a;
    transform: translateY(-5px);
}


.technology-number {
    font-size: 10px;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.35);

    margin-bottom: 70px;
}


.technology-card h3 {
    font-size: 20px;

    font-weight: 600;

    margin-bottom: 18px;

    letter-spacing: -0.5px;
}


.technology-card p {
    font-size: 13px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.48);
}


/* =========================
   TECHNOLOGY MOBILE
========================= */

@media (max-width: 900px) {

    .technology {
        padding: 110px 25px;
    }

    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

.technology-card {
    min-height: 150px;

    padding: 24px 22px;
}
@media (max-width: 600px) {

    .technology {
        padding: 90px 24px;
    }

    .technology-grid {
        grid-template-columns: 1fr;
    }

    .technology-card {
    min-height: 150px;

    padding: 24px 22px;
}

    .technology-number {
        margin-bottom: 30px;
    }


    /* =========================
       TECHNOLOGY HEADER MOBILE
    ========================= */

    .technology-header {
        margin-bottom: 50px;
    }

    .technology-header h2 {
    font-size: clamp(34px, 10vw, 48px);

    letter-spacing: -1.5px;

    line-height: 1;

    max-width: 100%;

    overflow-wrap: break-word;
}

    .technology-header p {
        font-size: 14px;
    }

}
.technology-header {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* =========================
   BENCHMARKS SECTION
========================= */

.benchmarks {
    position: relative;

    min-height: 100vh;

    padding: 140px 60px;

    background: #08061d;

    overflow: hidden;
}


.benchmarks::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.08);
}


.benchmarks::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -300px;
    bottom: -250px;

    background: rgba(70, 55, 180, 0.10);

    filter: blur(130px);

    border-radius: 50%;

    pointer-events: none;
}


.benchmarks-container {
    max-width: 1400px;

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


/* =========================
   HEADER
========================= */

.benchmarks-header {
    max-width: 800px;

    margin-bottom: 80px;
}


.benchmarks-label {
    margin-bottom: 22px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.42);
}


.benchmarks-header h2 {
    font-size: clamp(45px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;

    text-transform: uppercase;
}


.benchmarks-header h2 span {
    display: block;

    color: rgba(255, 255, 255, 0.38);
}


.benchmarks-header p {
    max-width: 650px;

    margin-top: 30px;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================
   BENCHMARK LAYOUT
========================= */

.benchmarks-layout {
    display: grid;

    grid-template-columns: 1.05fr 1fr;

    gap: 70px;

    align-items: stretch;
}


/* =========================
   VISUAL
========================= */

.benchmark-visual {
    min-height: 570px;

    position: relative;
}


.benchmark-image-placeholder {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 570px;

    overflow: hidden;

    border: 1px solid rgba(92, 78, 190, 0.25);

    background:
        radial-gradient(
            circle at center,
            rgba(70, 55, 180, 0.22),
            transparent 55%
        ),
        #0b0824;
}


/* futuristic grid */

.visual-grid {
    position: absolute;

    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(
            rgba(139, 124, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(139, 124, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}


.visual-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;
}


.visual-content span {
    display: block;

    font-size: 75px;

    font-weight: 700;

    letter-spacing: -4px;

    color: rgba(255, 255, 255, 0.88);
}


.visual-content small {
    display: block;

    margin-top: 12px;

    font-size: 9px;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.4);
}


/* =========================
   BENCHMARK CARDS
========================= */

.benchmark-stats {
    display: flex;

    flex-direction: column;

    gap: 1px;

    background: rgba(92, 78, 190, 0.18);

    border: 1px solid rgba(92, 78, 190, 0.20);
}


.benchmark-card {
    flex: 1;

    display: flex;

    align-items: center;

    gap: 30px;

    padding: 28px 30px;

    background: #0c0924;

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}


.benchmark-card:hover {
    background: #13103a;

    transform: translateX(6px);
}


.benchmark-value {
    min-width: 105px;

    font-size: 28px;

    font-weight: 700;

    letter-spacing: -1px;

    color: #9a8cff;
}


.benchmark-info h3 {
    margin-bottom: 8px;

    font-size: 16px;

    font-weight: 600;
}


.benchmark-info p {
    font-size: 12px;

    line-height: 1.6;

    color: rgba(255, 255, 255, 0.45);
}


/* =========================
   BENCHMARKS MOBILE
========================= */

@media (max-width: 900px) {

    .benchmarks {
        padding: 110px 25px;
    }

    .benchmarks-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .benchmark-visual {
        min-height: 420px;
    }

    .benchmark-image-placeholder {
        min-height: 420px;
    }

}


@media (max-width: 600px) {

    .benchmarks {
        padding: 90px 24px;
    }

    .benchmarks-header {
        margin-bottom: 50px;
    }

    .benchmarks-header h2 {
        font-size: clamp(40px, 12vw, 58px);

        letter-spacing: -2px;
    }

    .benchmarks-header p {
        font-size: 14px;
    }

    .benchmark-card {
        gap: 18px;

        padding: 25px 20px;
    }

    .benchmark-value {
        min-width: 75px;

        font-size: 22px;
    }

    .benchmark-info h3 {
        font-size: 14px;
    }

    .benchmark-info p {
        font-size: 11px;
    }

}
/* =========================
   BENCHMARKS PHONE OPTIMIZATION
========================= */

@media (max-width: 600px) {

    .benchmarks-layout {
        width: 100%;
    }

    .benchmark-visual {
        width: 100%;
        min-height: 360px;
    }

    .benchmark-image-placeholder {
        width: 100%;
        min-height: 360px;
    }

    .visual-content span {
        font-size: 58px;
    }

    .benchmark-stats {
        width: 100%;
    }

    .benchmark-card {
        width: 100%;

        display: flex;
        align-items: flex-start;

        gap: 15px;

        padding: 24px 18px;
    }

    .benchmark-value {
        min-width: 68px;

        font-size: 20px;

        line-height: 1.2;
    }

    .benchmark-info {
        flex: 1;
        min-width: 0;
    }

    .benchmark-info h3 {
        font-size: 14px;

        line-height: 1.4;

        margin-bottom: 7px;
    }

    .benchmark-info p {
        font-size: 11px;

        line-height: 1.6;
    }

}
/* =========================
   APPLICATIONS SECTION
========================= */

.applications {
    position: relative;

    min-height: 100vh;

    padding: 140px 60px;

    background:
        url("../images/applications-png.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}
/* =========================
   APPLICATIONS SCROLL REVEAL
========================= */

.application-card {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.4s ease;
}


/* =========================
   APPLICATIONS VISIBLE
========================= */

.applications.visible .application-card {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   ONE AFTER ANOTHER
========================= */

.applications.visible .application-card:nth-child(1) {
    transition-delay: 0.10s;
}

.applications.visible .application-card:nth-child(2) {
    transition-delay: 0.25s;
}

.applications.visible .application-card:nth-child(3) {
    transition-delay: 0.40s;
}

.applications.visible .application-card:nth-child(4) {
    transition-delay: 0.55s;
}


/* =========================
   APPLICATION HOVER
========================= */

.applications.visible .application-card:hover {
    background: rgba(19, 16, 58, 0.88);

    transform: translateY(-6px);
}
/* =========================
   APPLICATIONS BACKGROUND OVERLAY
========================= */

.applications {
    position: relative;
    overflow: hidden;
}

.applications::before {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(5, 3, 25, 0.82);

    z-index: 0;

    pointer-events: none;
}

.applications-container {
    position: relative;

    z-index: 1;
}

/* =========================
   IMAGE OVERLAY
========================= */

.applications-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 5, 26, 0.94) 0%,
            rgba(10, 7, 35, 0.78) 50%,
            rgba(12, 8, 40, 0.60) 100%
        );

    z-index: 1;
}


/* =========================
   CONTAINER
========================= */

.applications-container {
    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.applications-header {
    max-width: 780px;

    margin-bottom: 75px;
}


.applications-label {
    margin-bottom: 22px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.48);
}


.applications-header h2 {
    font-size: clamp(45px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;

    text-transform: uppercase;
}


.applications-header h2 span {
    display: block;

    color: rgba(255, 255, 255, 0.42);
}


.applications-header p {
    max-width: 650px;

    margin-top: 30px;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.60);
}


/* =========================
   APPLICATION CARDS
========================= */

.application-cards {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1px;

    background: rgba(92, 78, 190, 0.18);

    border: 1px solid rgba(92, 78, 190, 0.22);
}


.application-card {
    min-height: 300px;

    padding: 35px 30px;

    background: rgba(8, 6, 29, 0.72);

    backdrop-filter: blur(8px);

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}


.application-card:hover {
    background: rgba(19, 16, 58, 0.88);

    transform: translateY(-6px);
}


/* =========================
   CARD NUMBER
========================= */

.application-number {
    margin-bottom: 70px;

    font-size: 10px;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.38);
}


/* =========================
   CARD TITLE
========================= */

.application-card h3 {
    margin-bottom: 18px;

    font-size: 19px;

    font-weight: 600;

    letter-spacing: -0.5px;
}


/* =========================
   CARD TEXT
========================= */

.application-card p {
    font-size: 13px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.52);
}


/* =========================
   APPLICATIONS MOBILE
========================= */

@media (max-width: 900px) {

    .applications {
        padding: 110px 25px;

        background-position: center center;
    }

    .application-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .applications {
        padding: 90px 24px;

        background-position: center center;
    }

    .applications-header {
        margin-bottom: 50px;
    }

    .applications-header h2 {
        font-size: clamp(40px, 12vw, 58px);

        letter-spacing: -2px;
    }

    .applications-header p {
        font-size: 14px;
    }

    .application-cards {
        grid-template-columns: 1fr;
    }

    .application-card {
        min-height: auto;

        padding: 30px 25px;
    }

    .application-number {
        margin-bottom: 45px;
    }

}
/* =========================
   IP & COMPLIANCE
========================= */

.compliance {
    position: relative;

    min-height: 100vh;

    padding: 140px 60px;

    background:
        linear-gradient(
            135deg,
            #080620 0%,
            #0d0a2b 50%,
            #07051a 100%
        );

    overflow: hidden;
}


/* =========================
   BACKGROUND GLOW
========================= */

.compliance::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -200px;
    right: -180px;

    background: rgba(82, 67, 190, 0.16);

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================
   CONTAINER
========================= */

.compliance-container {
    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.compliance-header {
    max-width: 800px;

    margin-bottom: 75px;
}


.compliance-header h2 {
    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.98;

    font-weight: 700;

    letter-spacing: -3px;

    text-transform: uppercase;
}


.compliance-header p {
    max-width: 650px;

    margin-top: 30px;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.58);
}


/* =========================
   COMPLIANCE GRID
========================= */

.compliance-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: rgba(92, 78, 190, 0.20);

    border: 1px solid rgba(92, 78, 190, 0.24);
}


/* =========================
   COMPLIANCE CARDS
========================= */

.compliance-card {
    min-height: 320px;

    padding: 35px 30px;

    background: rgba(12, 9, 36, 0.92);

    position: relative;

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.4s ease;
}


/* =========================
   SHOW CARDS
========================= */

.compliance-card.show {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   ONE AFTER ANOTHER
========================= */

.compliance-card:nth-child(1) {
    transition-delay: 0.05s;
}

.compliance-card:nth-child(2) {
    transition-delay: 0.25s;
}

.compliance-card:nth-child(3) {
    transition-delay: 0.45s;
}


/* =========================
   CARD HOVER
========================= */

.compliance-card:hover {
    background: #13103a;

    transform: translateY(-5px);
}


/* =========================
   NUMBER
========================= */

.compliance-number {
    margin-bottom: 70px;

    font-size: 10px;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.35);
}


/* =========================
   CARD TITLE
========================= */

.compliance-card h3 {
    max-width: 300px;

    margin-bottom: 18px;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 600;

    letter-spacing: -0.5px;
}


/* =========================
   CARD TEXT
========================= */

.compliance-card p {
    max-width: 320px;

    font-size: 13px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.48);
}


/* =========================
   COMPLIANCE MOBILE
========================= */

@media (max-width: 900px) {

    .compliance {
        padding: 110px 25px;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .compliance {
        padding: 90px 24px;
    }

    .compliance-header {
        margin-bottom: 50px;
    }

    .compliance-header h2 {
        font-size: clamp(40px, 12vw, 58px);

        letter-spacing: -2px;
    }

    .compliance-header p {
        font-size: 14px;
    }

    .compliance-card {
        min-height: auto;

        padding: 30px 25px;
    }

    .compliance-number {
        margin-bottom: 45px;
    }

    .compliance-card h3 {
        font-size: 18px;
    }

    .compliance-card p {
        font-size: 12px;
    }

}
/* =========================
   FOOTER
========================= */

.footer {
    padding: 35px 60px 30px;

    background: #050416;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}


.footer-contact {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 25px;
}


.footer-contact a {
    color: rgba(255, 255, 255, 0.65);

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 1px;

    transition: 0.3s ease;
}


.footer-contact a:hover {
    color: #ffffff;
}


.footer-contact span {
    color: rgba(255, 255, 255, 0.25);

    font-size: 10px;
}


.footer-line {
    width: 100%;

    height: 1px;

    background: rgba(255, 255, 255, 0.07);

    margin-bottom: 22px;
}


.footer-copy {
    font-size: 10px;

    letter-spacing: 1.5px;

    color: rgba(255, 255, 255, 0.35);

    text-transform: uppercase;
}
/* =========================
   MOBILE HERO & NAVBAR
========================= */

@media (max-width: 768px) {

    /* NAVBAR */

    .navbar {
        position: fixed;

        top: 0;
        left: 0;

        width: 100%;

        padding: 16px 20px;

        z-index: 1000;
    }

    .navbar.scrolled {
        padding: 13px 20px;
    }

    .nav-container {
        width: 100%;
    }

    .nav-links {
        display: flex;

        align-items: center;

        justify-content: flex-end;

        gap: 10px;

        flex: 1;

        min-width: 0;
    }

    .nav-links a {
        font-size: 11px;

        letter-spacing: 0.3px;

        white-space: nowrap;
    }

    .logo img {
        width: 105px;
        height: auto;
    }


    /* HERO */

    .hero {
        min-height: 100svh;

        height: 100svh;

        align-items: center;
    }


    /* VIDEO */

    .hero-video {
        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center center;
    }


    /* HERO CONTENT */

    .hero-content {

        width: 100%;

        max-width: 100%;

        padding: 115px 24px 90px;

        margin: 0;
    }


    .hero-label {
        display: none;
    }


    .hero h1 {

        max-width: 100%;

        font-size: clamp(32px, 8.5vw, 44px);

        line-height: 0.98;

        letter-spacing: -2px;

        word-break: normal;

        overflow-wrap: normal;
    }


    .hero h1 span {
        display: block;
    }


    .hero-content p {

        max-width: 100%;

        margin-top: 25px;

        font-size: 14px;

        line-height: 1.65;
    }


    .hero-button {

        margin-top: 30px;

        padding: 15px 22px;

        font-size: 10px;

        letter-spacing: 1.5px;
    }


    /* SCROLL INDICATOR */

    .scroll-indicator {

        left: 24px;

        right: auto;

        bottom: 22px;
    }

}
