/* =========================================================
   VARIABLES
========================================================= */

:root {

    --bg: #070609;
    --bg-2: #0c0a0f;
    --bg-3: #111014;

    --pink: #ff4fa3;
    --pink-2: #ff70b5;
    --pink-3: #ffb5d8;

    --white: #f8f7fa;
    --gray: #aaa4ae;
    --gray-2: #69636e;

    --border: rgba(255,255,255,.09);

    --glass: rgba(255,255,255,.035);

    --radius: 24px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    background: var(--bg);

    color: var(--white);

    font-family: "Manrope", sans-serif;

    overflow-x: hidden;

    cursor: none;

}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

::selection {

    background: var(--pink);

    color: white;

}


/* =========================================================
   LOADER
========================================================= */

.loader {

    position: fixed;

    inset: 0;

    background: var(--bg);

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        opacity .7s ease,
        visibility .7s ease;

}

.loader.hide {

    opacity: 0;

    visibility: hidden;

}

.loader-inner {

    text-align: center;

}

.loader-logo {

    font-size: clamp(30px,5vw,60px);

    font-weight: 800;

    letter-spacing: -3px;

    overflow: hidden;

}

.loader-logo span {

    color: var(--pink);

}

.loader-line {

    width: 0;

    height: 2px;

    margin: 20px auto 0;

    background: var(--pink);

    box-shadow:
        0 0 15px var(--pink),
        0 0 30px rgba(255,79,163,.5);

    animation: loaderLine 1.3s ease forwards;

}

@keyframes loaderLine {

    to {
        width: 100%;
    }

}


/* =========================================================
   CUSTOM CURSOR
========================================================= */

.cursor {

    position: fixed;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 12px var(--pink),
        0 0 30px rgba(255,79,163,.7);

    pointer-events: none;

    z-index: 10000;

    transform: translate(-50%,-50%);

}

.cursor-ring {

    position: fixed;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,79,163,.6);

    border-radius: 50%;

    pointer-events: none;

    z-index: 9999;

    transform: translate(-50%,-50%);

    transition:
        width .25s ease,
        height .25s ease,
        border-color .25s ease;

}

body.cursor-hover .cursor-ring {

    width: 60px;
    height: 60px;

    border-color: var(--pink);

}


/* =========================================================
   PARTICLES
========================================================= */

#particles {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -3;

}

.particle {

    position: absolute;

    width: 2px;

    height: 2px;

    border-radius: 50%;

    background: var(--pink);

    opacity: .35;

    box-shadow: 0 0 8px var(--pink);

    animation: particleFloat linear infinite;

}

@keyframes particleFloat {

    from {

        transform:
            translateY(110vh)
            translateX(0);

    }

    to {

        transform:
            translateY(-10vh)
            translateX(70px);

    }

}


/* =========================================================
   BACKGROUND
========================================================= */

.noise {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 90;

    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");

}

.ambient {

    position: fixed;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: var(--pink);

    filter: blur(180px);

    opacity: .055;

    pointer-events: none;

    z-index: -2;

    transition: transform 1s ease;

}

.ambient.one {

    top: -250px;

    left: -180px;

}

.ambient.two {

    right: -250px;

    top: 40%;

}


/* =========================================================
   SCROLL PROGRESS
========================================================= */

.scroll-progress {

    position: fixed;

    top: 0;

    left: 0;

    width: 0%;

    height: 2px;

    background: var(--pink);

    box-shadow:
        0 0 10px var(--pink),
        0 0 25px var(--pink);

    z-index: 10001;

}


/* =========================================================
   NAV
========================================================= */

nav {

    width: min(1180px,calc(100% - 40px));

    height: 76px;

    margin: 20px auto 0;

    padding: 0 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: sticky;

    top: 20px;

    z-index: 100;

    border: 1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(7,6,9,.65);

    backdrop-filter: blur(20px);

    transition: .35s;

}

