/*==================================================
ROOT
==================================================*/

:root{

    --bg-1:#050505;
    --bg-2:#0d1117;
    --bg-3:#111827;
    --bg-4:#171717;

    --text:#ffffff;
    --text-light:#d6d6d6;
    --text-muted:#9ca3af;

    --cyan:#00F5FF;
    --purple:#8B5CF6;
    --pink:#EC4899;
    --orange:#F97316;
    --green:#22C55E;
    --yellow:#EAB308;

    --border:rgba(255,255,255,.08);

    --radius:18px;

    --transition:.35s ease;

    --container:1400px;

}


/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;
    overflow-x:hidden;

}

body{

    background:var(--bg-1);

    color:var(--text);

    font-family:
    Inter,
    system-ui,
    sans-serif;

    line-height:1.7;

    overflow-x:hidden;

}


/*==================================================
SELECTION
==================================================*/

::selection{

    background:var(--cyan);
    color:#000;

}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#050505;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(

        180deg,

        var(--purple),

        var(--cyan)

    );

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:linear-gradient(

        180deg,

        var(--pink),

        var(--cyan)

    );

}


/*==================================================
TYPOGRAPHY
==================================================*/

h1{

    font-size:clamp(4rem,7vw,6.5rem);

    line-height:1.05;

    letter-spacing:-4px;

    font-weight:800;

}

h2{

    font-size:clamp(2.5rem,5vw,4rem);

    line-height:1.1;

    letter-spacing:-2px;

    font-weight:700;

}

h3{

    font-size:1.7rem;

    font-weight:700;

}

h4{

    font-size:1.2rem;

}

p{

    color:var(--text-light);

    font-size:1.08rem;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

input,
textarea{

    font:inherit;

}


/*==================================================
CONTAINER
==================================================*/

.container{

    width:min(92%,var(--container));

    margin-inline:auto;

}


/*==================================================
SECTION
==================================================*/

section{

    position:relative;

    padding:8rem 0;

    overflow:hidden;

}


/*==================================================
SECTION HEADER
==================================================*/

.section-header{

    margin-bottom:5rem;

}

.section-label{

    display:inline-flex;

    align-items:center;

    gap:.8rem;

    text-transform:uppercase;

    letter-spacing:4px;

    color:var(--cyan);

    font-size:.82rem;

    font-weight:700;

    margin-bottom:1.4rem;

}

.section-label::before{

    content:"";

    width:42px;

    height:2px;

    background:var(--cyan);

}

.section-header p{

    max-width:720px;

}


/*==================================================
BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    gap:1.5rem;

    flex-wrap:wrap;

    margin-top:3rem;

}

.hero-buttons a{

    padding:16px 34px;

    border-radius:100px;

    transition:var(--transition);

    font-weight:600;

    position:relative;

    overflow:hidden;

}

.hero-buttons a:first-child{

    background:linear-gradient(
        135deg,
        var(--purple),
        var(--cyan)
    );

    color:white;

    box-shadow:
    0 15px 40px
    rgba(0,245,255,.25);

}

.hero-buttons a:last-child{

    border:1px solid var(--border);

    backdrop-filter:blur(12px);

}

.hero-buttons a:hover{

    transform:translateY(-5px);

}


/*==================================================
UTILITY
==================================================*/

::after,
::before{

    box-sizing:border-box;

}

img{

    display:block;

    max-width:100%;

}

strong{

    color:white;

}

details{

    border:none;

}

summary{

    cursor:pointer;

}

/*==================================================
HEADER
==================================================*/

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    backdrop-filter:blur(18px);

    background:rgba(5,5,5,.55);

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:.4s ease;

}


header .container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}


/*==================================================
LOGO
==================================================*/

.logo{

    position:relative;

    display:inline-flex;

    align-items:center;

    gap:.8rem;

    font-size:2rem;

    font-weight:800;

    letter-spacing:-1px;

    color:white;

    transition:.35s ease;

}


/* .logo::before{

    content:"";

    width:14px;

    height:14px;

    border-radius:50%;

    background:var(--cyan);

    box-shadow:
    0 0 10px var(--cyan),
    0 0 20px var(--cyan),
    0 0 40px var(--cyan);

} */


.logo:hover{

    color:var(--cyan);

}


/*==================================================
NAVIGATION
==================================================*/

nav{

    display:flex;

    align-items:center;

    gap:2.8rem;

}


nav a{

    position:relative;

    color:var(--text-light);

    font-size:.96rem;

    font-weight:600;

    letter-spacing:.6px;

    transition:.35s ease;

}


nav a:hover{

    color:white;

}


/* underline */

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:linear-gradient(

        90deg,

        var(--cyan),

        var(--purple)

    );

    transition:.35s ease;

}


nav a:hover::after{

    width:100%;

}


