:root {
    --blue: #026DAF;
    --blue-dark: #004b7d;
    --yellow: #F0B700;

    --black: #07131c;
    --text: #12202b;
    --muted: #667580;

    --white: #ffffff;
    --light: #f7fafc;

    --border: rgba(2,109,175,.12);

    --shadow:
        0 25px 70px rgba(10,40,60,.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.section {
    padding: 120px 0;
}

.section-container,
.nav-container,
.hero-container,
.architecture-container,
.cta-container,
.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


 


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 850px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 35%,
            rgba(2,109,175,.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 65% 85%,
            rgba(240,183,0,.08),
            transparent 25%
        ),
        #fbfdff;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(2,109,175,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(2,109,175,.05) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    padding-top: 50px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.pulse {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--yellow);

    box-shadow:
        0 0 0 6px
        rgba(240,183,0,.12);
}

.hero h1 {
    max-width: 650px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            55px,
            6vw,
            82px
        );

    line-height: .98;

    letter-spacing: -5px;

    margin-bottom: 28px;
}

.hero h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            var(--blue),
            #008fd1,
            var(--yellow)
        );

    -webkit-background-clip: text;
    background-clip: text;
}

.hero p {
    max-width: 550px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 14px;

    flex-wrap: wrap;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 16px 23px;

    border-radius: 12px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #008bd0
        );

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 15px 35px
        rgba(2,109,175,.22);

    transition: .35s;
}

.primary-btn:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px
        rgba(2,109,175,.3);
}

.secondary-btn {
    padding: 15px 22px;

    border:
        1px solid
        #d9e4ea;

    border-radius: 12px;

    background: white;

    font-size: 14px;
    font-weight: 700;

    transition: .3s;
}

.secondary-btn:hover {
    color: var(--blue);

    border-color: var(--blue);
}

.hero-stats {
    display: flex;
    gap: 45px;

    margin-top: 55px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-stats strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 23px;
}

.hero-stats small {
    color: #89959c;

    font-size: 11px;
}


/* =====================================================
   3D SOFTWARE VISUAL
===================================================== */

.hero-visual {
    min-height: 600px;

    position: relative;

    perspective: 1300px;
}

.orbit {
    position: absolute;

    border:
        1px dashed
        rgba(2,109,175,.18);

    border-radius: 50%;
}

.orbit-one {
    width: 550px;
    height: 550px;

    top: 15px;
    left: 50%;

    transform:
        translateX(-50%)
        rotateX(65deg);
}

.orbit-two {
    width: 390px;
    height: 390px;

    top: 95px;
    left: 50%;

    transform:
        translateX(-50%)
        rotateY(65deg);
}


/* =====================================================
   CODE WINDOW
===================================================== */

.code-window {
    width: 500px;

    position: absolute;

    top: 80px;
    left: 50%;

    transform:
        translateX(-50%)
        rotateY(-12deg)
        rotateX(5deg);

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #0a1c28,
            #06131b
        );

    border:
        1px solid
        rgba(255,255,255,.1);

    box-shadow:
        35px 40px 80px
        rgba(0,35,55,.3);

    transition: transform .2s ease;

    z-index: 5;
}

.window-header {
    height: 48px;

    display: grid;

    grid-template-columns:
        1fr 2fr 1fr;

    align-items: center;

    padding: 0 18px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    color: #718693;

    font-size: 8px;
}

.window-header > span:last-child {
    color: #39c98a;

    text-align: right;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #4c6572;
}

.code-body {
    padding: 25px 20px 22px;

    font-family:
        "Courier New",
        monospace;

    font-size: 12px;

    line-height: 2;
}

.line {
    display: flex;
    gap: 8px;

    color: #d6e3e8;
}

.line.indent {
    padding-left: 30px;
}

.line.space {
    height: 10px;
}

.num {
    width: 20px;

    color: #3c5664;

    user-select: none;
}

.purple {
    color: #bd8cff;
}

.blue-text {
    color: #4fc3ff;
}

.yellow-text {
    color: var(--yellow);
}

.green {
    color: #56d69b;
}

.terminal-line {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin:
        15px 0 0 30px;

    padding: 7px 10px;

    border-radius: 6px;

    background:
        rgba(86,214,155,.07);

    color: #56d69b;

    font-size: 9px;
}


/* =====================================================
   FLOATING NODES
===================================================== */

.floating-node {
    position: absolute;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 12px 15px;

    border:
        1px solid
        rgba(255,255,255,.75);

    border-radius: 14px;

    background:
        rgba(255,255,255,.92);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px
        rgba(0,50,80,.13);

    animation:
        float 5s ease-in-out infinite;
}

.floating-node strong {
    display: block;

    font-size: 12px;
}

.floating-node small {
    display: block;

    color: #7b8790;

    font-size: 8px;

    margin-top: 2px;
}

.node-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--blue);

    background:
        rgba(2,109,175,.1);

    font-size: 8px;
    font-weight: 800;
}

