/* =========================================================
   NIPUNIKA STUDIO
   Premium Frontend Studio
========================================================= */

:root {
    --bg: #08090c;
    --surface: #0e1015;
    --surface-2: #12151b;
    --white: #f4f5f2;
    --muted: #9a9faa;
    --muted-2: #686d78;
    --blue: #315cff;
    --blue-light: #5275ff;
    --border: rgba(255,255,255,.09);
    --border-blue: rgba(49,92,255,.45);
    --container: 1500px;
    --font: "DM Sans", sans-serif;
    --mono: "JetBrains Mono", monospace;
    --ease: cubic-bezier(.22,.61,.36,1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(94%, var(--container));
    margin: auto;
}

.section {
    padding: 150px 0;
    position: relative;
}

.section-meta {
    display: flex;
    gap: 30px;
    align-items: center;
    font-family: var(--mono);
    font-size: 15px;
    letter-spacing: .16em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.section-meta span:first-child {
    color: var(--blue);
}

.section-heading {
    font-size: clamp(50px, 6vw, 100px);
    line-height: .92;
    letter-spacing: -.055em;
    font-weight: 500;
}

.section-heading span {
    color: var(--muted);
}


/* =========================================================
   NOISE
========================================================= */

.noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .035;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}


/* =========================================================
   CURSOR
========================================================= */

.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
}

.cursor {
    width: 6px;
    height: 6px;
    background: var(--white);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,.4);
    transform: translate(-50%, -50%);
    transition:
        width .3s ease,
        height .3s ease,
        background .3s ease;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: .35s ease;
}

.navbar.scrolled {
    background: rgba(8,9,12,.82);
    backdrop-filter: blur(18px);
    border-bottom-color: var(--border);
}

.nav-inner {
    width: min(94%, var(--container));
    height: 86px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Brand */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--blue);
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}

.brand:hover .brand-mark::before {
    transform: translateY(0);
}

.brand-mark span {
    position: relative;
    z-index: 1;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 5px;
}

.brand-text strong {
    font-size: 13px;
    letter-spacing: .1em;
}

.brand-text small {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .2em;
}


/* Desktop nav */

.desktop-nav {
    display: flex;
    gap: 38px;
    margin-left: auto;
    margin-right: 45px;
}

.desktop-nav a {
    color: var(--muted);
    font-size: 13px;
    transition: .25s ease;
}

.desktop-nav a:hover {
    color: var(--white);
}


/* Nav CTA */

.nav-cta {
    display: flex;
    gap: 18px;
    align-items: center;
    height: 44px;
    padding: 0 18px;
    border: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .05em;
    transition: .3s ease;
}

.nav-cta span {
    color: var(--blue-light);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
}


/* Menu */

.menu-btn {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--white);
    margin: 6px auto;
    transition: .3s ease;
}


/* Mobile menu */

.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-grid,
.contact-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    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: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(49,92,255,.18);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 700px;
    height: 700px;
    right: -200px;
    top: 10%;
    animation: orbit 18s linear infinite;
}

.orbit-two {
    width: 450px;
    height: 450px;
    right: -80px;
    top: 25%;
    border-color: rgba(255,255,255,.05);
    animation: orbit-reverse 14s linear infinite;
}

@keyframes orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-reverse {
    to {
        transform: rotate(-360deg);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 15px var(--blue);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    50% {
        opacity: .35;
        box-shadow: 0 0 3px var(--blue);
    }
}

.hero-location {
    display: flex;
    gap: 12px;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
}

.slash {
    color: var(--blue);
}

.hero-label {
    display: flex;
    gap: 30px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .13em;
    margin-bottom: 30px;
}

.hero-label span:first-child {
    color: var(--blue);
}

.hero-title {
    max-width: 1200px;
    font-size: clamp(62px, 8.7vw, 155px);
    line-height: .86;
    letter-spacing: -.075em;
    font-weight: 500;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.4);
}

.blue-text {
    color: var(--blue);
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 55px;
}

.hero-description {
    max-width: 450px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 10px;
}


/* Buttons */

.btn {
    min-height: 56px;
    padding: 0 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    transition: .35s var(--ease);
}