/*==================================================
HEADER GLOW
==================================================*/

header::before{

    content:"";

    position:absolute;

    top:-120px;

    left:-250px;

    width:350px;

    height:350px;

    background:radial-gradient(

        circle,

        rgba(0,245,255,.08),

        transparent 70%

    );

    pointer-events:none;

}


header::after{

    content:"";

    position:absolute;

    right:-180px;

    top:-160px;

    width:320px;

    height:320px;

    background:radial-gradient(

        circle,

        rgba(139,92,246,.08),

        transparent 70%

    );

    pointer-events:none;

}


/*==================================================
ACTIVE LINK
==================================================*/

nav a.active{

    color:white;

}


nav a.active::after{

    width:100%;

}

nav a.active{

    text-shadow:

    0 0 12px rgba(0,245,255,.6);

}

/*==================================================
HEADER SPACING
==================================================*/

body{

    padding-top:90px;

}

/*==================================================
HERO
==================================================*/

#hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    isolation:isolate;

    background:
    radial-gradient(circle at 15% 25%, rgba(0,245,255,.12), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(139,92,246,.18), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(236,72,153,.08), transparent 45%),
    linear-gradient(
        135deg,
        #040404 0%,
        #090d16 40%,
        #111827 100%
    );

}


/*==================================================
BACKGROUND GRID
==================================================*/

/* #hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(
        rgba(255,255,255,.035) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.035) 1px,
        transparent 1px
    );

    background-size:60px 60px;

    mask-image:linear-gradient(
        to bottom,
        rgba(0,0,0,1),
        rgba(0,0,0,.15)
    );

    z-index:-2;

} */


/*==================================================
GLOW BLOBS
==================================================*/

#hero::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    right:-180px;

    top:-120px;

    background:

    radial-gradient(

        circle,

        rgba(0,245,255,.12),

        transparent 70%

    );

    filter:blur(40px);

    z-index:-1;

}


/*==================================================
CONTENT
==================================================*/

.hero-content{

    width:min(900px,100%);

    position:relative;

}


/*==================================================
LABEL
==================================================*/

.hero-label{

    display:inline-flex;

    align-items:center;

    gap:1rem;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:.82rem;

    font-weight:700;

    color:var(--cyan);

    margin-bottom:2rem;

}


.hero-label::before{

    content:"";

    width:60px;

    height:2px;

    background:var(--cyan);

}


/*==================================================
TITLE
==================================================*/

#hero h1{

    max-width:900px;

    margin-bottom:1.5rem;

}


/*==================================================
DYNAMIC TAGLINE
==================================================*/

#dynamic-text{

    color:white;

    margin-bottom:2rem;

    min-height:80px;

    font-weight:600;

    position:relative;

}


#dynamic-text::after{

    content:"";

    display:inline-block;

    width:3px;

    height:1em;

    background:var(--cyan);

    margin-left:10px;

    box-shadow:
    0 0 8px var(--cyan),
    0 0 18px var(--cyan);

}


/*==================================================
DESCRIPTION
==================================================*/

.hero-description{

    max-width:720px;

    font-size:1.18rem;

    line-height:1.9;

    color:var(--text-light);

}


/*==================================================
LEFT ACCENT
==================================================*/

.hero-content::before{

    content:"";

    position:absolute;

    left:-70px;

    top:0;

    width:3px;

    height:240px;

    border-radius:100px;

    background:

    linear-gradient(

        180deg,

        var(--cyan),

        var(--purple),

        transparent

    );

}


/*==================================================
DECORATIVE CIRCLES
==================================================*/

/* .hero-content::after{

    content:"";

    position:absolute;

    right:-240px;

    top:20%;

    width:280px;

    height:280px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

    0 0 100px rgba(0,245,255,.08),

    inset 0 0 60px rgba(255,255,255,.03);

} */


/*==================================================
BUTTONS
==================================================*/

.hero-buttons{

    margin-top:3.5rem;

}


.hero-buttons a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:210px;

    height:62px;

    border-radius:999px;

    transition:.35s;

    position:relative;

}


.hero-buttons a:first-child{

    background:

    linear-gradient(

        135deg,

        var(--purple),

        var(--cyan)

    );

}


.hero-buttons a:first-child:hover{

    transform:translateY(-6px);

    box-shadow:

    0 20px 45px rgba(0,245,255,.25);

}


.hero-buttons a:last-child{

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(14px);

}


.hero-buttons a:last-child:hover{

    background:rgba(255,255,255,.08);

    transform:translateY(-6px);

}


/*==================================================
SCROLL INDICATOR
==================================================*/

#hero .scroll-indicator{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    width:28px;

    height:48px;

    border:2px solid rgba(255,255,255,.25);

    border-radius:30px;

}