nav.scrolled {

    background:
        rgba(7,6,9,.9);

    border-color:
        rgba(255,79,163,.2);

    box-shadow:
        0 15px 60px rgba(0,0,0,.35);

}

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 15px;

    font-weight: 800;

}

.logo-mark {

    width: 35px;
    height: 35px;

    border-radius: 10px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--pink-2)
        );

    box-shadow:
        0 0 30px rgba(255,79,163,.3);

    position: relative;

    overflow: hidden;

}

.logo-mark::before {

    content: "";

    position: absolute;

    width: 150%;

    height: 30%;

    background: rgba(255,255,255,.4);

    transform:
        rotate(-45deg)
        translateX(-100%);

    transition: .5s;

    z-index: 3;

}

.logo:hover .logo-mark::before {

    transform:
        rotate(-45deg)
        translateX(100%);

}

.logo-mark img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 5px;

    position: relative;

    z-index: 2;

    transition:
        transform .4s ease;

}

.logo:hover .logo-mark img {

    transform:
        scale(1.08)
        rotate(-4deg);

}

.logo span {

    color: var(--pink-2);

}

.nav-links {

    display: flex;

    gap: 30px;

    font-size: 12px;

    color: var(--gray);

}

.nav-links a {

    position: relative;

    transition: .3s;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 1px;

    background: var(--pink);

    transition: .3s;

}

.nav-links a:hover {

    color: white;

}

.nav-links a:hover::after {

    width: 100%;

}

.nav-button {

    padding: 11px 18px;

    border-radius: 11px;

    border: 1px solid rgba(255,79,163,.35);

    color: var(--pink-2);

    background: rgba(255,79,163,.08);

    font-size: 12px;

    font-weight: 800;

    transition: .3s;

}

.nav-button:hover {

    color: white;

    background: var(--pink);

    border-color: var(--pink);

    box-shadow:
        0 0 35px rgba(255,79,163,.3);

    transform: translateY(-2px);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    width: min(1180px,calc(100% - 40px));

    min-height: 820px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    align-items: center;

    gap: 70px;

    padding: 100px 0;

    position: relative;

}

.hero::before {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 1px;

    height: 100px;

    background:
        linear-gradient(
            transparent,
            var(--pink),
            transparent
        );

    opacity: .4;

}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-family: "DM Mono",monospace;

    font-size: 10px;

    color: var(--pink-2);

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 28px;

}

.eyebrow::before {

    content: "";

    width: 30px;

    height: 1px;

    background: var(--pink);

    box-shadow:
        0 0 10px var(--pink);

}

h1 {

    font-size:
        clamp(58px,7vw,94px);

    line-height: .91;

    letter-spacing: -5px;

    font-weight: 800;

}

h1 .pink {

    color: var(--pink);

    position: relative;

}

.shine-text {

    background:
        linear-gradient(
            110deg,
            var(--pink) 30%,
            white 45%,
            var(--pink) 60%
        );

    background-size: 250% auto;

    color: transparent;

    background-clip: text;

    animation: textShine 5s linear infinite;

}

@keyframes textShine {

    to {
        background-position: 250% center;
    }

}

.hero-description {

    max-width: 570px;

    margin-top: 35px;

    color: var(--gray);

    font-size: 16px;

    line-height: 1.8;

}

.hero-description strong {

    color: white;

}

.hero-actions {

    display: flex;

    gap: 13px;

    margin-top: 38px;

}

.primary-button {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    padding: 16px 24px;

    border-radius: 13px;

    background: var(--pink);

    color: white;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 15px 45px rgba(255,79,163,.18);

    position: relative;

    overflow: hidden;

    transition: .35s;

}

.primary-button::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transform: skewX(-20deg);

    transition: .6s;

}

.primary-button:hover::before {

    left: 140%;

}

.primary-button:hover {

    transform: translateY(-4px) scale(1.02);

    box-shadow:
        0 20px 60px rgba(255,79,163,.35);

}