.btn-primary {
    background: var(--white);
    color: var(--bg);
}

.btn-secondary {
    background: rgba(255,255,255,.02);
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-primary:hover {
    background: var(--blue);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--blue);
    background: rgba(49,92,255,.08);
}

.arrow {
    font-size: 16px;
}


/* Hero interface */

.hero-interface {
    margin-top: 100px;
    border: 1px solid var(--border);
    background: rgba(13,15,20,.7);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.interface-top {
    height: 42px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .08em;
}

.interface-dots {
    display: flex;
    gap: 5px;
}

.interface-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid var(--muted-2);
}

.interface-body {
    min-height: 270px;
    display: grid;
    grid-template-columns: 65px 1fr 70px;
}

.interface-side {
    border-right: 1px solid var(--border);
    padding: 22px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 10px;
}

.interface-side span {
    color: var(--blue);
}

.side-line {
    height: 70px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        var(--blue),
        transparent
    );
}

.interface-main {
    padding: 40px 6%;
    position: relative;
}

.interface-small {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .15em;
    color: var(--muted);
}

.interface-big {
    font-size: clamp(55px, 7vw, 100px);
    font-weight: 600;
    letter-spacing: -.08em;
    line-height: .8;
    margin-top: 25px;
}

.interface-big span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.25);
}

.interface-line {
    margin-top: 30px;
    height: 1px;
    width: 60%;
    background: var(--border);
}

.interface-meta {
    margin-top: 12px;
    display: flex;
    gap: 20px;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 9px;
}

.interface-corner {
    border-left: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 25px;
}


/* Scroll */

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    right: 3%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .12em;
}

.scroll-indicator div {
    width: 45px;
    height: 1px;
    background: var(--muted-2);
    position: relative;
}

.scroll-indicator div::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    right: 0;
    background: var(--blue);
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    border-top: 1px solid var(--border);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 10%;
    align-items: end;
}

.intro-copy {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.intro-copy p + p {
    margin-top: 25px;
}


/* =========================================================
   TECH
========================================================= */

.tech-section {
    padding: 0 0 150px;
}

.tech-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .13em;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.tech-item {
    min-height: 150px;
    padding: 25px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s ease;
}

.tech-item:first-child {
    border-left: 1px solid var(--border);
}

.tech-item:hover {
    background: rgba(49,92,255,.05);
}

.tech-number,
.tech-type {
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 14px;
}

.tech-item strong {
    font-size: 17px;
    font-weight: 500;
}


/* =========================================================
   WORK
========================================================= */

.section-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.section-top p {
    max-width: 430px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    justify-self: end;
}

.project {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 130px;
}

.project-reverse {
    grid-template-columns: 1fr 300px;
}

.project-reverse .project-info {
    order: 2;
}

.project-reverse .browser {
    order: 1;
}

.project-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 430px;
}

.project-number {
    color: var(--blue);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
}

.project h3 {
    margin-top: 22px;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -.05em;
}

.project-info p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.project-tags span {
    padding: 7px 9px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
}

/* ===============================
   VIEW ALL PROJECTS BUTTON
================================ */

.view-projects{
    display:flex;
    justify-content:center;
    margin-top:40px;
}

.view-projects-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    min-width:260px;
    padding:18px 24px;

    border:1px solid var(--border);
    background:rgba(255,255,255,.02);

    font-family:var(--mono);
    font-size:11px;
    letter-spacing:.12em;

    transition:.35s var(--ease);
}

.view-projects-btn:hover{
    transform:translateY(-5px);
    border-color:var(--border-blue);
    background:rgba(49,92,255,.08);
}

.view-projects-btn .arrow{
    color:var(--blue);
    font-size:18px;
}

/* Browser */

.browser {
    min-height: 430px;
    border: 1px solid var(--border);
    background: #0c0e12;
    overflow: hidden;
    transition: .5s var(--ease);
}

.browser:hover {
    border-color: var(--border-blue);
    transform: translateY(-6px);
}

.browser-top {
    height: 40px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 20px;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid var(--muted-2);
}

.browser-address {
    flex: 1;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: rgba(255,255,255,.025);
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 9px;
}

