/*==================================================
AGILENCE DESIGN SYSTEM
Version: 2.0
==================================================*/

/*==============================
RESET
==============================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    min-height:100vh;
}

img{
    max-width:100%;
    display:block;
}

button,
input,
textarea{
    font:inherit;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/*==============================
ROOT VARIABLES
==============================*/

:root{

    /* Brand */

    --primary:#6D5EF9;
    --primary-dark:#5445F5;
    --primary-light:#8B80FF;

    /* Background */

    --bg:#08080B;
    --bg-light:#101014;
    --bg-card:#111116;
    --bg-card-hover:#17171E;

    /* Text */

    --text:#F7F7FA;
    --text-secondary:#C6C7D2;
    --text-light:#8D90A6;

    /* Borders */

    --border:rgba(255,255,255,.08);

    /* Effects */

    --shadow-lg:
        0 25px 80px rgba(0,0,0,.45);

    --shadow-md:
        0 12px 35px rgba(0,0,0,.35);

    --shadow-sm:
        0 5px 18px rgba(0,0,0,.18);

    --radius-xl:28px;
    --radius-lg:20px;
    --radius-md:14px;
    --radius-sm:10px;

    /* Layout */

    --container:1280px;

    --section-space:140px;

    --transition:.35s ease;

}

/*==============================
BODY
==============================*/

body{

    font-family:"Inter",sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    position:relative;

}

/*==============================
BACKGROUND GLOW
==============================*/

body::before{

    content:"";

    position:fixed;

    width:700px;
    height:700px;

    background:

        radial-gradient(circle,
        rgba(109,94,249,.18),
        transparent 70%);

    top:-250px;
    right:-250px;

    pointer-events:none;

    z-index:-1;

}

body::after{

    content:"";

    position:fixed;

    width:550px;
    height:550px;

    background:

        radial-gradient(circle,
        rgba(80,70,220,.15),
        transparent 70%);

    bottom:-200px;
    left:-200px;

    pointer-events:none;

    z-index:-1;

}

/*==============================
TYPOGRAPHY
==============================*/

h1,
h2,
h3,
h4{

    line-height:1.15;

    letter-spacing:-.03em;

    font-weight:700;

}

h1{

    font-size:clamp(3.2rem,7vw,5.8rem);

    max-width:760px;

}

h2{

    font-size:clamp(2.4rem,5vw,4rem);

    margin-bottom:24px;

}

h3{

    font-size:1.45rem;

}

p{

    color:var(--text-secondary);

    font-size:1.05rem;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--primary-light);

    font-size:.9rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.14em;

    margin-bottom:18px;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:var(--primary-light);

    font-weight:700;

    text-transform:uppercase;

    font-size:.85rem;

    letter-spacing:.15em;

}

.section-heading p{

    max-width:720px;

    margin:20px auto 0;

}

/*==============================
CONTAINER
==============================*/

.container{

    width:min(92%,var(--container));

    margin-inline:auto;

}

.narrow{

    max-width:820px;

    text-align:center;

}

/*==============================
SECTIONS
==============================*/

section{

    padding:var(--section-space) 0;

    position:relative;

}

/*==============================
BUTTONS
==============================*/

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:white;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow-md);

    position:relative;

    overflow:hidden;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:

        0 20px 50px rgba(109,94,249,.30);

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    background:rgba(255,255,255,.35);

    animation:ripple .6s linear;

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

    transition:var(--transition);

}

.secondary-btn:hover{

    background:rgba(255,255,255,.05);

    transform:translateY(-3px);

}

/*==============================
CARDS
==============================*/

.about-card,
.service-card,
.tech-card,
.industry-card,
.project-card,
.why-card,
.contact-card,
.coming-card{

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    border-radius:var(--radius-lg);

    backdrop-filter:blur(22px);

    transition:var(--transition);

}