.secondary-button {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 16px 24px;

    border-radius: 13px;

    border: 1px solid var(--border);

    color: var(--gray);

    font-size: 13px;

    font-weight: 700;

    transition: .35s;

}

.secondary-button:hover {

    color: white;

    border-color:
        rgba(255,79,163,.4);

    background:
        rgba(255,79,163,.04);

    transform: translateY(-3px);

}


/* =========================================================
   HERO BROWSER
========================================================= */

.hero-visual {

    height: 530px;

    position: relative;

    perspective: 1200px;

}

.browser {

    position: absolute;

    width: 100%;

    max-width: 470px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%)
        rotate3d(1,-1,0,8deg);

    border-radius: 20px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.14);

    background: #100e12;

    box-shadow:
        0 50px 120px rgba(0,0,0,.55),
        0 0 100px rgba(255,79,163,.08);

    transition:
        transform .18s ease-out;

}

.browser::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 30%,
            rgba(255,255,255,.06),
            transparent 55%
        );

    transform:
        translateX(-120%);

    animation:
        browserShine 5s infinite;

    pointer-events: none;

}

@keyframes browserShine {

    0%,65% {
        transform: translateX(-120%);
    }

    85%,100% {
        transform: translateX(120%);
    }

}

.browser-top {

    height: 42px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 0 15px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

}

.dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #38333b;

}

.url {

    flex: 1;

    height: 22px;

    margin-left: 8px;

    border-radius: 6px;

    display: flex;

    align-items: center;

    padding-left: 10px;

    background:
        rgba(255,255,255,.035);

    color: #69636e;

    font-family:
        "DM Mono",monospace;

    font-size: 9px;

}

.browser-content {

    min-height: 380px;

    padding: 40px 30px;

    background:

        radial-gradient(
            circle at 80% 10%,
            rgba(255,79,163,.18),
            transparent 35%
        );

}

.mini-label {

    font-family:
        "DM Mono",monospace;

    color: var(--pink);

    font-size: 9px;

    letter-spacing: 2px;

}

.mini-title {

    font-size: 39px;

    line-height: .95;

    letter-spacing: -2px;

    font-weight: 800;

    margin-top: 15px;

}

.mini-title span {

    color: var(--pink);

}

.mini-lines {

    display: flex;

    gap: 7px;

    margin-top: 25px;

}

.mini-line {

    height: 5px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.08);

}

.mini-line:nth-child(1) {
    width: 100px;
}

.mini-line:nth-child(2) {
    width: 45px;
}

.mini-card {

    margin-top: 35px;

    height: 130px;

    border-radius: 14px;

    border:
        1px solid rgba(255,255,255,.08);

    background:
        rgba(255,255,255,.025);

    display: grid;

    place-items: center;

    position: relative;

    overflow: hidden;

}

.mini-card::before {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: var(--pink);

    filter: blur(65px);

    opacity: .22;

    animation:
        miniGlow 3s ease-in-out infinite;

}

@keyframes miniGlow {

    50% {
        transform: scale(1.4);
        opacity: .32;
    }

}

.mini-code {

    position: relative;

    font-family:
        "DM Mono",monospace;

    color: var(--pink-3);

    font-size: 11px;

}

.floating {

    position: absolute;

    padding: 13px 16px;

    border-radius: 13px;

    border:
        1px solid rgba(255,255,255,.1);

    background:
        rgba(13,12,16,.82);

    backdrop-filter: blur(18px);

    color: var(--gray);

    font-size: 10px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);

}

.floating strong {

    display: block;

    color: white;

    font-size: 13px;

    margin-bottom: 3px;

}

.float-one {

    right: -10px;

    top: 55px;

    animation:
        floatOne 4s ease-in-out infinite;

}

.float-two {

    left: -15px;

    bottom: 55px;

    animation:
        floatTwo 5s ease-in-out infinite;

}

@keyframes floatOne {

    50% {
        transform:
            translateY(-15px)
            rotate(2deg);
    }

}