#hero .scroll-indicator::before{

    content:"";

    position:absolute;

    left:50%;

    top:10px;

    transform:translateX(-50%);

    width:5px;

    height:10px;

    border-radius:20px;

    background:white;

}

/*==================================================
ABOUT
==================================================*/

#about{

    background:
    linear-gradient(
        180deg,
        #111827 0%,
        #18133a 100%
    );

}


/*==================================================
SECTION BACKGROUND TEXT
==================================================*/

#about::before{

    content:"ABOUT";

    position:absolute;

    top:30px;

    right:5%;

    font-size:clamp(8rem,16vw,18rem);

    font-weight:900;

    letter-spacing:12px;

    color:rgba(255,255,255,.025);

    user-select:none;

    pointer-events:none;

}


/*==================================================
CONTENT
==================================================*/

.about-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:3rem;

    align-items:start;

    position:relative;

}


/*==================================================
PARAGRAPHS
==================================================*/

.about-content p{

    position:relative;

    padding:2rem;

    border-radius:22px;

    background:

    rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    transition:.35s;

    line-height:2;

}


.about-content p:hover{

    transform:translateY(-10px);

    border-color:rgba(0,245,255,.25);

    box-shadow:

    0 20px 60px rgba(0,0,0,.35);

}


/*==================================================
ACCENT BAR
==================================================*/

.about-content p::before{

    content:"";

    position:absolute;

    left:0;

    top:25px;

    width:4px;

    height:70px;

    border-radius:20px;

    background:

    linear-gradient(

        180deg,

        var(--cyan),

        var(--purple)

    );

}


/*==================================================
FIRST CARD
==================================================*/

.about-content p:first-child{

    transform:translateY(30px);

}


/*==================================================
SECOND CARD
==================================================*/

.about-content p:nth-child(2){

    transform:translateY(-10px);

}


/*==================================================
THIRD CARD
==================================================*/

.about-content p:last-child{

    grid-column:span 2;

    max-width:900px;

    margin-inline:auto;

    text-align:center;

    font-size:1.1rem;

}


/*==================================================
DECORATIVE GLOW
==================================================*/

#about::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    left:-200px;

    bottom:-150px;

    background:

    radial-gradient(

        circle,

        rgba(139,92,246,.15),

        transparent 70%

    );

    filter:blur(50px);

}


/*==================================================
SECTION TITLE
==================================================*/

#about h2{

    max-width:700px;

}


/*==================================================
LABEL
==================================================*/

#about .section-label{

    color:var(--purple);

}


#about .section-label::before{

    background:var(--purple);

}


/*==================================================
SUBTLE BORDER
==================================================*/

#about .container{

    position:relative;

}


#about .container::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:1px;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.08),

        transparent

    );

}


/*==================================================
HOVER EFFECT
==================================================*/

.about-content p:hover::before{

    background:

    linear-gradient(

        180deg,

        var(--pink),

        var(--cyan)

    );

}

/*==================================================
SERVICES
==================================================*/

#services{

    background:
    linear-gradient(
        180deg,
        #18133a 0%,
        #091321 100%
    );

}


/*==================================================
BACKGROUND TEXT
==================================================*/

#services::before{

    content:"SERVICES";

    position:absolute;

    left:50%;

    top:40px;

    transform:translateX(-50%);

    font-size:clamp(8rem,15vw,18rem);

    font-weight:900;

    letter-spacing:12px;

    color:rgba(255,255,255,.02);

    pointer-events:none;

}


/*==================================================
GRID
==================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:2rem;

}


/*==================================================
CARD
==================================================*/

.service-card{

    position:relative;

    padding:3rem;

    border-radius:28px;

    overflow:hidden;

    background:

    rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.45s;

    min-height:520px;

}


/*==================================================
TOP BORDER
==================================================*/

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:

    linear-gradient(
        90deg,
        var(--cyan),
        var(--purple)
    );

}


/*==================================================
BIG ICON CIRCLE
==================================================*/

.service-card::after{

    content:"";

    position:absolute;

    right:-80px;

    top:-80px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:

    radial-gradient(

        circle,

        rgba(0,245,255,.15),

        transparent 70%

    );

}


/*==================================================
TITLE
==================================================*/

.service-card h3{

    margin-bottom:2rem;

    font-size:2rem;

}


/*==================================================
LIST
==================================================*/

.service-card ul{

    display:flex;

    flex-direction:column;

    gap:1.2rem;

}


/*==================================================
LIST ITEMS
==================================================*/

.service-card li{

    position:relative;

    padding-left:34px;

    color:var(--text-light);

    transition:.35s;

}


/*==================================================
CUSTOM BULLET
==================================================*/

.service-card li::before{

    content:"✦";

    position:absolute;

    left:0;

    color:var(--cyan);

    font-size:1rem;

}