.browser-arrow {
    color: var(--blue);
}

.browser-content {
    height: 390px;
    overflow: hidden;
    position: relative;
}


/* =========================================================
   PROJECT PREVIEWS
========================================================= */

.project-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.project-preview {
    position: relative;
}

.project-preview iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #0c0e12;
    pointer-events: none;
}

.project-preview::after {
    content: "OPEN LIVE ↗";
    position: absolute;
    right: 22px;
    bottom: 18px;
    z-index: 2;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(8,9,12,.72);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .1em;
    opacity: 0;
    transform: translateY(6px);
    transition: .3s var(--ease);
}

.project-link:hover .project-preview::after {
    opacity: 1;
    transform: translateY(0);
}

.project-link:hover {
    border-color: var(--border-blue);
}

/* Project 1 */

.project-one {
    background:
        linear-gradient(
            120deg,
            #11131a,
            #0a0b0e
        );
}

.fake-nav {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    color: #8c909a;
    font-family: var(--mono);
    font-size: 9px;
}

.fake-nav strong {
    color: white;
    font-size: 13px;
}

.fake-hero {
    position: absolute;
    inset: 0;
    padding: 80px 7%;
}

.fake-hero small {
    font-family: var(--mono);
    color: var(--blue);
    font-size: 9px;
}

.fake-hero h4 {
    margin-top: 25px;
    font-size: clamp(55px, 8vw, 110px);
    line-height: .78;
    letter-spacing: -.08em;
    font-weight: 500;
}

.fake-hero h4 i {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.4);
}

.fake-circle {
    position: absolute;
    width: 210px;
    height: 210px;
    right: 15%;
    bottom: -60px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    box-shadow:
        0 0 80px rgba(49,92,255,.15);
    animation: floating 5s ease-in-out infinite;
}


/* Project 2 */

.project-two {
    background: #e8e8e3;
    color: #0b0c0f;
}

.northline-grid {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    padding: 35px;
}

.northline-label {
    font-family: var(--mono);
    font-size: 9px;
}

.northline-title {
    align-self: center;
    grid-column: 1 / 3;
    font-size: clamp(55px, 8vw, 110px);
    line-height: .75;
    letter-spacing: -.09em;
    font-weight: 600;
}

.northline-bottom {
    font-family: var(--mono);
    font-size: 9px;
}

.northline-box {
    justify-self: end;
    width: 60px;
    height: 60px;
    border: 1px solid #0b0c0f;
    display: grid;
    place-items: center;
    font-size: 25px;
}


/* Project 3 */

.project-three {
    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(49,92,255,.12),
            transparent 30%
        ),
        #090b0f;
}

.mono-content {
    height: 100%;
    padding: 45px;
    display: flex;
    flex-direction: column;
}

.mono-logo {
    color: var(--blue);
    font-family: var(--mono);
    font-size: 20px;
}

.mono-title {
    margin-top: auto;
    font-size: clamp(45px, 7vw, 90px);
    line-height: .83;
    letter-spacing: -.07em;
}

.mono-line {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-top: 35px;
}

.mono-footer {
    margin-top: 15px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #0b0d11;
}

.services-heading {
    display: grid;
    grid-template-columns: 1fr .6fr;
    gap: 15%;
    margin-bottom: 80px;
}

.services-heading p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.service {
    min-height: 125px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 50px;
    gap: 40px;
    align-items: center;
    border-top: 1px solid var(--border);
    transition: .35s ease;
}

.service:last-child {
    border-bottom: 1px solid var(--border);
}

.service:hover {
    padding-left: 20px;
    background: rgba(49,92,255,.035);
}

.service-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.service-left span {
    color: var(--blue);
    font-family: var(--mono);
    font-size: 15px;
}

.service h3 {
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -.04em;
}

