:root {
    --navy: #020D35;
    --navy-light: #071747;

    --yellow: #EFFF00;
    --green: #7FEA44;
    --cyan: #16D5D5;
    --blue: #09A9E8;

    --white: #FFFFFF;
    --gray: #AEB7C8;

    --gradient:
        linear-gradient(
            120deg,
            #EFFF00 0%,
            #7FEA44 35%,
            #16D5D5 70%,
            #09A9E8 100%
        );
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--navy);
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


::selection {
    background: var(--green);
    color: var(--navy);
}


/* ================= NAVBAR ================= */

.navbar {
    width: 100%;
    height: 90px;

    padding: 0 6vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    background: rgba(2, 13, 53, .75);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,.06);
}


.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -5px;
}


.logo span:nth-child(1) {
    color: var(--yellow);
}

.logo span:nth-child(2) {
    color: var(--green);
}

.logo span:nth-child(3) {
    color: var(--cyan);
}


.nav-links {
    display: flex;
    gap: 35px;
}


.nav-links a {
    color: #DCE2EE;
    font-size: .85rem;
    font-weight: 600;

    transition: .3s;
}


.nav-links a:hover {
    color: var(--green);
}


.nav-cta {
    padding: 12px 22px;

    background: var(--green);
    color: var(--navy);

    border-radius: 50px;

    font-size: .78rem;
    font-weight: 800;

    transition: .3s;
}


.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--yellow);
}


.nav-cta span {
    margin-left: 8px;
}


.menu-btn {
    display: none;

    background: none;
    border: none;

    color: white;
    font-size: 1.5rem;
}


/* ================= HERO ================= */

.hero {
    min-height: 100vh;

    padding: 150px 6vw 80px;

    display: grid;
    grid-template-columns: 1.05fr .95fr;

    align-items: center;
    gap: 40px;

    position: relative;

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    background: rgba(22,213,213,.12);

    filter: blur(100px);

    right: -200px;
    top: 100px;

    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 2;
}


.eyebrow,
.section-number {
    color: var(--green);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: 2px;
}


.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;
}


.dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--yellow);

    box-shadow: 0 0 20px var(--yellow);
}


.hero h1 {
    max-width: 800px;

    font-size: clamp(4rem, 7vw, 7.5rem);

    line-height: .92;
    letter-spacing: -7px;

    font-weight: 900;
}


.hero h1 span,
.section-header h2 span,
.about-content h2 span,
.contact-section h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-content > p {
    max-width: 550px;

    margin-top: 30px;

    color: var(--gray);

    font-size: 1.05rem;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 25px;

    border-radius: 50px;

    font-size: .78rem;
    font-weight: 800;

    transition: .3s;
}


.btn-primary {
    background: var(--green);
    color: var(--navy);
}


.btn-primary:hover {
    background: var(--yellow);
    transform: translateY(-3px);
}


.btn-secondary {
    border: 1px solid rgba(255,255,255,.3);
    color: white;
}


.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
}


.hero-meta {
    display: flex;
    gap: 50px;

    margin-top: 65px;
}


.hero-meta div {
    display: flex;
    flex-direction: column;
}


.hero-meta strong {
    font-size: 1.8rem;
}


.hero-meta span {
    color: var(--gray);
    font-size: .7rem;
}


/* ================= HERO VISUAL ================= */

.hero-visual {
    min-height: 650px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


.glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(127,234,68,.2),
            rgba(9,169,232,.08),
            transparent 70%
        );

    filter: blur(10px);
}


.orbit {
    position: absolute;

    border: 1px solid rgba(127,234,68,.25);

    border-radius: 50%;

    transform: rotate(-20deg);
}


.orbit-one {
    width: 500px;
    height: 250px;
}


.orbit-two {
    width: 550px;
    height: 350px;

    transform: rotate(30deg);
}


/* temporary avatar */

