<style>

/* =========================================================
   ROOT
========================================================= */

:root{

    --black:#08080b;
    --dark:#0d0d12;
    --dark-2:#111118;

    --white:#ffffff;
    --text:#a4a4b1;
    --muted:#696974;

    --purple:#7c4dff;
    --purple-2:#a46cff;
    --cyan:#43e8ff;

    --line:rgba(255,255,255,.10);

}


/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--black);

    color:var(--text);

    font-family:"DM Sans",sans-serif;

    overflow-x:hidden;

}

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:"Space Grotesk",sans-serif;

    color:#fff;

}

a{
    text-decoration:none;
}

button{
    font-family:inherit;
}

.container-custom{

    width:min(1240px,92%);

    margin:auto;

}


/* =========================================================
   PAGE LOADER
========================================================= */
.loader-logo img {
    width: 180px;
    height: auto;
    display: block;
}

.loader-screen{

    position:fixed;

    inset:0;

    background:#08080b;

    z-index:99999;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:opacity .7s ease,
               visibility .7s ease;

}

.loader-screen.hide{

    opacity:0;

    visibility:hidden;

}

.loader-logo{

    font-family:"Space Grotesk";

    font-size:42px;

    font-weight:700;

    color:#fff;

    letter-spacing:-2px;

}

.loader-logo span{

    color:var(--purple-2);

}


/* =========================================================
   HEADER
========================================================= */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:5000;

    padding:25px 0;

    transition:.35s;

}

.header.scrolled{

    padding:13px 0;

    background:rgba(8,8,11,.80);

    backdrop-filter:blur(20px);

    border-bottom:1px solid var(--line);

}

.header-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

}
.logo img {
    width: 160px;
    height: auto;
    display: block;
}
.logo{

    color:#fff;

    font-family:"Space Grotesk";

    font-size:29px;

    font-weight:700;

    letter-spacing:-1.5px;

}

.logo span{

    color:var(--purple-2);

}

.nav{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav a{

    color:#b8b8c3;

    font-size:14px;

    font-weight:500;

    transition:.3s;

}

.nav a:hover{

    color:#fff;

}

.header-contact{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff!important;

    padding:11px 18px;

    border:1px solid rgba(255,255,255,.2);

    border-radius:50px;

}

.header-contact i{

    color:var(--cyan);

}

.menu-button{

    display:none;

    border:0;

    background:transparent;

    color:#fff;

    font-size:27px;

}


/* =========================================================
   HERO
========================================================= */

.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

    border-bottom:1px solid var(--line);

    background:

    radial-gradient(
        circle at 70% 35%,
        rgba(124,77,255,.17),
        transparent 28%
    ),

    #08080b;

}


/* GRID */

.hero-grid{

    position:absolute;

    inset:0;

    opacity:.32;

    background-image:

    linear-gradient(
        rgba(255,255,255,.045) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.045) 1px,
        transparent 1px
    );

    background-size:70px 70px;

    mask-image:
    linear-gradient(
        to bottom,
        black 0%,
        transparent 90%
    );

}


/* HERO CONTENT */

.hero-content{

    position:relative;

    z-index:5;

    padding-top:80px;

}

.hero-small{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:28px;

    color:#aaaab5;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:11px;

    font-weight:600;

}

.hero-small-line{

    width:45px;

    height:1px;

    background:var(--purple-2);

}


.hero-title{

    font-size:clamp(65px,9vw,130px);

    line-height:.86;

    letter-spacing:-7px;

    max-width:1000px;

    margin-bottom:38px;

}

.hero-title .outline{

    color:transparent;

    -webkit-text-stroke:
    1px rgba(255,255,255,.65);

}