.service-description {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.service-arrow {
    font-size: 22px;
    color: var(--blue);
    transition: .3s ease;
}

.service:hover .service-arrow {
    transform: rotate(45deg);
}


/* =========================================================
   PRICING
========================================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.price-card {
    background: var(--bg);
    padding: 35px;
    min-height: 610px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: .35s ease;
}

.price-card:hover {
    background: #0d1016;
}

.price-card.featured {
    background: #0d111c;
}

.price-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
}

.price-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-status span {
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 50%;
}

.price {
    margin-top: 65px;
    font-size: 60px;
    letter-spacing: -.07em;
    font-weight: 500;
}

.price > span {
    color: var(--blue);
}

.price-description {
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.price-line {
    height: 1px;
    background: var(--border);
    margin: 35px 0 28px;
}

.price-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.price-card li {
    color: #aeb2bb;
    font-family: var(--mono);
    font-size: 14px;
    line-height: 1.5;
}

.price-card li::before {
    content: "—";
    color: var(--blue);
    margin-right: 10px;
}

.price-button {
    margin-top: auto;
    min-height: 52px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-family: var(--mono);
    font-size: 14px;
    transition: .3s ease;
}

.price-button:hover {
    background: var(--white);
    color: var(--bg);
}

.pricing-note > span {
    color: var(--blue);
}

.pricing-note {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    background: #0b0d11;
}

.process-heading {
    margin-bottom: 70px;
}

.process-list {
    border-top: 1px solid var(--border);
}

.process-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    padding: 38px 0;
    border-bottom: 1px solid var(--border);
}

.process-number {
    color: var(--blue);
    font-family: var(--mono);
    font-size: 15px;
}

.process-item h3 {
    font-size: 23px;
    font-weight: 500;
}

.process-item p {
    max-width: 500px;
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}


/* Payment */

.payment-flow {
    margin-top: 100px;
    padding: 35px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.015);
}

.payment-title {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .13em;
    margin-bottom: 40px;
}

.payment-steps {
    display: flex;
    align-items: center;
}

.payment-steps > div:not(.flow-line) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-steps span {
    color: var(--blue);
    font-family: var(--mono);
    font-size: 15px;
}

.payment-steps strong {
    font-size: 13px;
    font-weight: 500;
}

.payment-steps small {
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 12px;
}

.flow-line {
    height: 1px;
    background: var(--border);
    flex: 1;
    margin: 0 25px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-layout {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 15%;
}

.about-title > span {
    color: var(--blue);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
}

.about-title h2 {
    margin-top: 25px;
    font-size: clamp(50px, 6vw, 90px);
    line-height: .9;
    letter-spacing: -.065em;
    font-weight: 500;
}

.about-title i {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.4);
}

.about-content {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.about-content p + p {
    margin-top: 22px;
}

.about-lead {
    color: var(--white);
    font-size: 19px;
    line-height: 1.6;
}

.text-link {
    display: inline-flex;
    gap: 15px;
    margin-top: 40px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--blue);
    color: var(--white);
    font-family: var(--mono);
    font-size: 11.4px;
    transition: .3s ease;
}

.text-link:hover {
    gap: 25px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    min-height: 850px;
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(49,92,255,.08),
            transparent 40%
        );
}

.contact-grid {
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

.contact-content {
    text-align: center;
    padding: 80px 0 110px;
}

.contact-small {
    color: var(--blue);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .15em;
}

.contact-content h2 {
    margin-top: 25px;
    font-size: clamp(80px, 12vw, 180px);
    line-height: .8;
    letter-spacing: -.09em;
    font-weight: 500;
}

.contact-content h2 span {
    color: var(--blue);
}

.contact-content p {
    max-width: 480px;
    margin: 35px auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.contact-main-btn {
    width: min(100%, 380px);
    height: 70px;
    margin: auto;
    padding: 0 25px;
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 11px;
    transition: .35s ease;
}

.contact-main-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-5px);
}


/* Social */

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-item {
    min-height: 120px;
    padding: 20px;
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    align-items: center;
    border-right: 1px solid var(--border);
    transition: .35s ease;
}

.social-item:first-child {
    border-left: 1px solid var(--border);
}

.social-item:hover {
    background: rgba(49,92,255,.07);
}

.social-number {
    color: var(--blue);
    font-family: var(--mono);
    font-size: 13px;
}

.social-item strong {
    display: block;
    font-size: 15px;
    font-weight: 500;
}

