:root {
    --bg: #080a0d;
    --surface: #11151a;
    --text: #f5f7f8;
    --muted: #9aa3ad;
    --lime: #b8ff36;
    --line: rgba(255, 255, 255, .12);
    --container: min(92vw, 1440px)
}
 
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, sans-serif;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

button,
a {
    cursor: pointer
}

::selection {
    background: var(--lime);
    color: #081000
}

.progress {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px
}

.progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left
}

.cursor-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 255, 54, .09), transparent 66%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%)
}

.site-header {
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: .35s;
    background: linear-gradient(to bottom, rgba(8, 10, 13, .72), transparent)
}

.site-header.scrolled {
    height: 72px;
    background: rgba(8, 10, 13, .88);
    backdrop-filter: blur(18px);
    border-color: var(--line)
}

.brand {
    display: flex;
    gap: 11px;
    align-items: center;
    font-family: Manrope;
    font-weight: 800;
    letter-spacing: -.03em
}

.brand small {
    display: block;
    font-size: 8px;
    letter-spacing: .25em;
    color: var(--muted)
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--lime);
    color: #0b0e08;
    font-size: 17px
}

.desktop-nav {
    display: flex;
    gap: 32px;
    font-size: 13px
}

.desktop-nav a {
    color: #c7ccd1;
    transition: .25s
}

.desktop-nav a:hover {
    color: var(--lime)
}

.header-cta {
    border: 1px solid var(--line);
    padding: 13px 19px;
    border-radius: 999px;
    font-size: 13px;
    overflow: hidden
}

.header-cta:hover {
    border-color: var(--lime)
}

.hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    padding: 140px 6vw 80px;
    isolation: isolate
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    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: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 20%, transparent 90%)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: -2
}

.hero-orb-a {
    width: 520px;
    height: 520px;
    right: 2%;
    top: 8%;
    background: radial-gradient(circle at 30% 30%, rgba(184, 255, 54, .25), rgba(40, 80, 20, .08) 45%, transparent 70%)
}

.hero-orb-b {
    width: 380px;
    height: 380px;
    left: 25%;
    bottom: -15%;
    background: radial-gradient(circle, rgba(65, 91, 255, .17), transparent 68%)
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bac2ca;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase
}

.eyebrow span {
    width: 38px;
    height: 1px;
    background: var(--lime)
}

.hero-title {
    font-family: Manrope;
    font-size: clamp(3.8rem, 7.6vw, 8.2rem);
    line-height: .89;
    letter-spacing: -.072em;
    margin: 26px 0 28px;
    max-width: 950px
}

.hero-title .line {
    display: block;
    overflow: hidden;
    padding-bottom: .08em
}

.hero-title .line>span {
    display: block
}

.accent-line {
    color: var(--lime)
}

.hero-description {
    max-width: 600px;
    color: #aeb6bf;
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    line-height: 1.65
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 42px
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    padding: 18px 22px;
    border-radius: 999px
}

.button-primary {
    background: var(--lime);
    color: #0b0f07;
    font-weight: 700
}

.button-primary b {
    font-size: 20px
}

.text-link {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    font-size: 14px;
    color: #cbd1d7
}

.text-link span {
    color: var(--lime)
}

.hero-stage {
    position: relative;
    height: min(68vh, 710px);
    perspective: 1200px
}

.stage-card {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(17, 21, 26, .72);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35)
}

.stage-main {
    width: 90%;
    height: 78%;
    right: 0;
    top: 7%;
    border-radius: 28px;
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(4deg)
}

.browser-bar {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    font-size: 9px;
    color: #6f7882
}

.browser-bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3a4149
}

.browser-bar span {
    margin-left: 10px
}

.mockup-screen {
    height: calc(100% - 45px);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #151c15, #060708 60%)
}

.mockup-nav {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--lime) 12%, rgba(255, 255, 255, .2) 12%)
}