.node-icon.cloud {
    color: #006da8;

    font-size: 18px;
}

.node-icon.db {
    color: #9d7800;

    background:
        rgba(240,183,0,.14);
}

.node-icon.ai {
    color: white;

    background:
        var(--blue);
}

.node-api {
    top: 30px;
    right: -10px;
}

.node-cloud {
    bottom: 175px;
    left: -30px;

    animation-delay: .8s;
}

.node-db {
    bottom: 60px;
    right: -20px;

    animation-delay: 1.5s;
}

.node-ai {
    top: 235px;
    left: -45px;

    animation-delay: 2.2s;
}

@keyframes float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

}


/* =====================================================
   CONNECTION LINES
===================================================== */

.connection {
    position: absolute;

    height: 1px;

    transform-origin: left;

    background:
        linear-gradient(
            90deg,
            rgba(2,109,175,.05),
            rgba(2,109,175,.4),
            transparent
        );

    z-index: 2;
}

.c1 {
    width: 140px;

    top: 145px;
    right: 70px;

    transform: rotate(25deg);
}

.c2 {
    width: 130px;

    top: 270px;
    left: 70px;

    transform: rotate(-15deg);
}

.c3 {
    width: 150px;

    bottom: 140px;
    right: 75px;

    transform: rotate(-20deg);
}

.c4 {
    width: 130px;

    bottom: 130px;
    left: 75px;

    transform: rotate(20deg);
}

.floating-star {
    position: absolute;

    right: 15px;
    bottom: 115px;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            #d99e00
        );

    box-shadow:
        0 15px 35px
        rgba(200,150,0,.25);

    font-family:
        "Courier New",
        monospace;

    font-size: 14px;

    animation:
        float 4s ease-in-out infinite;
}


/* =====================================================
   HEADINGS
===================================================== */

.section-heading {
    max-width: 720px;

    margin-bottom: 65px;
}

.section-heading h2,
.architecture-content h2,
.cta-container h2 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            62px
        );

    line-height: 1.05;

    letter-spacing: -3px;
}

.section-heading h2 span,
.architecture-content h2 span,
.cta-container h2 span {
    color: var(--blue);
}

.section-heading p {
    color: var(--muted);

    line-height: 1.8;

    margin-top: 20px;
}

.center {
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: #f7fafc;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    min-height: 315px;

    padding: 32px;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    background: white;

    overflow: hidden;

    transition: .4s;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(2,109,175,.07);

    transition: .4s;
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: scale(2);
}

.service-card.featured {
    color: white;

    background:
        linear-gradient(
            145deg,
            #005c94,
            #003e66
        );

    box-shadow:
        0 25px 60px
        rgba(0,76,125,.22);
}

.service-card.featured p {
    color: #c4d8e4;
}

.service-card.featured a {
    color: var(--yellow);
}

.service-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: #aebcc4;

    font-size: 11px;
    font-weight: 700;
}

.featured .service-number {
    color: #9fc4d8;
}

.service-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 35px;

    border-radius: 15px;

    color: var(--blue);

    background:
        rgba(2,109,175,.09);

    font-family:
        "Courier New",
        monospace;

    font-size: 15px;
    font-weight: 800;
}

.featured .service-icon {
    color: var(--yellow);

    background:
        rgba(255,255,255,.1);
}

.service-card h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 22px;

    margin-bottom: 13px;
}

.service-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.service-card a {
    color: var(--blue);

    font-size: 12px;
    font-weight: 800;
}


/* =====================================================
   ARCHITECTURE
===================================================== */

.architecture-section {
    padding: 130px 0;

    background: white;
}

.architecture-container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 100px;
}

.architecture-content > p {
    color: var(--muted);

    line-height: 1.8;

    margin:
        25px 0 35px;
}

.architecture-list {
    display: grid;

    gap: 22px;
}

.architecture-list > div {
    display: flex;

    gap: 15px;
}

.architecture-list > div > span {
    flex-shrink: 0;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--blue);

    background:
        rgba(2,109,175,.09);

    font-size: 10px;
    font-weight: 800;
}

.architecture-list strong {
    font-size: 13px;
}

.architecture-list p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;

    margin-top: 5px;
}


/* =====================================================
   ARCHITECTURE CARD
===================================================== */

.architecture-visual {
    min-height: 500px;

    display: grid;
    place-items: center;

    perspective: 1200px;
}

.architecture-card {
    width: 500px;

    padding: 25px;

    border-radius: 24px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #0b202d,
            #06131c
        );

    border:
        1px solid
        rgba(255,255,255,.1);

    box-shadow:
        35px 40px 80px
        rgba(0,35,55,.2);

    transform:
        rotateY(-12deg)
        rotateX(5deg);

    transition: transform .2s ease;
}

.architecture-title {
    display: flex;

    justify-content: space-between;

    color: #728793;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.architecture-flow {
    display: flex;

    align-items: center;

    justify-content: center;

    margin: 60px 0;
}