/*==================================================
HOVER
==================================================*/

.service-card:hover{

    transform:

    translateY(-18px)

    rotate(-1deg);

    border-color:

    rgba(0,245,255,.25);

    box-shadow:

    0 25px 60px rgba(0,0,0,.35),

    0 0 40px rgba(0,245,255,.08);

}


/*==================================================
LIST HOVER
==================================================*/

.service-card:hover li{

    color:white;

    transform:translateX(8px);

}


/*==================================================
INDIVIDUAL COLORS
==================================================*/

.service-card:nth-child(1)::before{

    background:

    linear-gradient(

        90deg,

        var(--cyan),

        var(--green)

    );

}


.service-card:nth-child(2)::before{

    background:

    linear-gradient(

        90deg,

        var(--purple),

        var(--pink)

    );

}


.service-card:nth-child(3)::before{

    background:

    linear-gradient(

        90deg,

        var(--orange),

        var(--yellow)

    );

}


/*==================================================
GLOW COLORS
==================================================*/

.service-card:nth-child(1)::after{

    background:

    radial-gradient(

        circle,

        rgba(0,245,255,.16),

        transparent 70%

    );

}


.service-card:nth-child(2)::after{

    background:

    radial-gradient(

        circle,

        rgba(139,92,246,.16),

        transparent 70%

    );

}


.service-card:nth-child(3)::after{

    background:

    radial-gradient(

        circle,

        rgba(249,115,22,.16),

        transparent 70%

    );

}


/*==================================================
SECTION LABEL
==================================================*/

#services .section-label{

    color:var(--orange);

}


#services .section-label::before{

    background:var(--orange);

}


/*==================================================
SECTION HEADING
==================================================*/

#services h2{

    max-width:780px;

}


/*==================================================
BOTTOM GLOW
==================================================*/

#services .container{

    position:relative;

}


#services .container::after{

    content:"";

    position:absolute;

    bottom:-150px;

    right:-200px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:

    radial-gradient(

        circle,

        rgba(249,115,22,.10),

        transparent 70%

    );

    filter:blur(50px);

}
/*==================================================
WHY US
==================================================*/

#why-us{

    background:
    linear-gradient(
        180deg,
        #091321 0%,
        #050505 100%
    );

}


/*==================================================
BACKGROUND TITLE
==================================================*/

#why-us::before{

    content:"WHY";

    position:absolute;

    right:4%;

    top:40px;

    font-size:clamp(9rem,18vw,20rem);

    font-weight:900;

    color:rgba(255,255,255,.025);

    letter-spacing:12px;

    pointer-events:none;

}


/*==================================================
SECTION LABEL
==================================================*/

#why-us .section-label{

    color:var(--green);

}

#why-us .section-label::before{

    background:var(--green);

}


/*==================================================
GRID
==================================================*/

.features-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:2rem;

}


/*==================================================
FEATURE CARD
==================================================*/

.feature-card{

    position:relative;

    padding:3rem;

    border-radius:30px;

    overflow:hidden;

    background:
    rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.45s;

}


/*==================================================
FEATURE NUMBER
==================================================*/

.feature-card::before{

    position:absolute;

    right:30px;

    top:15px;

    font-size:5rem;

    font-weight:900;

    color:rgba(255,255,255,.04);

}


.feature-card:nth-child(1)::before{

    content:"01";

}

.feature-card:nth-child(2)::before{

    content:"02";

}

.feature-card:nth-child(3)::before{

    content:"03";

}

.feature-card:nth-child(4)::before{

    content:"04";

}


/*==================================================
ACCENT BAR
==================================================*/

.feature-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:

    linear-gradient(

        180deg,

        var(--green),

        var(--cyan)

    );

}


/*==================================================
TITLE
==================================================*/

.feature-card h3{

    margin-bottom:1.5rem;

    font-size:2rem;

}


/*==================================================
TEXT
==================================================*/

.feature-card p{

    color:var(--text-light);

    line-height:2;

}


/*==================================================
CARD HEIGHT VARIATION
==================================================*/

.feature-card:nth-child(1){

    margin-top:40px;

}

.feature-card:nth-child(2){

    margin-top:0;

}

.feature-card:nth-child(3){

    margin-top:-20px;

}

.feature-card:nth-child(4){

    margin-top:35px;

}


/*==================================================
HOVER
==================================================*/

.feature-card:hover{

    transform:
    translateY(-14px);

    border-color:
    rgba(34,197,94,.35);

    box-shadow:

    0 25px 60px rgba(0,0,0,.40),

    0 0 35px rgba(34,197,94,.08);

}


/*==================================================
TITLE HOVER
==================================================*/

.feature-card:hover h3{

    color:var(--green);

}


/*==================================================
TOP LIGHT
==================================================*/