.social-item small {
    display: block;
    margin-top: 6px;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 11px;
}

.social-arrow {
    color: var(--blue);
    font-size: 18px;
    transition: .3s ease;
}

.social-item:hover .social-arrow {
    transform: translate(4px,-4px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    border-top: 1px solid var(--border);
    padding: 45px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand strong {
    display: block;
    font-size: 12px;
    letter-spacing: .1em;
}

.footer-brand small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11.4px;
}

.footer-location {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11.4px;
    letter-spacing: .15em;
}

.footer-bottom {
    padding-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    transition: .2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.back-top {
    justify-self: end;
    color: var(--muted);
    transition: .2s ease;
}

.back-top:hover {
    color: var(--white);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .9s var(--ease),
        transform .9s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   FLOATING
========================================================= */

@keyframes floating {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    :root {
        --container: 1100px;
    }

    .desktop-nav {
        gap: 20px;
        margin-right: 20px;
    }

    .hero-title {
        font-size: clamp(60px, 9vw, 105px);
    }

    .project {
        grid-template-columns: 230px 1fr;
        gap: 35px;
    }

    .project-reverse {
        grid-template-columns: 1fr 230px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: 500px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 100px 0;
    }

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 900;
        background: var(--bg);
        padding: 130px 6% 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transform: translateX(100%);
        transition: transform .5s var(--ease);
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-links a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
        font-size: 32px;
        letter-spacing: -.04em;
    }

    .mobile-menu-links span {
        color: var(--blue);
        font-family: var(--mono);
        font-size: 10px;
    }

    .mobile-menu-footer {
        display: flex;
        justify-content: space-between;
        color: var(--muted);
        font-family: var(--mono);
        font-size: 9px;
    }

    .hero-top {
        margin-bottom: 70px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .hero-description {
        max-width: 600px;
    }

    .hero-interface {
        margin-top: 70px;
    }

    .intro-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tech-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-item:nth-child(5) {
        grid-column: span 2;
    }

    .project,
    .project-reverse {
        grid-template-columns: 1fr;
    }

    .project-info,
    .project-reverse .project-info {
        min-height: auto;
        gap: 30px;
        order: 0;
    }

    .project-reverse .browser {
        order: 1;
    }

    .section-top,
    .services-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-top p {
        justify-self: start;
    }

    .service {
        grid-template-columns: 1fr 40px;
        gap: 20px;
    }

    .service-description {
        display: none;
    }

    .payment-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .flow-line {
        width: 1px;
        height: 30px;
        flex: unset;
        margin: 0 0 0 3px;
    }

    .social-grid {
        grid-template-columns: 1fr 1fr;
    }

    .social-item:nth-child(3) {
        border-left: 1px solid var(--border);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .back-top {
        justify-self: start;
    }

    /* Pricing tablet fix */
    .price-card {
        min-height: 540px;
        padding: 30px;
    }

    .price {
        margin-top: 50px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 550px) {

    .container {
        width: 90%;
    }

    .nav-inner {
        width: 90%;
    }

    .hero {
        min-height: auto;
        padding: 145px 0 80px;
    }

    .hero-location {
        display: none;
    }

    .hero-top {
        margin-bottom: 60px;
    }

    .hero-title {
        font-size: clamp(55px, 15vw, 85px);
        line-height: .88;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .interface-body {
        grid-template-columns: 35px 1fr 40px;
    }

    .interface-side {
        padding: 15px 8px;
    }

    .interface-main {
        padding: 35px 20px;
    }

    .interface-big {
        font-size: 45px;
    }

    .interface-meta {
        flex-direction: column;
        gap: 6px;
    }

    .tech-list {
        grid-template-columns: 1fr;
    }

    .tech-item {
        border-left: 1px solid var(--border);
    }

    .tech-item:nth-child(5) {
        grid-column: auto;
    }

    .browser {
        min-height: 330px;
    }

    .browser-content {
        height: 290px;
    }

    .fake-hero {
        padding: 70px 25px;
    }

    .fake-hero h4 {
        font-size: 65px;
    }

    .northline-grid {
        padding: 20px;
    }

    .northline-title {
        font-size: 65px;
    }

    .mono-content {
        padding: 25px;
    }

    .mono-title {
        font-size: 55px;
    }

    .service {
        min-height: 100px;
    }

    .service h3 {
        font-size: 21px;
    }

    /* Pricing mobile fix */
    .price-card {
        padding: 25px;
        min-height: 560px;
    }

    .price-top {
        font-size: 11px;
    }

    .price {
        margin-top: 50px;
        font-size: 65px;
    }

    .price-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .price-card ul {
        gap: 12px;
        margin-bottom: 25px;
    }

    .price-card li {
        font-size: 10px;
    }

    .price-button {
        min-height: 52px;
        font-size: 12px;
    }

    .pricing-note {
        flex-direction: column;
        gap: 10px;
    }

    .process-item {
        grid-template-columns: 45px 1fr;
    }

    .process-item h3 {
        font-size: 24px;
    }

    .payment-flow {
        padding: 25px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-item {
        border-left: 1px solid var(--border);
    }

    .contact-content {
        padding: 50px 0 80px;
    }

    .contact-content h2 {
        font-size: 80px;
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* =========================================================
   FAQ
========================================================= */

.faq {
    position: relative;
}

.faq-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: end;
    margin: 70px 0 80px;
}

.faq-heading p {
    max-width: 420px;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
}

.faq-list {
    border-top: 1px solid rgba(255,255,255,.12);
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;

    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    gap: 20px;

    padding: 30px 0;

    transition: padding .3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary > span:first-child {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

.faq-item summary strong {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -.02em;
}

.faq-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    font-size: 20px;
    font-weight: 300;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.faq-item[open] summary {
    padding-bottom: 20px;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: #315cff;
    color: #fff;
    border-color: #315cff;
}

.faq-answer {
    padding: 0 60px 30px 90px;
    animation: faqOpen .35s ease;
}

.faq-answer p {
    max-width: 700px;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
    margin: 0;
}

@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   CONTACT LAYOUT
========================================================= */

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;

    margin-top: 80px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-content h2 {
    font-size: clamp(60px, 8vw, 125px);
    line-height: .9;
    letter-spacing: -.06em;
    margin: 25px 0 30px;
}

.contact-content h2 span {
    color: #315cff;
}

.contact-content > p {
    max-width: 420px;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    margin-bottom: 35px;
}


/* =========================================================
   CONTACT MAIN BUTTON
========================================================= */

.contact-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;

    min-width: 260px;

    padding: 18px 22px;

    background: #315cff;
    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;

    transition:
        background .3s ease,
        transform .2s ease;
}

.contact-main-btn:hover {
    background: #416aff;
}

.contact-main-btn span:last-child {
    font-size: 18px;
}

.contact-email {
    margin-top: 25px;

    color: rgba(255,255,255,.6);

    font-family: "JetBrains Mono", monospace;
    font-size: 12px;

    text-decoration: none;

    display: inline-flex;
    gap: 12px;

    border-bottom: 1px solid rgba(255,255,255,.25);

    padding-bottom: 6px;

    transition: color .25s ease;
}

.contact-email:hover {
    color: #315cff;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
    padding: 35px;

    border: 1px solid rgba(255,255,255,.12);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    position: relative;
}

.form-header {
    display: flex;
    justify-content: space-between;

    padding-bottom: 25px;
    margin-bottom: 35px;

    border-bottom: 1px solid rgba(255,255,255,.1);

    font-family: "JetBrains Mono", monospace;
    font-size: 12px;

    color: rgba(255,255,255,.4);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    font-family: "JetBrains Mono", monospace;
    font-size: 12px;

    color: var(--blue-light);

    letter-spacing: .08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 16px 0;

    background: transparent;

    border: none;
    border-bottom: 1px solid rgba(255,255,255,.15);

    color: #fff;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;

    outline: none;

    transition: border-color .3s ease;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #315cff;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0b0d12;
    color: #fff;
}


/* =========================================================
   FORM SUBMIT
========================================================= */

.form-submit {
    width: 100%;

    margin-top: 10px;

    padding: 18px 22px;

    border: 1px solid #315cff;

    background: #315cff;
    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .2s ease;
}

.form-submit:hover {
    background: transparent;
    border-color: #315cff;
}

.form-submit span:last-child {
    font-size: 18px;
}

.form-note {
    margin-top: 18px;

    font-family: "JetBrains Mono", monospace;
    font-size: 10px;

    line-height: 1.7;

    color: rgba(255,255,255,.3);
}


/* =========================================================
   SOCIAL GRID IMPROVEMENTS
========================================================= */

.social-grid {
    margin-top: 90px;
}

.social-item {
    transition:
        background .3s ease,
        padding-left .3s ease;
}

.social-item:hover {
    background: rgba(49,92,255,.05);
    padding-left: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .faq-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 50px 0 50px;
    }

    .faq-item summary {
        grid-template-columns: 45px 1fr 35px;
        gap: 15px;
        padding: 24px 0;
    }

    .faq-item summary strong {
        font-size: 17px;
    }

    .faq-answer {
        padding: 0 20px 25px 60px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: 60px;
    }

    .contact-form {
        padding: 25px;
    }

}


@media (max-width: 600px) {

    .faq-item summary {
        grid-template-columns: 35px 1fr 30px;
        gap: 10px;
    }

    .faq-item summary strong {
        font-size: 15px;
        line-height: 1.4;
    }

    .faq-answer {
        padding: 0 10px 25px 45px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .contact-content h2 {
        font-size: clamp(55px, 18vw, 90px);
    }

    .contact-main-btn {
        width: 100%;
        min-width: 0;
    }

    .contact-form {
        padding: 20px;
    }

    .form-header {
        font-size: 9px;
    }

}

/* =========================================================
   START A PROJECT
========================================================= */

.start-project {
    position: relative;
}


.start-project-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    margin-top: 80px;
    margin-bottom: 70px;
}


.start-project-intro h2 {
    font-size: clamp(55px, 7vw, 105px);

    line-height: .9;

    letter-spacing: -.06em;

    margin: 0;
}


.start-project-intro h2 span {
    display: block;
    color: #315cff;
}


.start-project-intro p {
    max-width: 520px;

    align-self: end;

    color: rgba(255,255,255,.5);

    line-height: 1.8;

    margin: 0;
}


/* CHECKLIST */

.project-checklist {
    border-top: 1px solid rgba(255,255,255,.12);
}


.project-item {
    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 40px;

    padding: 35px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);

    transition:
        background .3s ease,
        padding-left .3s ease;
}


.project-item:hover {
    background: rgba(49,92,255,.04);

    padding-left: 15px;
}


.project-number {
    font-family: "JetBrains Mono", monospace;

    font-size: 15px;

    color: rgba(255,255,255,.35);

    padding-top: 5px;
}


.project-content h3 {
    margin: 0 0 12px;

    font-size: 18px;

    font-weight: 500;

    letter-spacing: -.02em;
}


.project-content p {
    max-width: 700px;

    margin: 0;

    color: rgba(255,255,255,.45);

    font-size: 14px;

    line-height: 1.8;
}


/* BOTTOM NOTE */

.project-bottom {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    margin-top: 60px;

    padding: 30px 0;

    border-top: 1px solid rgba(255,255,255,.1);
}


.project-bottom span {
    font-family: "JetBrains Mono", monospace;

    font-size: 10px;

    color: rgba(255,255,255,.4);

    letter-spacing: .08em;
}


.project-bottom p {
    margin: 0;

    color: rgba(255,255,255,.55);

    line-height: 1.7;

    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .start-project-intro {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 60px;
    }


    .project-item {
        grid-template-columns: 60px 1fr;

        gap: 20px;
    }


    .project-bottom {
        grid-template-columns: 1fr;

        gap: 20px;
    }

}


@media (max-width: 600px) {

    .start-project-intro h2 {
        font-size: clamp(50px, 17vw, 85px);
    }


    .project-item {
        padding: 28px 0;

        grid-template-columns: 40px 1fr;

        gap: 15px;
    }


    .project-content h3 {
        font-size: 16px;
    }


    .project-content p {
        font-size: 13px;
    }

}