.about-card:hover,
.service-card:hover,
.tech-card:hover,
.industry-card:hover,
.project-card:hover,
.why-card:hover,
.contact-card:hover,
.coming-card:hover{

    transform:translateY(-10px);

    border-color:rgba(109,94,249,.45);

    background:var(--bg-card-hover);

    box-shadow:var(--shadow-lg);

}

/*==============================
UTILITIES
==============================*/

.center{

    text-align:center;

}

.mt-2{
    margin-top:2rem;
}

.mt-3{
    margin-top:3rem;
}

.mt-4{
    margin-top:4rem;
}

.mb-2{
    margin-bottom:2rem;
}

.mb-3{
    margin-bottom:3rem;
}

.mb-4{
    margin-bottom:4rem;
}

/*==============================
CUSTOM SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0A0A0D;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-light);

}

/*==============================
TEXT SELECTION
==============================*/

::selection{

    background:var(--primary);

    color:white;

}

/*==============================
REVEAL ANIMATION
==============================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}

/*==================================================
NAVIGATION
==================================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.35s ease;

}

.header.scrolled{

    background:rgba(8,8,11,.75);

    backdrop-filter:blur(24px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

.navbar{

    height:88px;

    display:flex;

    align-items:center;

}

.nav-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:48px;

    height:48px;

    object-fit:contain;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:42px;

}

.nav-links a{

    position:relative;

    color:var(--text-secondary);

    font-size:.96rem;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:white;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    border-radius:20px;

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.mobile-toggle{

    display:none;

    width:42px;

    height:42px;

    cursor:pointer;

    align-items:center;

    justify-content:center;

}

/*==================================================
HERO
==================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding-top:120px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:90px;

    align-items:center;

}

/*==================================================
LEFT
==================================================*/

.hero-content{

    position:relative;

    z-index:3;

}

.eyebrow{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(109,94,249,.10);

    border:1px solid rgba(109,94,249,.25);

    color:var(--primary-light);

    font-size:.88rem;

    font-weight:600;

    margin-bottom:26px;

}

.hero h1{

    margin-bottom:26px;

}

.hero h1{

    background:

        linear-gradient(

        180deg,

        #FFFFFF,

        #D7D7E4 80%

        );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    max-width:650px;

    font-size:1.16rem;

    margin-bottom:42px;

}

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:65px;

}

/*==================================================
HERO HIGHLIGHTS
==================================================*/

.hero-highlights{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.hero-card{

    padding:26px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border-radius:22px;

    transition:.35s;

}

.hero-card:hover{

    transform:translateY(-8px);

    border-color:rgba(109,94,249,.35);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.hero-card h3{

    margin-bottom:12px;

    font-size:1.1rem;

}

.hero-card p{

    margin:0;

    font-size:.95rem;

}

/*==================================================
RIGHT SIDE
==================================================*/

.hero-visual{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.workflow-graphic{

    position:relative;

    width:430px;

    height:430px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:

        radial-gradient(

            circle,

            rgba(109,94,249,.15),

            transparent 70%

        );

}

.workflow-graphic img{

    width:140px;

    z-index:20;

    animation:floatLogo 6s ease-in-out infinite;

}

/*==================================================
ORBITS
==================================================*/

.orbit{

    position:absolute;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

}

.orbit-one{

    width:230px;

    height:230px;

    animation:rotateClockwise 18s linear infinite;

}

.orbit-two{

    width:320px;

    height:320px;

    animation:rotateCounter 25s linear infinite;

}

.orbit-three{

    width:410px;

    height:410px;

    animation:rotateClockwise 36s linear infinite;

}

.orbit::before{

    content:"";

    position:absolute;

    width:12px;

    height:12px;

    border-radius:50%;

    background:var(--primary);

    top:-6px;

    left:50%;

    transform:translateX(-50%);

    box-shadow:

    0 0 20px rgba(109,94,249,.9);

}

/*==================================================
BACKGROUND EFFECTS
==================================================*/

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-180px;

    top:-120px;

    background:

        radial-gradient(circle,

        rgba(109,94,249,.14),

        transparent 72%);

    filter:blur(10px);

    pointer-events:none;

}

.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-180px;

    bottom:-180px;

    background:

        radial-gradient(circle,

        rgba(90,70,250,.12),

        transparent 75%);

}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes floatLogo{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes rotateClockwise{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes rotateCounter{

    from{

        transform:rotate(360deg);

    }

    to{

        transform:rotate(0deg);

    }

}

/*==================================================
ABOUT
==================================================*/

#about{

    position:relative;

}

#about::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top left,
        rgba(109,94,249,.06),
        transparent 40%);

    pointer-events:none;

}