.architecture-box {
    width: 85px;
    min-height: 90px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 10px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.05);

    border:
        1px solid
        rgba(255,255,255,.1);
}

.architecture-box small {
    color: var(--yellow);

    font-size: 7px;

    margin-bottom: 8px;
}

.architecture-box strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 10px;
}

.architecture-box span {
    color: #718693;

    font-size: 6px;

    margin-top: 5px;
}

.architecture-box.client {
    border-color:
        rgba(2,109,175,.6);
}

.architecture-box.api {
    border-color:
        rgba(240,183,0,.5);
}

.architecture-box.server {
    border-color:
        rgba(2,109,175,.5);
}

.architecture-box.database {
    border-color:
        rgba(86,214,155,.4);
}

.flow-line {
    width: 20px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--yellow)
        );
}

.architecture-bottom {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}

.architecture-bottom div {
    text-align: center;
}

.architecture-bottom span {
    display: block;

    color: #667b87;

    font-size: 6px;

    letter-spacing: 1px;

    margin-bottom: 6px;
}

.architecture-bottom strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 16px;
}


/* =====================================================
   TECHNOLOGY
===================================================== */

.technology {
    background: #f7fafc;
}

.technology-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}

.technology-card {
    min-height: 180px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 28px;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    background: white;

    transition: .35s;
}

.technology-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.tech-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    margin-bottom: 22px;

    font-family:
        "Courier New",
        monospace;

    font-weight: 800;
}

.tech-icon.html {
    color: var(--blue);

    background:
        rgba(2,109,175,.1);
}

.tech-icon.backend {
    color: #7c5db3;

    background:
        rgba(124,93,179,.1);
}

.tech-icon.mobile {
    color: #087caa;

    background:
        rgba(8,124,170,.1);
}

.tech-icon.database {
    color: #9d7800;

    background:
        rgba(240,183,0,.14);
}

.tech-icon.cloud {
    color: #087caa;

    background:
        rgba(2,109,175,.1);

    font-size: 20px;
}

.tech-icon.ai {
    color: white;

    background:
        var(--blue);
}

.technology-card strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 18px;

    margin-bottom: 8px;
}

.technology-card small {
    color: var(--muted);

    font-size: 10px;

    line-height: 1.6;
}


/* =====================================================
   PROCESS
===================================================== */

.process {
    background: white;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;
}

.process-item {
    padding: 30px;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    background: white;

    transition: .35s;
}

.process-item:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.process-item > span {
    display: block;

    color: var(--yellow);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 30px;

    margin-bottom: 50px;
}

.process-item h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    margin-bottom: 12px;
}

.process-item p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    position: relative;

    overflow: hidden;

    padding: 120px 0;

    color: white;

    background: #06141e;
}

.cta-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    top: -330px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(2,109,175,.35),
            transparent 70%
        );
}

.cta-grid {
    position: absolute;

    inset: 0;

    opacity: .2;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.cta-container {
    position: relative;

    text-align: center;
}

.cta-badge {
    display: inline-block;

    padding: 9px 14px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 50px;

    color: #9ab2c1;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.cta-container h2 {
    max-width: 850px;

    margin: auto;
}

.cta-container h2 span {
    color: var(--yellow);
}

.cta-container p {
    max-width: 560px;

    margin:
        25px auto 35px;

    color: #9caeb9;

    line-height: 1.8;
}

.large {
    padding: 18px 27px;
}




/* =====================================================
   REVEAL
===================================================== */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1050px) {

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .code-window {
        width: 430px;
    }

    .service-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .technology-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .process-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


@media(max-width:800px) {

    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;

        padding:
            140px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
    }

    .architecture-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .architecture-content {
        text-align: center;
    }

    .architecture-list {
        max-width: 480px;

        margin: auto;

        text-align: left;
    }

}


@media(max-width:600px) {

    .section {
        padding: 80px 0;
    }

    .section-container,
    .nav-container,
    .hero-container,
    .architecture-container,
    .cta-container,
    .footer-container {
        width:
            min(
                100% - 28px,
                1180px
            );
    }

    .hero h1 {
        font-size: 47px;

        letter-spacing: -3px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats strong {
        font-size: 18px;
    }

    .hero-visual {
        min-height: 420px;

        transform: scale(.72);

        margin-left: -60px;
        margin-right: -60px;
    }

    .code-window {
        width: 500px;
    }

    .floating-node {
        display: none;
    }

    .service-grid,
    .technology-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .architecture-visual {
        min-height: 400px;

        transform: scale(.8);

        margin:
            -50px -60px;
    }

    .architecture-card {
        width: 500px;
    }

    .architecture-flow {
        margin: 45px 0;
    }

    .section-heading h2,
    .architecture-content h2,
    .cta-container h2 {
        font-size: 39px;

        letter-spacing: -2px;
    }

    .footer-container {
        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

}