.feature-card span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:70px;

    height:70px;

    margin-bottom:2rem;

    border-radius:50%;

    background:

    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

}


/*==================================================
CONNECTING LINE
==================================================*/

.features-grid{

    position:relative;

}

.features-grid::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    transform:translateX(-50%);

    width:2px;

    height:100%;

    background:

    linear-gradient(

        transparent,

        rgba(255,255,255,.08),

        transparent

    );

}


/*==================================================
BOTTOM GLOW
==================================================*/

#why-us::after{

    content:"";

    position:absolute;

    left:-180px;

    bottom:-180px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:

    radial-gradient(

        circle,

        rgba(34,197,94,.10),

        transparent 70%

    );

    filter:blur(55px);

}

/*==================================================
PORTFOLIO
==================================================*/

#portfolio{

    background:
    linear-gradient(
        180deg,
        #050505 0%,
        #10091d 100%
    );

}


/*==================================================
BACKGROUND TEXT
==================================================*/

#portfolio::before{

    content:"PORTFOLIO";

    position:absolute;

    left:50%;

    top:40px;

    transform:translateX(-50%);

    font-size:clamp(8rem,16vw,20rem);

    font-weight:900;

    letter-spacing:12px;

    color:rgba(255,255,255,.02);

    pointer-events:none;

}


/*==================================================
LABEL
==================================================*/

#portfolio .section-label{

    color:var(--pink);

}

#portfolio .section-label::before{

    background:var(--pink);

}


/*==================================================
GRID
==================================================*/

.portfolio-grid{

    display:flex;

    flex-direction:column;

    gap:1.8rem;

}


/*==================================================
CARD
==================================================*/

.portfolio-card{

    position:relative;

    overflow:hidden;

    padding:3rem 3rem 3rem 8rem;

    border-radius:28px;

    background:
    rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s;

}


/*==================================================
PROJECT NUMBER
==================================================*/

.portfolio-card::before{

    position:absolute;

    left:35px;

    top:50%;

    transform:translateY(-50%);

    font-size:3.8rem;

    font-weight:900;

    color:rgba(255,255,255,.06);

}


.portfolio-card:nth-child(1)::before{content:"01";}
.portfolio-card:nth-child(2)::before{content:"02";}
.portfolio-card:nth-child(3)::before{content:"03";}
.portfolio-card:nth-child(4)::before{content:"04";}
.portfolio-card:nth-child(5)::before{content:"05";}
.portfolio-card:nth-child(6)::before{content:"06";}


/*==================================================
TOP BORDER
==================================================*/

.portfolio-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:4px;

    transition:.45s;

    background:
    linear-gradient(
        90deg,
        var(--pink),
        var(--cyan)
    );

}


/*==================================================
TITLE
==================================================*/

.portfolio-card h3{

    font-size:2.2rem;

    margin-bottom:1rem;

}


/*==================================================
TEXT
==================================================*/

.portfolio-card p{

    max-width:720px;

    line-height:1.9;

}


/*==================================================
HOVER
==================================================*/

.portfolio-card:hover{

    transform:translateX(18px);

    border-color:rgba(236,72,153,.30);

    box-shadow:

    0 20px 60px rgba(0,0,0,.45),

    0 0 40px rgba(236,72,153,.10);

}


.portfolio-card:hover::after{

    width:100%;

}


.portfolio-card:hover h3{

    color:var(--pink);

}


.portfolio-card:hover p{

    color:white;

}


/*==================================================
ACCENT GLOW
==================================================*/

.portfolio-card span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:56px;

    height:56px;

    border-radius:50%;

    margin-bottom:1.5rem;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

}


/*==================================================
ROW CONNECTOR
==================================================*/

.portfolio-grid{

    position:relative;

}


.portfolio-grid::before{

    content:"";

    position:absolute;

    left:50px;

    top:40px;

    bottom:40px;

    width:2px;

    background:

    linear-gradient(

        transparent,

        rgba(255,255,255,.08),

        transparent

    );

}


/*==================================================
COLOR VARIATIONS
==================================================*/

.portfolio-card:nth-child(2):hover{

    border-color:rgba(0,245,255,.25);

}

.portfolio-card:nth-child(2):hover h3{

    color:var(--cyan);

}

.portfolio-card:nth-child(3):hover{

    border-color:rgba(139,92,246,.25);

}

.portfolio-card:nth-child(3):hover h3{

    color:var(--purple);

}

.portfolio-card:nth-child(4):hover{

    border-color:rgba(34,197,94,.25);

}

.portfolio-card:nth-child(4):hover h3{

    color:var(--green);

}

.portfolio-card:nth-child(5):hover{

    border-color:rgba(249,115,22,.25);

}

.portfolio-card:nth-child(5):hover h3{

    color:var(--orange);

}