.about-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.about-card{

    padding:42px;

    position:relative;

    overflow:hidden;

}

.about-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
        135deg,
        rgba(109,94,249,.08),
        transparent 65%);

    opacity:0;

    transition:.4s;

}

.about-card:hover::before{

    opacity:1;

}

.about-card h3{

    margin-bottom:18px;

    font-size:1.35rem;

}

.about-card p{

    color:var(--text-secondary);

}

/*==================================================
SERVICES
==================================================*/

#services{

    position:relative;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    padding:38px;

    display:flex;

    flex-direction:column;

    position:relative;

    overflow:hidden;

    min-height:560px;

}

.service-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    top:-110px;

    right:-110px;

    border-radius:50%;

    background:

        radial-gradient(circle,

        rgba(109,94,249,.18),

        transparent 70%);

    transition:.4s;

}

.service-card:hover::before{

    transform:scale(1.3);

}

.service-icon{

    width:68px;

    height:68px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    margin-bottom:28px;

    background:

        linear-gradient(

        135deg,

        rgba(109,94,249,.18),

        rgba(109,94,249,.06)

        );

    border:1px solid rgba(109,94,249,.18);

    font-size:28px;

}

.service-card h3{

    margin-bottom:18px;

    font-size:1.45rem;

}

.service-card>p{

    margin-bottom:30px;

    color:var(--text-secondary);

}

.service-card ul{

    margin-top:auto;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.service-card li{

    display:flex;

    align-items:center;

    gap:14px;

    color:var(--text-secondary);

    font-size:.97rem;

}

.service-card li::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

    flex-shrink:0;

    box-shadow:

        0 0 12px rgba(109,94,249,.8);

}

.service-card:hover{

    transform:translateY(-14px);

}

.service-card:hover .service-icon{

    transform:rotate(-6deg) scale(1.05);

    transition:.35s;

}

/*==================================================
SECTION DIVIDER
==================================================*/

#services::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-40px;

    transform:translateX(-50%);

    width:180px;

    height:1px;

    background:

        linear-gradient(

        to right,

        transparent,

        rgba(109,94,249,.45),

        transparent);

}

/*==================================================
COMMON GRID ANIMATION
==================================================*/

.about-card,
.service-card{

    opacity:0;

    transform:translateY(40px);

}

.about-card.show,
.service-card.show{

    opacity:1;

    transform:none;

    transition:

        opacity .8s ease,

        transform .8s ease;

}

/*==================================================
STAGGER DELAYS
==================================================*/

.about-card:nth-child(1),
.service-card:nth-child(1){

    transition-delay:.05s;

}

.about-card:nth-child(2),
.service-card:nth-child(2){

    transition-delay:.15s;

}

.about-card:nth-child(3),
.service-card:nth-child(3){

    transition-delay:.25s;

}

.about-card:nth-child(4){

    transition-delay:.35s;

}

/*==================================================
SERVICE TAG (OPTIONAL)
==================================================*/

.service-card .tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:6px 14px;

    border-radius:999px;

    margin-bottom:18px;

    font-size:.78rem;

    font-weight:600;

    letter-spacing:.08em;

    text-transform:uppercase;

    background:rgba(109,94,249,.08);

    color:var(--primary-light);

    border:1px solid rgba(109,94,249,.18);

}