.hero-title .gradient{

    background:
    linear-gradient(
        90deg,
        #fff,
        #9870ff,
        #43e8ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}


.hero-bottom{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:50px;

    max-width:1050px;

}

.hero-description{

    max-width:530px;

    font-size:17px;

    line-height:1.8;

    color:#92929e;

}

.hero-description strong{

    color:#fff;

    font-weight:600;

}


.hero-action{

    flex-shrink:0;

}

.hero-button{

    display:inline-flex;

    align-items:center;

    gap:14px;

    color:#08080b;

    background:#fff;

    padding:16px 23px 16px 25px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    transition:.35s;

}

.hero-button i{

    width:35px;

    height:35px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--purple);

    color:#fff;

    transition:.35s;

}

.hero-button:hover{

    transform:translateY(-4px);

    color:#08080b;

    box-shadow:
    0 20px 50px rgba(124,77,255,.25);

}

.hero-button:hover i{

    transform:rotate(45deg);

}


/* HERO ORB */

.hero-orb{

    position:absolute;

    width:560px;

    height:560px;

    border-radius:50%;

    right:-110px;

    top:50%;

    transform:translateY(-50%);

    background:

    radial-gradient(
        circle at 35% 30%,
        #c6aaff 0,
        #7c4dff 17%,
        #3d207f 45%,
        #0b0b10 70%
    );

    filter:blur(.2px);

    opacity:.75;

    box-shadow:
    0 0 120px rgba(124,77,255,.20);

    animation:orbFloat 8s ease-in-out infinite;

}

@keyframes orbFloat{

    0%,100%{

        transform:
        translateY(-50%)
        scale(1);

    }

    50%{

        transform:
        translateY(-53%)
        scale(1.04);

    }

}

.orb-ring{

    position:absolute;

    border:1px solid rgba(255,255,255,.13);

    border-radius:50%;

    transform:rotate(-25deg);

}

.orb-ring-1{

    width:690px;

    height:220px;

    right:-180px;

    top:35%;

    animation:orbit 12s linear infinite;

}

.orb-ring-2{

    width:650px;

    height:180px;

    right:-150px;

    top:39%;

    transform:rotate(40deg);

    animation:orbit2 15s linear infinite;

}

@keyframes orbit{

    to{
        transform:rotate(335deg);
    }

}

@keyframes orbit2{

    to{
        transform:rotate(-320deg);
    }

}


/* HERO SCROLL */

.scroll-indicator{

    position:absolute;

    left:4%;

    bottom:35px;

    display:flex;

    align-items:center;

    gap:12px;

    color:#676772;

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:2px;

    z-index:5;

}

.scroll-line{

    width:55px;

    height:1px;

    background:#45454e;

}


/* =========================================================
   MARQUEE
========================================================= */

.marquee{

    overflow:hidden;

    border-bottom:1px solid var(--line);

    background:#0b0b0f;

}

.marquee-track{

    display:flex;

    width:max-content;

    animation:marquee 25s linear infinite;

}

.marquee-item{

    display:flex;

    align-items:center;

    gap:28px;

    padding:20px 35px;

    font-family:"Space Grotesk";

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:12px;

    color:#777783;

}

.marquee-item strong{

    color:#fff;

    font-size:15px;

}

.marquee-dot{

    width:7px;

    height:7px;

    border-radius:50%;

    background:var(--purple);

}

@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}


/* =========================================================
   COMMON SECTION
========================================================= */

.section{

    padding:140px 0;

    position:relative;

}

.section-label{

    color:var(--purple-2);

    font-family:"Space Grotesk";

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:11px;

    font-weight:600;

    margin-bottom:20px;

    display:flex;

    align-items:center;

    gap:12px;

}

.section-label:before{

    content:"";

    width:30px;

    height:1px;

    background:var(--purple);

}

.section-heading{

    font-size:clamp(42px,6vw,78px);

    line-height:.98;

    letter-spacing:-4px;

    max-width:900px;

}

.section-heading span{

    color:#555560;

}


/* =========================================================
   ABOUT
========================================================= */

.about{

    background:#08080b;

}

.about-layout{

    display:grid;

    grid-template-columns:
    1fr 1.2fr;

    gap:100px;

    align-items:start;

}

.about-left{

    position:sticky;

    top:120px;

}

.about-number{

    font-family:"Space Grotesk";

    font-size:150px;

    line-height:.7;

    letter-spacing:-12px;

    color:#17171e;

    margin-top:60px;

}

.about-right{

    padding-top:10px;

}