.portfolio-card:nth-child(6):hover{

    border-color:rgba(234,179,8,.25);

}

.portfolio-card:nth-child(6):hover h3{

    color:var(--yellow);

}


/*==================================================
BOTTOM GLOW
==================================================*/

#portfolio::after{

    content:"";

    position:absolute;

    right:-220px;

    bottom:-180px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:

    radial-gradient(

        circle,

        rgba(236,72,153,.10),

        transparent 70%

    );

    filter:blur(60px);

}

/*==================================================
WORKFLOW
==================================================*/

#workflow{

    background:
    linear-gradient(
        180deg,
        #10091d 0%,
        #141414 100%
    );

}


/*==================================================
BACKGROUND TEXT
==================================================*/

#workflow::before{

    content:"PROCESS";

    position:absolute;

    top:40px;

    right:4%;

    font-size:clamp(8rem,17vw,18rem);

    font-weight:900;

    color:rgba(255,255,255,.02);

    letter-spacing:12px;

}


/*==================================================
LABEL
==================================================*/

#workflow .section-label{

    color:var(--yellow);

}

#workflow .section-label::before{

    background:var(--yellow);

}


/*==================================================
TIMELINE
==================================================*/

.workflow{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:2rem;

    position:relative;

}


/*==================================================
CONNECTOR
==================================================*/

.workflow::before{

    content:"";

    position:absolute;

    top:42px;

    left:10%;

    width:80%;

    height:2px;

    background:

    linear-gradient(

        90deg,

        var(--cyan),

        var(--purple),

        var(--orange)

    );

}


/*==================================================
STEP
==================================================*/

.workflow-step{

    position:relative;

    padding-top:100px;

    text-align:center;

}


/*==================================================
NUMBER
==================================================*/

.workflow-step span{

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:84px;

    height:84px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    font-weight:800;

    color:white;

    background:

    linear-gradient(
        135deg,
        var(--purple),
        var(--cyan)
    );

    box-shadow:

    0 0 35px rgba(0,245,255,.25);

}


/*==================================================
TITLE
==================================================*/

.workflow-step h3{

    margin-bottom:1rem;

}


/*==================================================
TEXT
==================================================*/

.workflow-step p{

    font-size:.95rem;

    line-height:1.8;

}


/*==================================================
HOVER
==================================================*/

.workflow-step:hover span{

    transform:

    translateX(-50%)

    scale(1.12);

}

.workflow-step:hover h3{

    color:var(--yellow);

}


/*==================================================
STUDIO
==================================================*/

#studio{

    background:
    linear-gradient(
        180deg,
        #141414 0%,
        #08111f 100%
    );

}


/*==================================================
BACKGROUND TEXT
==================================================*/

#studio::before{

    content:"STUDIO";

    position:absolute;

    left:5%;

    top:40px;

    font-size:clamp(8rem,16vw,18rem);

    font-weight:900;

    color:rgba(255,255,255,.02);

}


/*==================================================
LABEL
==================================================*/

#studio .section-label{

    color:var(--cyan);

}

#studio .section-label::before{

    background:var(--cyan);

}


/*==================================================
DESCRIPTION
==================================================*/

.studio-content{

    max-width:850px;

    margin-bottom:4rem;

}


/*==================================================
GRID
==================================================*/

.studio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:2rem;

}


/*==================================================
ITEM
==================================================*/

.studio-item{

    position:relative;

    padding:3rem;

    min-height:220px;

    display:flex;

    align-items:flex-end;

    border-radius:26px;

    overflow:hidden;

    background:

    rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}


/*==================================================
BIG NUMBER
==================================================*/

.studio-item::before{

    position:absolute;

    top:20px;

    right:25px;

    font-size:4rem;

    font-weight:900;

    color:rgba(255,255,255,.04);

}

.studio-item:nth-child(1)::before{content:"01";}
.studio-item:nth-child(2)::before{content:"02";}
.studio-item:nth-child(3)::before{content:"03";}
.studio-item:nth-child(4)::before{content:"04";}
.studio-item:nth-child(5)::before{content:"05";}
.studio-item:nth-child(6)::before{content:"06";}


/*==================================================
BOTTOM BAR
==================================================*/

.studio-item::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:

    linear-gradient(

        90deg,

        var(--cyan),

        var(--purple)

    );

}


/*==================================================
TITLE
==================================================*/

.studio-item h3{

    font-size:1.5rem;

    z-index:2;

}


/*==================================================
HOVER
==================================================*/

.studio-item:hover{

    transform:

    translateY(-12px);

    border-color:

    rgba(0,245,255,.30);

    box-shadow:

    0 20px 60px rgba(0,0,0,.40),

    0 0 40px rgba(0,245,255,.08);

}


.studio-item:hover h3{

    color:var(--cyan);

}