@keyframes floatTwo {

    50% {
        transform:
            translateY(12px)
            rotate(-2deg);
    }

}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: var(--gray-2);

    font-family:
        "DM Mono",monospace;

    font-size: 8px;

    letter-spacing: 2px;

}

.scroll-mouse {

    width: 18px;

    height: 28px;

    border:
        1px solid var(--gray-2);

    border-radius: 20px;

    position: relative;

}

.scroll-mouse::before {

    content: "";

    position: absolute;

    width: 3px;
    height: 6px;

    border-radius: 4px;

    background: var(--pink);

    left: 50%;

    top: 5px;

    transform: translateX(-50%);

    animation:
        scrollDot 1.5s infinite;

}

@keyframes scrollDot {

    100% {

        transform:
            translate(-50%,10px);

        opacity: 0;

    }

}


/* =========================================================
   TRUST
========================================================= */

.trust {

    width: min(1180px,calc(100% - 40px));

    margin:
        0 auto 150px;

    padding: 25px 0;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}

.trust-item {

    font-family:
        "DM Mono",monospace;

    font-size: 9px;

    letter-spacing: 1px;

    color: var(--gray-2);

    text-transform: uppercase;

}

.trust-item span {

    color: var(--pink);

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

section {

    width: min(1180px,calc(100% - 40px));

    margin:
        0 auto 170px;

}

.section-head {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;

    margin-bottom: 55px;

}

.section-number {

    font-family:
        "DM Mono",monospace;

    color: var(--pink);

    font-size: 10px;

    letter-spacing: 1px;

    margin-bottom: 15px;

}

h2 {

    font-size:
        clamp(42px,5vw,66px);

    line-height: .94;

    letter-spacing: -3px;

}

.section-description {

    max-width: 430px;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(45px)
        scale(.98);

    transition:
        opacity .8s ease,
        transform .9s cubic-bezier(.2,.8,.2,1);

}

.reveal.show {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);

}


/* =========================================================
   WHY
========================================================= */

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 14px;

}

.why-card {

    min-height: 290px;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        var(--glass);

    position: relative;

    overflow: hidden;

    transform-style: preserve-3d;

    transition:
        border .3s,
        background .3s;

}

.why-card:hover {

    border-color:
        rgba(255,79,163,.35);

}

.why-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: var(--pink);

    filter: blur(100px);

    opacity: 0;

    right: -80px;

    top: -80px;

    transition: .5s;

}

.why-card:hover::before {

    opacity: .12;

}

.why-icon {

    width: 43px;
    height: 43px;

    border-radius: 12px;

    display: grid;

    place-items: center;

    color: var(--pink);

    background:
        rgba(255,79,163,.08);

    border:
        1px solid rgba(255,79,163,.17);

    font-size: 18px;

    margin-bottom: 65px;

    transform: translateZ(30px);

}

.why-card h3 {

    font-size: 20px;

    margin-bottom: 12px;

    transform:
        translateZ(20px);

}

.why-card p {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.8;

    transform:
        translateZ(15px);

}


/* =========================================================
   INTERACTIVE FLOW
========================================================= */

.flow {

    position: relative;

    padding: 50px 0;

}

.flow-line {

    position: absolute;

    left: 0;

    right: 0;

    top: 50%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,79,163,.6),
            transparent
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform 1.5s ease;

}

.flow.show .flow-line {

    transform:
        scaleX(1);

}

.flow-grid {

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 12px;

    position: relative;

}

.flow-item {

    height: 180px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(255,255,255,.025);

    padding: 22px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition: .4s;

    position: relative;

}

.flow-item:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,79,163,.4);

    background:
        rgba(255,79,163,.05);

}

.flow-number {

    font-family:
        "DM Mono",monospace;

    color: var(--pink);

    font-size: 9px;

}

.flow-icon {

    font-size: 25px;

    filter:
        drop-shadow(
            0 0 12px
            rgba(255,79,163,.5)
        );

}

.flow-item h3 {

    font-size: 14px;

}


/* =========================================================
   COMPARISON
========================================================= */