/*==================================================
SERVICE LINK (OPTIONAL)
==================================================*/

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:26px;

    color:var(--primary-light);

    font-weight:600;

    transition:.3s;

}

.service-link:hover{

    gap:16px;

}

/*==================================================
TECHNOLOGY
==================================================*/

#technology{

    position:relative;

}

#technology::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at right,
        rgba(109,94,249,.08),
        transparent 45%);

    pointer-events:none;

}

.technology-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:24px;

}

.tech-card{

    padding:34px 26px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.tech-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            180deg,
            rgba(109,94,249,.12),
            transparent
        );

    opacity:0;

    transition:.35s;

}

.tech-card:hover::before{

    opacity:1;

}

.tech-card h3{

    font-size:1.2rem;

    margin-bottom:14px;

}

.tech-card p{

    font-size:.95rem;

}

.tech-card:hover{

    transform:

        translateY(-10px)
        scale(1.02);

}

/*==================================================
INDUSTRIES
==================================================*/

#industries{

    position:relative;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.industry-card{

    padding:40px;

    min-height:240px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    position:relative;

    overflow:hidden;

}

.industry-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-90px;

    bottom:-90px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(109,94,249,.16),

            transparent 70%

        );

    transition:.4s;

}

.industry-card:hover::after{

    transform:scale(1.35);

}

.industry-card h3{

    margin-bottom:16px;

}

.industry-card p{

    color:var(--text-secondary);

}

.industry-card:hover{

    transform:

        translateY(-12px);

}

/*==================================================
PROCESS
==================================================*/

#process{

    position:relative;

}

.timeline{

    position:relative;

    margin-top:80px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    bottom:0;

    width:2px;

    background:

        linear-gradient(

            to bottom,

            transparent,

            rgba(109,94,249,.55),

            transparent

        );

    transform:translateX(-50%);

}

.timeline-step{

    position:relative;

    width:calc(50% - 60px);

    padding:40px;

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    border-radius:24px;

    backdrop-filter:blur(18px);

    transition:.35s;

    margin-bottom:60px;

}

.timeline-step:nth-child(odd){

    margin-right:auto;

}

.timeline-step:nth-child(even){

    margin-left:auto;

}

.timeline-step:hover{

    transform:translateY(-8px);

    border-color:rgba(109,94,249,.45);

    box-shadow:var(--shadow-lg);

}

.step-number{

    width:64px;

    height:64px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            var(--primary-dark)

        );

    color:white;

    font-weight:700;

    margin-bottom:24px;

    box-shadow:

        0 12px 28px rgba(109,94,249,.35);

}

.timeline-step h3{

    margin-bottom:16px;

}

.timeline-step p{

    color:var(--text-secondary);

}

.timeline-line{

    display:none;

}

/*==================================================
TIMELINE ANIMATION
==================================================*/

.timeline-step{

    opacity:0;

    transform:translateY(60px);

}

.timeline-step.show{

    opacity:1;

    transform:none;

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.timeline-step:nth-child(1){

    transition-delay:.05s;

}

.timeline-step:nth-child(3){

    transition-delay:.15s;

}

.timeline-step:nth-child(5){

    transition-delay:.25s;

}

.timeline-step:nth-child(7){

    transition-delay:.35s;

}

/*==================================================
SECTION DIVIDER
==================================================*/

#process::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-40px;

    transform:translateX(-50%);

    width:180px;

    height:1px;

    background:

        linear-gradient(

            to right,

            transparent,

            rgba(109,94,249,.45),

            transparent

        );

}

/*==================================================
PROJECTS
==================================================*/

#projects{

    position:relative;

}

#projects::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at center,
        rgba(109,94,249,.05),
        transparent 60%);

    pointer-events:none;

}