/*==================================================
INNER GLOW
==================================================*/

.studio-item:hover{

    background:

    linear-gradient(

        135deg,

        rgba(0,245,255,.08),

        rgba(139,92,246,.08)

    );

}


/*==================================================
BOTTOM GLOW
==================================================*/

#studio::after{

    content:"";

    position:absolute;

    right:-220px;

    bottom:-180px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:

    radial-gradient(

        circle,

        rgba(0,245,255,.10),

        transparent 70%

    );

    filter:blur(60px);

}

/*==================================================
TESTIMONIALS
==================================================*/

#testimonials{

    background:
    linear-gradient(
        180deg,
        #08111f 0%,
        #12071e 100%
    );

}

#testimonials::before{

    content:"VOICES";

    position:absolute;

    top:40px;

    left:4%;

    font-size:clamp(8rem,16vw,18rem);

    font-weight:900;

    color:rgba(255,255,255,.02);

}

#testimonials .section-label{

    color:var(--purple);

}

#testimonials .section-label::before{

    background:var(--purple);

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:2rem;

}

.testimonial-card{

    position:relative;

    padding:3rem;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.testimonial-card::before{

    content:"❝";

    position:absolute;

    top:18px;

    left:28px;

    font-size:5rem;

    color:rgba(255,255,255,.05);

}

.testimonial-card p{

    margin-top:3rem;

    line-height:2;

}

.testimonial-card h4{

    margin-top:2rem;

    color:var(--purple);

}

.testimonial-card:hover{

    transform:translateY(-12px);

    border-color:rgba(139,92,246,.3);

}


/*==================================================
FAQ
==================================================*/

#faq{

    background:
    linear-gradient(
        180deg,
        #12071e 0%,
        #050505 100%
    );

}

#faq .section-label{

    color:var(--orange);

}

#faq .section-label::before{

    background:var(--orange);

}

.faq-list{

    display:flex;

    flex-direction:column;

    gap:1.5rem;

}

.faq-list details{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:1.8rem 2rem;

    transition:.35s;

}

.faq-list details:hover{

    border-color:rgba(249,115,22,.25);

}

.faq-list summary{

    font-size:1.2rem;

    font-weight:700;

    list-style:none;

    position:relative;

    padding-right:40px;

}

.faq-list summary::-webkit-details-marker{

    display:none;

}

.faq-list summary::after{

    content:"+";

    position:absolute;

    right:0;

    top:0;

    font-size:1.6rem;

    color:var(--orange);

}

.faq-list details[open] summary::after{

    content:"−";

}

.faq-list details p{

    margin-top:1.5rem;

}


/*==================================================
CONTACT
==================================================*/

#contact{

    background:
    linear-gradient(
        180deg,
        #050505 0%,
        #101010 100%
    );

}

#contact .section-label{

    color:var(--cyan);

}

#contact .section-label::before{

    background:var(--cyan);

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1.4fr;

    gap:4rem;

    align-items:start;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:2rem;

}

.contact-info p{

    line-height:1.9;

}

form{

    display:flex;

    flex-direction:column;

    gap:1.5rem;

}

form input,
form textarea{

    width:100%;

    padding:18px 22px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    color:white;

    outline:none;

    transition:.35s;

}

form textarea{

    resize:vertical;

    min-height:180px;

}

form input:focus,
form textarea:focus{

    border-color:var(--cyan);

    box-shadow:0 0 25px rgba(0,245,255,.15);

}

form button{

    width:220px;

    height:60px;

    border-radius:999px;

    color:white;

    font-weight:700;

    background:linear-gradient(
        135deg,
        var(--purple),
        var(--cyan)
    );

    transition:.35s;

}

form button:hover{

    transform:translateY(-5px);

}


/*==================================================
FOOTER
==================================================*/

footer{

    padding:6rem 0 2rem;

    background:#020202;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:4rem;

    margin-bottom:4rem;

}

.footer-top h2{

    font-size:3rem;

    margin-bottom:1rem;

}

.footer-top h3{

    margin-bottom:1.5rem;

}

.footer-top ul{

    display:flex;

    flex-direction:column;

    gap:1rem;

}

.footer-top li{

    color:var(--text-light);

    transition:.3s;

}

.footer-top li:hover{

    color:var(--cyan);

    transform:translateX(6px);

}

.footer-bottom{

    padding-top:2rem;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-bottom p{

    color:var(--text-muted);

}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }

}


@keyframes pulseGlow{

    0%,100%{

        opacity:.35;

        transform:scale(1);

    }

    50%{

        opacity:1;

        transform:scale(1.08);

    }

}


@keyframes gradientShift{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}


@keyframes rotateSlow{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}


@keyframes blink{

    0%,100%{
        opacity:1;
    }

    50%{
        opacity:0;
    }

}