.comparison {

    padding: 70px;

    border:
        1px solid var(--border);

    border-radius: 30px;

    background:

        radial-gradient(
            circle at 80% 0%,
            rgba(255,79,163,.1),
            transparent 35%
        ),

        var(--bg-2);

    position: relative;

    overflow: hidden;

}

.comparison::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    border:
        1px solid rgba(255,79,163,.08);

    right: 8%;

    top: -120px;

}

.comparison-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 30px;

}

.comparison-item {

    padding: 25px;

    border-left:
        1px solid var(--border);

}

.comparison-item:first-child {

    border-left: 0;

}

.comparison-label {

    font-family:
        "DM Mono",monospace;

    color: var(--gray-2);

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.comparison-item:last-child
.comparison-label {

    color: var(--pink);

}

.comparison-item h3 {

    font-size: 28px;

    margin-bottom: 15px;

}

.comparison-item p {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.8;

}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-grid {

    display: grid;

    grid-template-columns:
        1.35fr .65fr;

    gap: 14px;

}

.project {

    min-height: 430px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    position: relative;

    background: #111014;

    transform-style: preserve-3d;

    transition:
        border .3s;

    cursor: none;

}

.project:first-child {

    grid-row: span 2;

    min-height: 600px;

}

.project:hover {

    border-color:
        rgba(255,79,163,.4);

}


/* =========================================================
   PROJECT IMAGE
========================================================= */

.project-image {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    transform: scale(1.02);

    transition:
        transform 1s cubic-bezier(.2,.8,.2,1),
        filter .6s ease;

    filter:
        brightness(.72)
        saturate(.85);

}

.project:hover .project-image {

    transform:
        scale(1.1);

    filter:
        brightness(.9)
        saturate(1.1);

}


/* =========================================================
   PROJECT OVERLAY
========================================================= */

.project-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            rgba(7,6,9,.05) 0%,
            rgba(7,6,9,.15) 30%,
            rgba(7,6,9,.92) 100%
        );

    z-index: 1;

    transition:
        background .5s ease;

}

.project:hover .project-overlay {

    background:

        linear-gradient(
            180deg,
            rgba(255,79,163,.08),
            rgba(7,6,9,.88)
        );

}


/* =========================================================
   PROJECT BORDER GLOW
========================================================= */

.project::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius:
        inherit;

    border:
        1px solid
        transparent;

    z-index: 4;

    pointer-events: none;

    transition:
        border-color .4s ease,
        box-shadow .4s ease;

}

.project:hover::before {

    border-color:
        rgba(255,79,163,.35);

    box-shadow:
        inset 0 0 50px
        rgba(255,79,163,.04);

}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.project-content {

    position: absolute;

    inset: 0;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: end;

    background:
        linear-gradient(
            transparent 25%,
            rgba(0,0,0,.8)
        );

    transform:
        translateZ(30px);

    z-index: 2;

}

.project-tag {

    font-family:
        "DM Mono",monospace;

    font-size: 9px;

    color: var(--pink-2);

    letter-spacing: 1px;

    margin-bottom: 10px;

}

.project h3 {

    font-size: 28px;

    letter-spacing: -1px;

}

.project p {

    margin-top: 7px;

    color: var(--gray);

    font-size: 11px;

}

.project-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    width: fit-content;

    padding: 9px 13px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 8px;

    background:
        rgba(255,255,255,.04);

    backdrop-filter: blur(10px);

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: 1px;

    color: white;

    opacity: 0;

    transform:
        translateY(12px);

    transition:
        opacity .4s ease,
        transform .4s ease,
        background .3s ease,
        border-color .3s ease;

}

.project:hover .project-link {

    opacity: 1;

    transform:
        translateY(0);

}

.project-link span {

    color:
        var(--pink);

    font-size: 14px;

    transition:
        transform .3s ease;

}

.project:hover .project-link span {

    transform:
        translate(3px,-3px);

}