.projects-grid{

    display:grid;

    gap:36px;

}

.project-card{

    padding:50px;

    position:relative;

    overflow:hidden;

}

.project-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            135deg,
            rgba(109,94,249,.08),
            transparent 55%
        );

    opacity:0;

    transition:.4s;

}

.project-card:hover::before{

    opacity:1;

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

    margin-bottom:34px;

}

.project-category{

    display:inline-flex;

    align-items:center;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(109,94,249,.12);

    color:var(--primary-light);

    border:1px solid rgba(109,94,249,.22);

    font-size:.82rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.project-card h3{

    font-size:2rem;

    margin-top:20px;

}

.project-body{

    display:grid;

    gap:22px;

}

.project-body h4{

    color:white;

    font-size:1.05rem;

}

.project-body p{

    color:var(--text-secondary);

}

.project-body ul{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:6px;

}

.project-body li{

    padding:8px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    font-size:.88rem;

    color:var(--text-secondary);

    transition:.3s;

}

.project-body li:hover{

    border-color:rgba(109,94,249,.35);

    color:white;

}

details{

    margin-top:10px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:22px;

}

summary{

    cursor:pointer;

    font-weight:600;

    color:var(--primary-light);

    transition:.3s;

}

summary:hover{

    color:white;

}

details p{

    margin-top:18px;

}

/*==================================================
WHY AGILENCE
==================================================*/

#why-agilence{

    position:relative;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.why-card{

    padding:42px;

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    width:200px;

    height:200px;

    top:-90px;

    right:-90px;

    border-radius:50%;

    background:

        radial-gradient(circle,
        rgba(109,94,249,.15),
        transparent 70%);

    transition:.4s;

}

.why-card:hover::before{

    transform:scale(1.25);

}

.why-card h3{

    margin-bottom:18px;

}

.why-card p{

    color:var(--text-secondary);

}

/*==================================================
TESTIMONIAL
==================================================*/

#testimonial{

    padding:160px 0;

    text-align:center;

    position:relative;

}

#testimonial::before{

    content:"";

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:620px;

    height:620px;

    border-radius:50%;

    background:

        radial-gradient(circle,
        rgba(109,94,249,.08),
        transparent 70%);

    pointer-events:none;

}

blockquote{

    max-width:900px;

    margin:auto;

    font-size:2rem;

    line-height:1.5;

    font-weight:500;

    color:white;

    position:relative;

}

blockquote::before{

    content:"“";

    position:absolute;

    left:-40px;

    top:-25px;

    font-size:6rem;

    color:rgba(109,94,249,.22);

}

#testimonial span{

    display:block;

    margin-top:40px;

    color:var(--primary-light);

    font-weight:600;

    letter-spacing:.08em;

    text-transform:uppercase;

    font-size:.9rem;

}

/*==================================================
PROJECT ANIMATIONS
==================================================*/

.project-card,
.why-card{

    opacity:0;

    transform:translateY(60px);

}

.project-card.show,
.why-card.show{

    opacity:1;

    transform:none;

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.project-card:nth-child(1){

    transition-delay:.05s;

}

.project-card:nth-child(2){

    transition-delay:.15s;

}

.project-card:nth-child(3){

    transition-delay:.25s;

}

.why-card:nth-child(1){

    transition-delay:.05s;

}

.why-card:nth-child(2){

    transition-delay:.15s;

}

.why-card:nth-child(3){

    transition-delay:.25s;

}

.why-card:nth-child(4){

    transition-delay:.35s;

}

/*==================================================
INSIGHTS
==================================================*/

#insights{
    position:relative;
}

.insights-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

    margin-top:70px;
    margin-bottom:60px;

}

.linkedin-card{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    overflow:hidden;

    transition:.35s;

    backdrop-filter:blur(20px);

}

.linkedin-card:hover{

    transform:translateY(-10px);

    border-color:rgba(109,94,249,.35);

    box-shadow:var(--shadow-lg);

}