.avatar-placeholder {
    position: relative;

    width: 280px;
    height: 500px;

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.avatar-head {
    width: 130px;
    height: 140px;

    background:
        linear-gradient(
            135deg,
            #9b6a4c,
            #d99b72
        );

    border-radius: 48% 48% 45% 45%;

    position: relative;

    z-index: 2;
}


.avatar-head::before {
    content: "";

    position: absolute;

    width: 135px;
    height: 55px;

    top: -12px;
    left: -3px;

    background: #10152B;

    border-radius: 60% 60% 20% 20%;
}


.avatar-body {
    width: 250px;
    height: 230px;

    margin-top: -5px;

    border-radius: 60px 60px 25px 25px;

    background:
        linear-gradient(
            135deg,
            #020D35,
            #081C4B
        );

    border: 2px solid rgba(127,234,68,.4);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 30px 80px rgba(0,0,0,.5);
}


.avatar-logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -7px;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.avatar-pants {
    width: 180px;
    height: 140px;

    background: #071127;

    border-radius: 20px;
}


.floating-card {
    position: absolute;

    z-index: 5;

    padding: 12px 18px;

    background: rgba(7,23,71,.8);

    border: 1px solid rgba(127,234,68,.3);

    backdrop-filter: blur(15px);

    border-radius: 12px;

    font-size: .65rem;
    font-weight: 800;
}


.card-one {
    top: 25%;
    right: 5%;

    color: var(--yellow);

    transform: rotate(8deg);
}


.card-two {
    bottom: 28%;
    left: 5%;

    color: var(--cyan);

    transform: rotate(-8deg);
}


.card-three {
    top: 12%;
    left: 15%;

    color: var(--green);

    transform: rotate(-12deg);
}


/* ================= SECTIONS ================= */

.section {
    padding: 120px 6vw;
}


.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 60px;
}


.section-header h2 {
    margin-top: 12px;

    font-size: clamp(3rem, 5vw, 5.5rem);

    line-height: .95;
    letter-spacing: -5px;
}


.section-header > p {
    max-width: 420px;

    color: var(--gray);
}


/* ================= SERVICES ================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.service-card {
    min-height: 310px;

    padding: 30px;

    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.015)
        );

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 22px;

    overflow: hidden;

    transition: .4s;
}


.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(127,234,68,.6);

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);
}


.service-number {
    color: #53617C;

    font-size: .7rem;
    font-weight: 800;
}


.service-icon {
    margin-top: 45px;

    font-size: 2rem;

    color: var(--green);
}


.service-card h3 {
    margin-top: 15px;

    font-size: 1.5rem;
}


.service-card p {
    margin-top: 10px;

    color: var(--gray);

    font-size: .9rem;
}


.service-card a {
    position: absolute;

    bottom: 25px;
    left: 30px;

    color: var(--green);

    font-size: .7rem;
    font-weight: 800;
}


/* ================= WORKS ================= */

.works-section {
    background: #030F3B;
}


.works-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


.work-card {
    overflow: hidden;
}


.work-placeholder {
    height: 420px;

    border-radius: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #111F4A,
            #07183E
        );

    border: 1px solid rgba(255,255,255,.08);

    transition: .5s;
}


.work-card.large .work-placeholder {
    height: 550px;
}


.work-placeholder span {
    color: rgba(255,255,255,.3);

    font-size: .8rem;
    font-weight: 800;

    letter-spacing: 3px;
}


.gradient-two {
    background:
        linear-gradient(
            135deg,
            #173D55,
            #081B45
        );
}


.gradient-three {
    background:
        linear-gradient(
            135deg,
            #273B16,
            #07183E
        );
}


.gradient-four {
    background:
        linear-gradient(
            135deg,
            #183D4A,
            #11122D
        );
}


.work-card:hover .work-placeholder {
    transform: scale(.98);

    border-color: var(--green);
}


.work-info {
    display: flex;
    justify-content: space-between;

    padding: 18px 5px;
}


.work-info h3 {
    font-size: 1rem;
}