.mockup-copy {
    position: absolute;
    left: 7%;
    top: 27%;
    width: 48%
}

.mockup-copy small {
    color: var(--lime);
    font-size: 8px;
    letter-spacing: .2em
}

.mockup-copy strong {
    display: block;
    font-family: Manrope;
    font-size: clamp(24px, 3.2vw, 58px);
    line-height: 1.02;
    letter-spacing: -.05em;
    margin-top: 14px
}

.mockup-copy span {
    display: block;
    width: 45%;
    height: 8px;
    margin-top: 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .22)
}

.mockup-art {
    position: absolute;
    width: 52%;
    aspect-ratio: 1;
    right: -5%;
    bottom: -13%;
    border-radius: 50%;
    border: 1px solid rgba(184, 255, 54, .25)
}

.mockup-art b,
.mockup-art i,
.mockup-art em {
    position: absolute;
    border-radius: 50%;
    inset: 12%;
    border: 1px solid rgba(184, 255, 54, .25)
}

.mockup-art i {
    inset: 27%
}

.mockup-art em {
    inset: 42%;
    background: var(--lime);
    box-shadow: 0 0 80px rgba(184, 255, 54, .6)
}

.stage-stat {
    left: -4%;
    bottom: 6%;
    width: 200px;
    padding: 24px;
    border-radius: 18px
}

.stage-stat strong {
    display: block;
    font-family: Manrope;
    font-size: 42px;
    color: var(--lime)
}

.stage-stat span {
    font-size: 11px;
    color: #9da6af
}

.stage-pill {
    right: -3%;
    top: 2%;
    padding: 14px 19px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: .08em
}

.scroll-note {
    position: absolute;
    left: 6vw;
    bottom: 28px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #68717a;
    font-size: 9px;
    letter-spacing: .18em
}

.scroll-note span {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    position: relative
}

.scroll-note span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 7px;
    background: var(--lime);
    left: 14px;
    top: 7px;
    border-radius: 2px;
    animation: scrollDot 1.6s infinite
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 0
    }

    30% {
        opacity: 1
    }

    100% {
        transform: translateY(11px);
        opacity: 0
    }
}

.section-label {
    font-size: 10px;
    letter-spacing: .2em;
    color: #78818a
}

.statement {
    width: var(--container);
    margin: auto;
    padding: 150px 0;
    display: grid;
    grid-template-columns: .45fr 1.65fr .75fr;
    gap: 5vw;
    border-top: 1px solid var(--line)
}

.statement-kicker {
    color: var(--lime);
    font-size: 13px
}

.statement h2 {
    font-family: Manrope;
    font-size: clamp(2.8rem, 5.5vw, 6.4rem);
    line-height: .98;
    letter-spacing: -.06em;
    margin: 0
}

.word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom
}

.word-inner {
    display: inline-block
}

.statement-side {
    align-self: end;
    color: #9fa8b1;
    line-height: 1.7
}

.mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--line)
}

.mini-stats strong {
    display: block;
    font-family: Manrope;
    font-size: 38px;
    color: var(--text)
}

.mini-stats strong:after {
    content: "+";
    color: var(--lime)
}

.mini-stats span {
    font-size: 11px
}

.services {
    width: var(--container);
    margin: auto;
    padding: 110px 0 150px;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 8vw
}

.services-intro {
    position: sticky;
    top: 130px;
    height: max-content
}

.services-intro h2 {
    font-family: Manrope;
    font-size: clamp(2.1rem, 3.8vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -.05em;
    margin: 25px 0
}

.services-intro p {
    color: #919aa4;
    line-height: 1.7;
    max-width: 510px
}

.services-list {
    border-top: 1px solid var(--line)
}

.service-item {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr 1fr 30px;
    gap: 24px;
    align-items: center;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
    transition: .35s
}

.service-item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--lime);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: .38s;
    z-index: -1
}