.linkedin-card iframe{

    width:100%;

    height:720px;

    border:none;

}

/*==================================================
COMING SOON
==================================================*/

#coming-soon{

    position:relative;

}

.coming-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:26px;

    margin-top:70px;

}

.coming-card{

    padding:45px 30px;

    text-align:center;

}

.coming-card h3{

    font-size:1.2rem;

}

/*==================================================
CTA
==================================================*/

.cta-banner{

    margin-top:120px;

    padding:80px;

    border-radius:36px;

    text-align:center;

    background:

    linear-gradient(

        135deg,

        rgba(109,94,249,.18),

        rgba(109,94,249,.05)

    );

    border:1px solid rgba(109,94,249,.20);

    backdrop-filter:blur(24px);

}

.cta-banner h2{

    max-width:760px;

    margin:auto;

    margin-bottom:24px;

}

.cta-banner p{

    max-width:650px;

    margin:auto;

    margin-bottom:40px;

}

/*==================================================
CONTACT
==================================================*/

#contact{

    position:relative;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

    margin-top:70px;

}

.contact-card{

    padding:40px;

}

.contact-card h3{

    margin-bottom:18px;

}

.contact-card a{

    color:var(--primary-light);

    font-size:1.05rem;

    word-break:break-word;

    transition:.3s;

}

.contact-card a:hover{

    color:white;

}

.contact-buttons{

    text-align:center;

    margin-top:60px;

}

/*==================================================
FOOTER
==================================================*/

footer{

    padding:90px 0 40px;

    border-top:1px solid rgba(255,255,255,.06);

    margin-top:120px;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:80px;

    margin-bottom:60px;

}

.footer-logo{

    width:72px;

    margin-bottom:22px;

}

.footer-top h3{

    margin-bottom:10px;

}

.footer-top h4{

    margin-bottom:22px;

}

.footer-top ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-top a{

    color:var(--text-secondary);

    transition:.3s;

}

.footer-top a:hover{

    color:white;

}

.footer-bottom{

    padding-top:40px;

    border-top:1px solid rgba(255,255,255,.05);

    text-align:center;

}

.footer-bottom p{

    color:var(--text-light);

    font-size:.92rem;

}

/*==================================================
SECTION REVEAL
==================================================*/

.linkedin-card,
.coming-card,
.contact-card{

    opacity:0;

    transform:translateY(60px);

}

.linkedin-card.show,
.coming-card.show,
.contact-card.show{

    opacity:1;

    transform:none;

    transition:

        opacity .8s ease,

        transform .8s ease;

}

/*==================================================
RESPONSIVE DESIGN
==================================================*/

/*==============================
1200px
==============================*/