.project-link:hover {

    background:
        rgba(255,79,163,.12);

    border-color:
        rgba(255,79,163,.4);

}


/* =========================================================
   EMPTY PROJECT
========================================================= */

.project-empty {

    background:
        var(--bg-2);

}

.project-empty-glow {

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:
        var(--pink);

    filter:
        blur(130px);

    opacity: .08;

    right: -100px;

    top: -100px;

    transition:
        transform .8s ease,
        opacity .5s ease;

}

.project-empty:hover
.project-empty-glow {

    transform:
        scale(1.4);

    opacity: .15;

}

.project-coming {

    display: inline-flex;

    width: fit-content;

    margin-top: 20px;

    padding: 8px 11px;

    border:
        1px solid
        rgba(255,79,163,.2);

    border-radius: 7px;

    color:
        var(--pink);

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: 1px;

}


/* =========================================================
   PRICING
========================================================= */

.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 14px;

    align-items: stretch;

}

.price-card {

    padding: 32px;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background:
        var(--glass);

    display: flex;

    flex-direction: column;

    position: relative;

    transition:
        transform .4s,
        border .4s;

    overflow: hidden;

}

.price-card::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: var(--pink);

    filter: blur(120px);

    opacity: 0;

    right: -120px;

    top: -120px;

    transition: .5s;

}

.price-card:hover::before {

    opacity: .08;

}

.price-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,79,163,.35);

}

.price-card.featured {

    border-color:
        rgba(255,79,163,.55);

    background:

        radial-gradient(
            circle at 80% 0%,
            rgba(255,79,163,.13),
            transparent 35%
        ),

        var(--glass);

    box-shadow:
        0 30px 90px
        rgba(255,79,163,.08);

    animation:
        featuredPulse 4s ease-in-out infinite;

}

@keyframes featuredPulse {

    50% {

        box-shadow:
            0 30px 100px
            rgba(255,79,163,.15);

    }

}

.popular {

    position: absolute;

    top: 20px;

    right: 20px;

    padding: 7px 10px;

    border-radius: 7px;

    background:
        var(--pink);

    color: white;

    font-family:
        "DM Mono",monospace;

    font-size: 8px;

    letter-spacing: 1px;

    text-transform: uppercase;

    animation:
        popularPulse 2s infinite;

}

@keyframes popularPulse {

    50% {

        box-shadow:
            0 0 25px
            rgba(255,79,163,.45);

    }

}

.price-card h3 {

    font-size: 25px;

    margin-bottom: 10px;

}

.price {

    font-size: 44px;

    font-weight: 800;

    letter-spacing: -3px;

    margin-top: 5px;

}

.currency {

    color: var(--pink-2);

    font-family:
        "DM Mono",monospace;

    font-size: 10px;

    letter-spacing: 1px;

}

.price-description {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.7;

    margin-top: 10px;

    min-height: 42px;

}

.features {

    list-style: none;

    margin: 28px 0;

    flex: 1;

}

.features li {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 0;

    color: #c6c0c8;

    font-size: 11px;

}

.features li::before {

    content: "✓";

    color: var(--pink);

    font-weight: 800;

}

.package-button {

    width: 100%;

    padding: 14px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    text-align: center;

    font-size: 11px;

    font-weight: 800;

    transition: .3s;

}

.package-button:hover,
.featured .package-button {

    background:
        var(--pink);

    border-color:
        var(--pink);

    color: white;

    box-shadow:
        0 10px 35px
        rgba(255,79,163,.2);

}


/* =========================================================
   PROCESS
========================================================= */

.process {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 14px;

}

.process::before {

    content: "";

    position: absolute;

    top: 8px;

    left: 0;

    width: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            transparent
        );

    transition:
        width 2s ease;

}

.process.show::before {

    width: 100%;

}

.process-card {

    padding: 28px;

    min-height: 250px;

    border-top:
        1px solid var(--border);

    position: relative;

}