.service-item:hover:before {
    transform: scaleY(1)
}

.service-item:hover {
    color: #0a0d08;
    padding-left: 20px;
    padding-right: 20px
}

.service-item>span {
    font-size: 11px;
    color: #737c85
}

.service-item h3 {
    font-family: Manrope;
    font-size: clamp(1.6rem, 2.4vw, 2.6rem);
    letter-spacing: -.04em;
    margin: 0
}

.service-item p {
    font-size: 13px;
    color: #9099a2;
    line-height: 1.6
}

.service-item:hover p,
.service-item:hover>span {
    color: #263016
}

.service-item b {
    font-size: 22px
}

.process {
    position: relative;
    background: #ecefe8;
    color: #11140f
}

.process-pin {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: var(--container);
    margin: auto
}

.process-copy h2 {
    font-family: Manrope;
    font-size: clamp(3rem, 5.8vw, 6.8rem);
    line-height: .94;
    letter-spacing: -.065em;
    max-width: 800px;
    margin: 28px 0
}

.process-description {
    max-width: 500px;
    color: #5d6459;
    line-height: 1.7
}

.process-visual {
    position: relative;
    display: grid;
    place-items: center;
    height: 100%
}

.process-ring {
    width: min(32vw, 470px);
    aspect-ratio: 1;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 50%;
    position: absolute
}

.process-ring span,
.process-ring i,
.process-ring b {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(0, 0, 0, .13);
    border-radius: 50%
}

.process-ring i {
    inset: 28%
}

.process-ring b {
    inset: 44%;
    background: var(--lime);
    border: none
}

.process-number {
    position: absolute;
    font-family: Manrope;
    font-size: clamp(9rem, 20vw, 23rem);
    font-weight: 800;
    letter-spacing: -.12em;
    color: #0e110d;
    opacity: .09
}

.process-name {
    position: absolute;
    bottom: 18%;
    font-family: Manrope;
    font-size: clamp(1.8rem, 3vw, 3.6rem);
    font-weight: 700
}

.process-steps {
    height: 500vh
}

.process-steps>div {
    height: 100vh
}

.projects {
    padding: 150px 0;
    background: #0d1014
}

.projects-head {
    width: var(--container);
    margin: auto;
    display: flex;
    align-items: end;
    justify-content: space-between
}

.projects-head h2 {
    font-family: Manrope;
    font-size: clamp(2.8rem, 5.4vw, 6rem);
    line-height: .98;
    letter-spacing: -.06em;
    max-width: 1000px;
    margin: 25px 0 0
}

.projects-track-wrap {
    height: 100vh;
    overflow: hidden;
    margin-top: 80px
}

.projects-track {
    height: 100%;
    display: flex;
    gap: 28px;
    padding: 5vh 6vw;
    width: max-content
}

.project-card {
    width: min(72vw, 820px);
    height: 75vh;
    min-height: 500px;
    border-radius: 28px;
    overflow: hidden;
    background: #1a2027;
    flex: none;
    display: flex;
    flex-direction: column
}

.project-ui {
    flex: 1;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden
}

.project-ui:before {
    content: "";
    position: absolute;
    width: 68%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    filter: blur(1px)
}

.project-ui span {
    position: absolute;
    inset: 7%;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 18px
}

.project-ui b {
    font-family: Manrope;
    font-size: clamp(5rem, 12vw, 12rem);
    z-index: 2;
    letter-spacing: -.09em
}

.project-ui em {
    position: absolute;
    bottom: 12%;
    font-style: normal;
    font-size: 10px;
    letter-spacing: .35em;
    z-index: 2
}

.project-card footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 25px 28px;
    background: #f4f5f2;
    color: #10130f
}

.project-card small {
    font-size: 8px;
    letter-spacing: .18em;
    color: #687066
}

.project-card h3 {
    font-family: Manrope;
    font-size: 25px;
    margin: 7px 0 0
}