@media (max-width:1200px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:80px;
    }

    .hero-content{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .hero-highlights{
        width:100%;
    }

    .workflow-graphic{
        width:380px;
        height:380px;
    }

    .technology-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

/*==============================
992px
==============================*/

@media (max-width:992px){

    :root{

        --section-space:100px;

    }

    .nav-links{

        display:none;

    }

    .mobile-toggle{

        display:flex;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .about-grid{

        grid-template-columns:1fr;

    }

    .technology-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .industry-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .contact-grid{

        grid-template-columns:1fr;

    }

    .coming-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .insights-grid{

        grid-template-columns:1fr;

    }

    .footer-top{

        grid-template-columns:1fr;

        gap:50px;

    }

}

/*==============================
TIMELINE
==============================*/

@media (max-width:992px){

.timeline::before{

    left:30px;

}

.timeline-step{

    width:100%;

    margin-left:70px !important;

    margin-right:0 !important;

}

}

/*==============================
768px
==============================*/

@media (max-width:768px){

    h1{

        font-size:3rem;

    }

    h2{

        font-size:2.3rem;

    }

    .hero{

        padding-top:140px;

    }

    .hero-buttons{

        flex-direction:column;

        width:100%;

    }

    .hero-buttons a{

        width:100%;

    }

    .hero-highlights{

        grid-template-columns:1fr;

    }

    .workflow-graphic{

        width:300px;

        height:300px;

    }

    .orbit-three{

        width:300px;

        height:300px;

    }

    .orbit-two{

        width:240px;

        height:240px;

    }

    .orbit-one{

        width:180px;

        height:180px;

    }

    .technology-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .industry-grid{

        grid-template-columns:1fr;

    }

    .coming-grid{

        grid-template-columns:1fr;

    }

    .project-top{

        flex-direction:column;

        gap:20px;

    }

    blockquote{

        font-size:1.45rem;

    }

    .cta-banner{

        padding:50px 30px;

    }

}

/*==============================
576px
==============================*/

@media (max-width:576px){

    :root{

        --section-space:80px;

    }

    .container{

        width:min(94%,1280px);

    }

    .hero{

        min-height:auto;

    }

    .hero-card{

        padding:22px;

    }

    .about-card,
    .service-card,
    .tech-card,
    .industry-card,
    .project-card,
    .why-card,
    .coming-card,
    .contact-card{

        padding:28px;

    }

    .technology-grid{

        grid-template-columns:1fr;

    }

    .workflow-graphic{

        width:240px;

        height:240px;

    }

    .workflow-graphic img{

        width:95px;

    }

    .footer-logo{

        width:60px;

    }

}

/*==============================
REDUCED MOTION
==============================*/

@media (prefers-reduced-motion:reduce){

*{

    animation:none !important;

    transition:none !important;

    scroll-behavior:auto !important;

}

}

/*==============================
PRINT
==============================*/

@media print{

body{

    background:white;

    color:black;

}

.header,
footer,
.hero-buttons{

    display:none;

}

section{

    padding:40px 0;

}

}

/*==================================================
MOUSE GLOW
==================================================*/

.mouse-glow{

position:fixed;

width:260px;

height:260px;

border-radius:50%;

pointer-events:none;

background:

radial-gradient(circle,

rgba(109,94,249,.08),

transparent 70%);

transform:translate(-50%,-50%);

z-index:-1;

filter:blur(12px);

transition:

left .08s linear,

top .08s linear;

}

/*==================================================
DETAILS
==================================================*/

@keyframes fadeDown{

from{

opacity:0;

transform:translateY(-12px);

}

to{

opacity:1;

transform:none;

}

}

/*==================================================
PAGE LOAD
==================================================*/

body{

opacity:0;

transition:opacity .4s ease;

}

body.loaded{

opacity:1;

}

/*==================================================
SCROLL PROGRESS
==================================================*/

.scroll-progress{

position:fixed;

top:0;

left:0;

height:3px;

width:0;

background:linear-gradient(
90deg,
var(--primary),
var(--primary-light)
);

z-index:9999;

}

/*==================================================
BACK TO TOP
==================================================*/

.back-to-top{

position:fixed;

right:28px;

bottom:28px;

width:52px;

height:52px;

border:none;

border-radius:50%;

background:var(--primary);

color:white;

font-size:22px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.35s;

box-shadow:var(--shadow-md);

z-index:999;

}

.back-to-top:hover{

transform:translateY(-5px);

}

.back-to-top.visible{

opacity:1;

visibility:visible;

}

/*==================================================
MOBILE NAVIGATION
==================================================*/

@media (max-width:992px){

.nav-links{

position:fixed;

top:88px;

left:0;

width:100%;

background:#0D0D12;

padding:40px;

display:flex;

flex-direction:column;

gap:24px;

transform:translateY(-120%);

transition:.35s ease;

border-bottom:1px solid rgba(255,255,255,.08);

}

.nav-links.mobile-open{

transform:translateY(0);

}

.mobile-toggle{

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:white;

cursor:pointer;

}

}