.about-lead{

    font-family:"Space Grotesk";

    color:#fff;

    font-size:27px;

    line-height:1.35;

    margin-bottom:35px;

}

.about-text{

    font-size:16px;

    line-height:1.9;

    color:#858591;

    margin-bottom:25px;

}

.about-highlight{

    border-left:2px solid var(--purple);

    padding-left:25px;

    margin-top:40px;

    color:#bdbdc7;

    font-size:15px;

    line-height:1.8;

}


/* =========================================================
   SERVICES
========================================================= */

.services{

    background:#0c0c11;

    border-top:1px solid var(--line);

    border-bottom:1px solid var(--line);

}

.services-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:40px;

    margin-bottom:70px;

}

.services-intro{

    max-width:360px;

    font-size:14px;

    line-height:1.8;

    color:#777783;

}

.service-list{

    border-top:1px solid var(--line);

}

.service-row{

    display:grid;

    grid-template-columns:
    90px 1fr 1.5fr 60px;

    align-items:center;

    gap:30px;

    padding:35px 0;

    border-bottom:1px solid var(--line);

    transition:.4s;

    position:relative;

}

.service-row:before{

    content:"";

    position:absolute;

    left:0;

    right:0;

    top:0;

    bottom:0;

    background:
    linear-gradient(
        90deg,
        rgba(124,77,255,.09),
        transparent
    );

    opacity:0;

    transition:.4s;

    pointer-events:none;

}

.service-row:hover:before{

    opacity:1;

}

.service-row:hover{

    padding-left:20px;

}

.service-no{

    font-family:"Space Grotesk";

    color:#555560;

    font-size:13px;

}

.service-name{

    color:#fff;

    font-family:"Space Grotesk";

    font-size:25px;

    letter-spacing:-1px;

    position:relative;

    z-index:2;

}

.service-description{

    font-size:14px;

    line-height:1.7;

    color:#777783;

    position:relative;

    z-index:2;

}

.service-arrow{

    width:45px;

    height:45px;

    border:1px solid #383840;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.35s;

    position:relative;

    z-index:2;

}

.service-row:hover .service-arrow{

    background:var(--purple);

    border-color:var(--purple);

    transform:rotate(45deg);

}


/* =========================================================
   DIGITAL STATEMENT
========================================================= */

.statement{

    min-height:650px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

    radial-gradient(
        circle at 75% 50%,
        rgba(124,77,255,.12),
        transparent 30%
    ),

    #08080b;

}

.statement-text{

    font-family:"Space Grotesk";

    font-size:clamp(42px,6.5vw,90px);

    line-height:.98;

    letter-spacing:-5px;

    max-width:1100px;

}

.statement-text .dim{

    color:#33333c;

}

.statement-text .purple{

    color:var(--purple-2);

}

.statement-circle{

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    border:1px solid rgba(124,77,255,.22);

    right:-150px;

    top:50%;

    transform:translateY(-50%);

}

.statement-circle:before{

    content:"";

    position:absolute;

    width:330px;

    height:330px;

    border-radius:50%;

    border:1px solid rgba(67,232,255,.12);

    top:84px;

    left:84px;

}

.statement-circle:after{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        var(--purple),
        transparent 70%
    );

    top:190px;

    left:190px;

    filter:blur(20px);

}


/* =========================================================
   PROCESS
========================================================= */

.process{

    background:#0c0c11;

    border-top:1px solid var(--line);

}

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    margin-top:70px;

    border-top:1px solid var(--line);

    border-bottom:1px solid var(--line);

}

.process-card{

    padding:35px 25px 40px;

    border-right:1px solid var(--line);

    min-height:300px;

    transition:.35s;

}

.process-card:last-child{

    border-right:0;

}

.process-card:hover{

    background:#111118;

}

.process-number{

    font-size:12px;

    color:var(--purple-2);

    font-family:"Space Grotesk";

    margin-bottom:80px;

}

.process-card h3{

    font-size:23px;

    margin-bottom:15px;

}

.process-card p{

    font-size:14px;

    line-height:1.8;

    color:#777783;

}


/* =========================================================
   CTA
========================================================= */

.cta{

    padding:130px 0;

    background:#08080b;

}