.process-card::before {

    content: "";

    position: absolute;

    top: -4px;

    left: 0;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background:
        var(--pink);

    box-shadow:
        0 0 15px var(--pink);

}

.process-number {

    font-family:
        "DM Mono",monospace;

    color: var(--pink);

    font-size: 9px;

    margin-bottom: 65px;

}

.process-card h3 {

    font-size: 18px;

    margin-bottom: 10px;

}

.process-card p {

    color: var(--gray);

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   CTA
========================================================= */

.cta {

    text-align: center;

    padding: 110px 30px;

    border:
        1px solid rgba(255,79,163,.2);

    border-radius: 32px;

    background:

        radial-gradient(
            circle at center,
            rgba(255,79,163,.13),
            transparent 55%
        ),

        var(--bg-2);

    position: relative;

    overflow: hidden;

}

.cta::before,
.cta::after {

    content: "";

    position: absolute;

    left: 50%;

    top: 50%;

    border:
        1px solid
        rgba(255,79,163,.08);

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    animation:
        ctaPulse 5s ease-in-out infinite;

}

.cta::before {

    width: 350px;
    height: 350px;

}

.cta::after {

    width: 600px;
    height: 600px;

    animation-delay:
        -2.5s;

}

@keyframes ctaPulse {

    50% {

        transform:
            translate(-50%,-50%)
            scale(1.08);

        opacity: .4;

    }

}

.cta > * {

    position: relative;

    z-index: 2;

}

.cta h2 {

    max-width: 800px;

    margin: auto;

}

.cta h2 span {

    color: var(--pink);

}

.cta p {

    max-width: 520px;

    margin: 25px auto 35px;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    width: min(1180px,calc(100% - 40px));

    margin: auto;

    padding: 35px 0 45px;

    border-top:
        1px solid var(--border);

    display: flex;

    justify-content: space-between;

    color: var(--gray-2);

    font-size: 10px;

}

footer strong {

    color: var(--pink-2);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px) {

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }

    .hero {

        grid-template-columns: 1fr;

        padding-top: 80px;

    }

    .hero-visual {

        height: 450px;

    }

    .why-grid,
    .pricing-grid {

        grid-template-columns: 1fr;

    }

    .comparison-grid {

        grid-template-columns: 1fr;

    }

    .comparison-item,
    .comparison-item:first-child {

        border-left: 0;

        border-top:
            1px solid var(--border);

    }

    .comparison-item:first-child {

        border-top: 0;

    }

    .portfolio-grid {

        grid-template-columns: 1fr;

    }

    .project:first-child {

        grid-row: auto;

        min-height: 430px;

    }

    .process {

        grid-template-columns:
            1fr 1fr;

    }

    .flow-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .flow-line {

        display: none;

    }

    .nav-links {

        display: none;

    }

}


@media(max-width:600px) {

    nav {

        width:
            calc(100% - 24px);

        margin-top: 12px;

        top: 12px;

    }

    .hero,
    section,
    .trust,
    footer {

        width:
            calc(100% - 28px);

    }

    h1 {

        font-size: 54px;

        letter-spacing: -3px;

    }

    .hero {

        padding:
            70px 0;

    }

    .hero-actions {

        flex-direction: column;

    }

    .hero-actions a {

        text-align: center;

    }

    .hero-visual {

        height: 380px;

    }

    .browser {

        width: 96%;

    }

    .float-one {

        right: -5px;

    }

    .float-two {

        left: -5px;

    }

    .trust {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 20px;

    }

    section {

        margin-bottom: 110px;

    }

    .section-head {

        display: block;

    }

    .section-description {

        margin-top: 20px;

    }

    .comparison {

        padding:
            35px 20px;

    }

    .process {

        grid-template-columns:
            1fr;

    }

    .flow-grid {

        grid-template-columns:
            1fr;

    }

    .project-link {

        opacity: 1;

        transform:
            translateY(0);

    }

    .project-image {

        filter:
            brightness(.75)
            saturate(.9);

    }

    footer {

        display: block;

        line-height: 2;

    }

}