.project-card footer>span {
    font-size: 12px
}

.project-one .project-ui {
    background: linear-gradient(135deg, #1d261d, #78964e)
}

.project-two .project-ui {
    background: linear-gradient(135deg, #15296d, #54a0ff)
}

.project-three .project-ui {
    background: linear-gradient(135deg, #4a1327, #f05274)
}

.project-four .project-ui {
    background: linear-gradient(135deg, #202514, #a6d736)
}

.marquee {
    padding: 38px 0;
    overflow: hidden;
    background: var(--lime);
    color: #0a0d08;
    transform: rotate(-1.5deg) scale(1.02)
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 28px;
    align-items: center;
    font-family: Manrope;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 5.5rem);
    letter-spacing: -.05em;
    animation: marquee 24s linear infinite
}

.marquee-track i {
    font-style: normal;
    font-size: .45em
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.contact {
    position: relative;
    min-height: 95vh;
    padding: 150px 6vw 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden
}

.contact-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    right: -20%;
    top: -30%;
    background: radial-gradient(circle, rgba(184, 255, 54, .14), transparent 66%)
}

.contact-title {
    font-family: Manrope;
    font-size: clamp(4rem, 9.8vw, 11rem);
    line-height: .84;
    letter-spacing: -.075em;
    margin: 38px 0;
    position: relative
}

.contact-title span {
    display: block
}

.contact-title span:last-child {
    color: var(--lime)
}

.contact>p {
    max-width: 620px;
    color: #9ba4ad;
    line-height: 1.7;
    font-size: 18px
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 520px);
    margin-top: 55px;
    padding: 24px 28px;
    border-radius: 999px;
    background: #f3f5f0;
    color: #0a0d08;
    font-weight: 800
}

.contact-button b {
    font-size: 24px
}

.contact-footer {
    margin-top: auto;
    padding-top: 100px;
    display: flex;
    justify-content: space-between;
    color: #707981;
    font-size: 11px;
    border-bottom: 1px solid transparent
}

@media(max-width:1000px) {
    .desktop-nav {
        display: none
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 125px
    }

    .hero-stage {
        height: 470px;
        margin-top: 40px
    }

    .statement {
        grid-template-columns: 1fr
    }

    .statement-side {
        max-width: 600px
    }

    .services {
        grid-template-columns: 1fr
    }

    .services-intro {
        position: static
    }

    .process-pin {
        grid-template-columns: 1fr;
        padding-top: 90px
    }

    .process-copy {
        align-self: end
    }

    .process-visual {
        height: 45vh
    }

    .projects-head {
        display: block
    }

    .projects-head>.text-link {
        margin-top: 30px
    }

    .project-card {
        width: 84vw
    }
}

@media(max-width:650px) {
    .site-header {
        height: 72px
    }

    .header-cta {
        padding: 10px 14px
    }

    .hero {
        padding-left: 5vw;
        padding-right: 5vw
    }

    .hero-title {
        font-size: 17vw
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px
    }

    .stage-main {
        width: 100%;
        height: 70%
    }

    .stage-stat {
        left: 2%;
        width: 165px
    }

    .stage-pill {
        right: 0
    }

    .statement,
    .services {
        padding: 90px 0
    }

    .service-item {
        grid-template-columns: 35px 1fr 24px
    }

    .service-item p {
        grid-column: 2/4
    }

    .process-copy h2 {
        font-size: 12vw
    }

    .process-ring {
        width: 78vw
    }

    .project-card {
        width: 88vw;
        height: 68vh;
        min-height: 480px
    }

    .projects-track {
        padding-left: 5vw
    }

    .contact {
        padding-left: 5vw;
        padding-right: 5vw
    }

    .contact-title {
        font-size: 16vw
    }

    .contact-footer {
        gap: 18px;
        flex-direction: column
    }

    .cursor-glow {
        display: none
    }
}

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

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}