.work-info span {
    color: var(--green);

    font-size: .7rem;
}


/* ================= ABOUT ================= */

.about-section {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    align-items: center;

    gap: 100px;
}


.about-visual {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.about-circle {
    width: 350px;
    height: 350px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 5rem;
    font-weight: 900;

    background:
        radial-gradient(
            circle,
            #142B5C,
            #020D35
        );

    border: 1px solid rgba(127,234,68,.4);

    box-shadow:
        0 0 100px rgba(127,234,68,.1);

    color: var(--green);
}


.about-content h2 {
    margin-top: 20px;

    max-width: 800px;

    font-size: clamp(3rem, 5vw, 5.5rem);

    line-height: .95;

    letter-spacing: -5px;
}


.about-content p {
    max-width: 650px;

    margin-top: 25px;

    color: var(--gray);
}


.about-content .btn {
    margin-top: 35px;
}


/* ================= STATS ================= */

.stats {
    padding: 80px 6vw;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}


.stat {
    display: flex;
    flex-direction: column;

    padding-left: 30px;

    border-left: 1px solid rgba(255,255,255,.08);
}


.stat:first-child {
    border-left: 0;
}


.stat strong {
    font-size: 3.5rem;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.stat span {
    color: var(--gray);

    font-size: .8rem;
}


/* ================= CONTACT ================= */

.contact-section {
    padding: 160px 6vw;

    text-align: center;

    position: relative;

    overflow: hidden;
}


.contact-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(127,234,68,.1);

    filter: blur(120px);

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);
}


.contact-inner {
    position: relative;
    z-index: 2;
}


.contact-section h2 {
    max-width: 900px;

    margin: 20px auto;

    font-size: clamp(3.5rem, 7vw, 7rem);

    line-height: .9;

    letter-spacing: -6px;
}


.contact-section p {
    color: var(--gray);
}


.contact-email {
    display: inline-block;

    margin-top: 35px;

    font-size: clamp(1.3rem, 3vw, 2.5rem);

    font-weight: 700;

    border-bottom: 2px solid var(--green);
}


.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;

    margin-top: 35px;
}


/* ================= FOOTER ================= */

footer {
    padding: 70px 6vw 25px;

    background: #010924;

    border-top: 1px solid rgba(255,255,255,.07);
}


.footer-top {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;
}


.footer-logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -7px;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.footer-brand p {
    color: white;

    margin-top: 10px;
}


.footer-brand span {
    display: block;

    margin-top: 10px;

    color: var(--gray);

    font-size: .8rem;
}


.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.footer-column h4 {
    margin-bottom: 10px;

    color: var(--green);

    font-size: .7rem;

    letter-spacing: 1px;
}


.footer-column a {
    color: var(--gray);

    font-size: .8rem;

    transition: .3s;
}


.footer-column a:hover {
    color: var(--white);
}


.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid rgba(255,255,255,.07);

    color: #69758E;

    font-size: .65rem;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 18px;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .eyebrow,
    .hero-buttons {
        justify-content: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-meta {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-content {
        text-align: center;
    }

    .about-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .navbar {
        height: 75px;
        padding: 0 5vw;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 5vw 60px;
    }

    .hero h1 {
        font-size: clamp(3.3rem, 15vw, 5rem);

        letter-spacing: -4px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .orbit-one {
        width: 350px;
        height: 180px;
    }

    .orbit-two {
        width: 380px;
        height: 250px;
    }

    .services-grid,
    .works-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 5vw;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h2,
    .about-content h2 {
        letter-spacing: -3px;
    }

    .work-card.large .work-placeholder,
    .work-placeholder {
        height: 350px;
    }

    .about-visual {
        min-height: 350px;
    }

    .about-circle {
        width: 270px;
        height: 270px;

        font-size: 4rem;
    }

    .stats {
        gap: 35px;
        padding: 60px 5vw;
    }

    .stat {
        border-left: 0;
        padding-left: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }
}