.cta-inner{

    border:1px solid var(--line);

    padding:80px;

    position:relative;

    overflow:hidden;

    background:

    radial-gradient(
        circle at 90% 50%,
        rgba(124,77,255,.15),
        transparent 30%
    );

}

.cta-inner:before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.07);

    right:-120px;

    top:-120px;

}

.cta-inner h2{

    font-size:clamp(45px,6vw,75px);

    line-height:.95;

    letter-spacing:-4px;

    max-width:800px;

    margin-bottom:30px;

}

.cta-inner h2 span{

    color:var(--purple-2);

}

.cta-inner p{

    max-width:600px;

    line-height:1.8;

    color:#777783;

    margin-bottom:35px;

}

.cta-button{

    display:inline-flex;

    align-items:center;

    gap:15px;

    background:var(--purple);

    color:#fff;

    padding:15px 24px;

    border-radius:3px;

    font-weight:600;

    font-size:14px;

    transition:.35s;

}

.cta-button i{

    transition:.35s;

}

.cta-button:hover{

    background:#fff;

    color:#08080b;

    transform:translateY(-3px);

}

.cta-button:hover i{

    transform:translateX(5px);

}


/* =========================================================
   FOOTER
========================================================= */

.footer{

    background:#050507;

    border-top:1px solid var(--line);

    padding:75px 0 25px;

}

.footer-top{

    display:grid;

    grid-template-columns:
    1.6fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:70px;

}

.footer-logo{

    color:#fff;

    font-family:"Space Grotesk";

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

    display:block;

}

.footer-logo span{

    color:var(--purple-2);

}

.footer-about{

    max-width:340px;

    color:#666671;

    font-size:14px;

    line-height:1.8;

}

.footer-title{

    color:#fff;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1.5px;

    margin-bottom:22px;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#666671;

    font-size:14px;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

}

.footer-contact{

    color:#666671;

    font-size:14px;

    line-height:1.8;

}

.footer-contact a{

    color:#9999a4;

}

.socials{

    display:flex;

    gap:9px;

    margin-top:25px;

}

.socials a{

    width:38px;

    height:38px;

    border:1px solid #292930;

    color:#aaaab3;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    transition:.3s;

}

.socials a:hover{

    background:var(--purple);

    border-color:var(--purple);

    color:#fff;

    transform:translateY(-3px);

}

.footer-bottom{

    padding-top:25px;

    border-top:1px solid var(--line);

    display:flex;

    justify-content:space-between;

    gap:20px;

    color:#55555f;

    font-size:12px;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    color:#08080b;

    border-radius:50%;

    z-index:4000;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.3s;

}

.back-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-top:hover{

    background:var(--purple);

    color:#fff;

}


/* =========================================================
   REVEAL
========================================================= */

.reveal{

    opacity:0;

    transform:translateY(45px);

    transition:
    opacity .8s ease,
    transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}


/* =========================================================
   CURSOR GLOW
========================================================= */

.cursor-glow{

    width:250px;

    height:250px;

    position:fixed;

    pointer-events:none;

    z-index:1;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(124,77,255,.07),
        transparent 65%
    );

    transform:
    translate(-50%,-50%);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .hero-orb{

        width:450px;

        height:450px;

        right:-150px;

        opacity:.45;

    }

    .hero-title{

        font-size:clamp(60px,10vw,100px);

    }

    .about-layout{

        gap:50px;

    }

}


@media(max-width:900px){

    .nav{

        position:fixed;

        top:70px;

        left:4%;

        right:4%;

        background:#101016;

        border:1px solid var(--line);

        padding:25px;

        border-radius:15px;

        display:none;

        flex-direction:column;

        align-items:stretch;

        gap:5px;

    }

    .nav.open{

        display:flex;

    }

    .nav a{

        padding:13px 10px;

    }

    .header-contact{

        margin-top:10px;

        justify-content:center;

    }

    .menu-button{

        display:block;

    }

    .hero-orb{

        width:400px;

        height:400px;

        right:-180px;

        top:60%;

    }

    .hero-bottom{

        flex-direction:column;

        align-items:flex-start;

    }

    .about-layout{

        grid-template-columns:1fr;

    }

    .about-left{

        position:static;

    }

    .about-number{

        display:none;

    }

    .services-top{

        display:block;

    }

    .services-intro{

        margin-top:25px;

    }

    .service-row{

        grid-template-columns:
        55px 1fr 50px;

    }

    .service-description{

        display:none;

    }

    .process-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .process-card:nth-child(2){

        border-right:0;

    }

    .process-card{

        border-bottom:1px solid var(--line);

    }

    .footer-top{

        grid-template-columns:
        repeat(2,1fr);

    }

}