/*==================================================
GLOBAL ANIMATION TARGETS
==================================================*/

#hero::after{

    animation:
    float 10s ease-in-out infinite;

}

.hero-content::after{

    animation:
    rotateSlow 45s linear infinite;

}

.logo::before{

    animation:
    pulseGlow 3s infinite;

}

.scroll-indicator{

    animation:
    float 2s ease-in-out infinite;

}

#dynamic-text::after{

    animation:
    blink .8s infinite;

}


/*==================================================
SMOOTH TRANSITIONS
==================================================*/

a,
button,
input,
textarea,
.service-card,
.feature-card,
.portfolio-card,
.workflow-step,
.studio-item,
.testimonial-card,
details{

    transition:.35s ease;

}


/*==================================================
FOCUS ACCESSIBILITY
==================================================*/

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{

    outline:2px solid var(--cyan);

    outline-offset:4px;

}


/*==================================================
LARGE DESKTOP
==================================================*/

@media (max-width:1400px){

    .container{

        width:min(94%,1280px);

    }

}


/*==================================================
LAPTOP
==================================================*/

@media (max-width:1200px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .studio-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .testimonial-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .workflow{

        grid-template-columns:repeat(3,1fr);

        row-gap:4rem;

    }

    .workflow::before{

        display:none;

    }

}


/*==================================================
TABLET
==================================================*/

@media (max-width:992px){

    h1{

        font-size:4rem;

        letter-spacing:-2px;

    }

    h2{

        font-size:2.8rem;

    }

    nav{

        gap:1.4rem;

    }

    .about-content{

        grid-template-columns:1fr;

    }

    .about-content p:last-child{

        grid-column:auto;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .features-grid{

        grid-template-columns:1fr;

    }

    .features-grid::before{

        display:none;

    }

    .portfolio-card{

        padding:2.5rem 2rem 2.5rem 6rem;

    }

    .studio-grid{

        grid-template-columns:1fr;

    }

    .testimonial-grid{

        grid-template-columns:1fr;

    }

    .contact-grid{

        grid-template-columns:1fr;

    }

    .footer-top{

        grid-template-columns:1fr;

    }

}


/*==================================================
MOBILE
==================================================*/

@media (max-width:768px){

    section{

        padding:5rem 0;

    }

    header .container{

        flex-direction:column;

        justify-content:center;

        height:auto;

        padding:1rem 0;

        gap:1rem;

    }

    nav{

        flex-wrap:wrap;

        justify-content:center;

        gap:1rem;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

    .hero-buttons a{

        width:100%;

    }

    .workflow{

        grid-template-columns:1fr;

    }

    .workflow-step{

        padding-top:90px;

    }

    .portfolio-card{

        padding:2rem;

    }

    .portfolio-card::before{

        position:static;

        display:block;

        transform:none;

        margin-bottom:1rem;

    }

    .portfolio-grid::before{

        display:none;

    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width:480px){

    h1{

        font-size:3rem;

    }

    h2{

        font-size:2.2rem;

    }

    p{

        font-size:1rem;

    }

    .hero-content::before{

        display:none;

    }

    .hero-content::after{

        display:none;

    }

    .service-card,
    .feature-card,
    .portfolio-card,
    .studio-item,
    .testimonial-card{

        padding:2rem;

    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}

/*==================================================
SCROLL REVEAL
==================================================*/

.reveal{

    opacity:0;

    transform:translateY(80px);

    transition:

        opacity .8s ease,

        transform .8s ease;

    will-change:transform,opacity;

}

.reveal.show{

    opacity:1;

    transform:translateY(0);

}

.reveal-left{

    opacity:0;

    transform:translateX(-100px);

    transition:all .9s ease;

}

.reveal-left.show{

    opacity:1;

    transform:none;

}

.reveal-right{

    opacity:0;

    transform:translateX(100px);

    transition:all .9s ease;

}

.reveal-right.show{

    opacity:1;

    transform:none;

}

.reveal-scale{

    opacity:0;

    transform:scale(.85);

    transition:

        transform .8s ease,

        opacity .8s ease;

}

.reveal-scale.show{

    opacity:1;

    transform:scale(1);

}

/* ==================================================
MOUSE GLOW
==================================================

#mouse-glow{

    position:fixed;

    width:450px;

    height:450px;

    left:0;

    top:0;

    pointer-events:none;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(0,245,255,.08),
        rgba(139,92,246,.04),
        transparent 70%
    );

    transform:translate(-50%,-50%);

    filter:blur(50px);

    z-index:0;

    transition:
        left .08s linear,
        top .08s linear;

}


==================================================
3D CARDS
==================================================

.service-card,
.feature-card,
.portfolio-card,
.studio-item,
.testimonial-card{

    transform-style:preserve-3d;

    perspective:1000px;

} */