@media(max-width:600px){

    .header{

        padding:18px 0;

    }

    .logo{

        font-size:25px;

    }

    .hero{

        min-height:800px;

    }

    .hero-content{

        padding-top:100px;

    }

    .hero-title{

        font-size:58px;

        letter-spacing:-4px;

        line-height:.9;

    }

    .hero-bottom{

        gap:30px;

    }

    .hero-description{

        font-size:15px;

    }

    .hero-orb{

        width:300px;

        height:300px;

        right:-120px;

        top:65%;

        opacity:.35;

    }

    .scroll-indicator{

        display:none;

    }

    .section{

        padding:90px 0;

    }

    .section-heading{

        font-size:43px;

        letter-spacing:-2px;

    }

    .about-lead{

        font-size:23px;

    }

    .service-row{

        grid-template-columns:
        45px 1fr 45px;

        gap:10px;

        padding:28px 0;

    }

    .service-name{

        font-size:19px;

    }

    .statement{

        min-height:520px;

    }

    .statement-text{

        font-size:47px;

        letter-spacing:-3px;

    }

    .statement-circle{

        width:300px;

        height:300px;

        right:-180px;

    }

    .statement-circle:before{

        width:200px;

        height:200px;

        top:49px;

        left:49px;

    }

    .statement-circle:after{

        width:80px;

        height:80px;

        top:110px;

        left:110px;

    }

    .process-grid{

        grid-template-columns:1fr;

    }

    .process-card{

        border-right:0;

        min-height:auto;

        padding:28px 0;

    }

    .process-card:last-child{

        border-bottom:0;

    }

    .process-number{

        margin-bottom:40px;

    }

    .cta{

        padding:80px 0;

    }

    .cta-inner{

        padding:45px 25px;

    }

    .cta-inner h2{

        font-size:47px;

        letter-spacing:-3px;

    }

    .footer-top{

        grid-template-columns:1fr;

        gap:40px;

    }

    .footer-bottom{

        flex-direction:column;

    }

    .back-top{

        right:15px;

        bottom:15px;

    }

}








/* LOGO */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 160px;
    height: auto;
    display: block;
}


/* SERVICES DROPDOWN */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}


/* SERVICES LINK */

.services-link {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ARROW */

.services-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}


/* SUBMENU */

.submenu {
    position: absolute;

    top: calc(100% + 15px);
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 240px;

    padding: 10px 0;

    background: #ffffff;

    border-radius: 8px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;

    z-index: 9999;
}


/* SUBMENU LINKS */

.submenu a {
    display: block;

    padding: 12px 20px;

    color: #111111;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.3s ease,
        padding-left 0.3s ease,
        color 0.3s ease;
}


/* SUBMENU HOVER */

.submenu a:hover {
    background: #805395;

    padding-left: 26px;
}


/* SHOW SUBMENU */

.nav-dropdown:hover .submenu {
    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* ROTATE ARROW */

.nav-dropdown:hover .services-link i {
    transform: rotate(180deg);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .services-link {
        width: 100%;
    }

    .submenu {
        position: static;

        width: 100%;

        transform: none;

        margin-top: 5px;

        padding: 5px 0;

        box-shadow: none;

        border-radius: 0;

        background: transparent;

        opacity: 1;

        visibility: visible;

        display: none;
    }

    .nav-dropdown:hover .submenu {
        transform: none;
    }

    .submenu a {
        padding: 10px 20px;
    }

    .submenu a:hover {
        padding-left: 25px;
    }

}








</style>