    :root {
        --green: #64ff5f;
        --green-soft: #8cff7b;
        --black: #050505;
        --panel: #171717;
        --panel-2: #101010;
        --text: #f7f7f1;
        --muted: #949494;
        --line: rgba(255, 255, 255, 0.1);
        --radius: 8px;
        --max: 1630px;
        --ease: cubic-bezier(0.16, 1, 0.3, 1);
        --motion-fast: 220ms;
        --motion: 420ms;
        --motion-slow: 760ms;
    }

    @property --spin {
        syntax: "<angle>";
        inherits: false;
        initial-value: 0deg;
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        color: var(--text);
        background: var(--black);
        font-family: Inter, Arial, sans-serif;
        overflow-x: hidden;
    }

    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.001ms !important;
            animation-iteration-count: 1 !important;
            scroll-behavior: auto !important;
            transition-duration: 0.001ms !important;
        }
    }

    body.menu-open {
        overflow: hidden;
    }

    img {
        display: block;
        max-width: 100%;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    button,
    input,
    textarea {
        font: inherit;
    }

    .progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 5px;
        background: var(--green);
        z-index: 100;
    }

    .wrap {
        width: min(var(--max), calc(100% - 40px));
        margin: 0 auto;
    }

    .grain {
        position: relative;
        isolation: isolate;
    }

    .grain::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        background:
            radial-gradient(circle at 12% 35%, rgba(100, 255, 95, 0.13), transparent 32%),
            radial-gradient(circle at 82% 18%, rgba(100, 255, 95, 0.1), transparent 28%),
            linear-gradient(90deg, rgba(100, 255, 95, 0.05) 1px, transparent 1px),
            linear-gradient(rgba(100, 255, 95, 0.05) 1px, transparent 1px),
            #050505;
        background-size: auto, auto, 120px 120px, 120px 120px, auto;
    }

    .grain::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.16;
        pointer-events: none;
        background-image:
            linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%),
            linear-gradient(225deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%);
        background-size: 4px 4px;
        mix-blend-mode: screen;
    }

    .glass-premium {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
        border: 1px solid rgba(255, 255, 255, 0.13);
        box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
    }

    .site-header {
        position: fixed;
        top: 28px;
        left: 0;
        width: 100%;
        z-index: 80;
        transition: top var(--motion-fast) var(--ease), opacity var(--motion) var(--ease), transform var(--motion) var(--ease), visibility var(--motion) var(--ease);
    }

    .site-header.scrolled {
        top: 16px;
    }

    .site-header.past-hero {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-18px);
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .brand-pill {
        display: inline-flex;
        align-items: center;
        gap: 18px;
        min-height: 74px;
        padding: 0 28px 0 7px;
        border-radius: 999px;
        color: #fff;
        background: #000;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    }

    .mark {
        width: 62px;
        height: 62px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #000;
        background: var(--green);
        font-weight: 900;
        font-size: 25px;
        line-height: 1;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        border: 0;
        color: #fff;
        background: transparent;
        cursor: pointer;
        font-weight: 800;
        font-size: 26px;
    }

    .hamburger {
        width: 20px;
        display: grid;
        gap: 5px;
    }

    .hamburger span {
        height: 3px;
        background: var(--green);
        border-radius: 99px;
    }

    .talk-pill {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        min-height: 50px;
        padding: 0 8px 0 32px;
        border: 2px solid currentColor;
        border-radius: 999px;
        font-size: 24px;
        font-weight: 500;
        background: rgba(0, 0, 0, 0.12);
    }

    .arrow-dot {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: var(--green);
        background: #000;
        font-size: 26px;
        line-height: 1;
    }

    .drawer {
        position: fixed;
        inset: 0;
        z-index: 70;
        display: grid;
        place-items: center;
        padding: 100px 30px 40px;
        background: rgba(0, 0, 0, 0.95);
        transform: translateY(-100%);
        transition: transform var(--motion) var(--ease);
    }

    .drawer.open {
        transform: translateY(0);
    }

    .drawer nav {
        display: grid;
        gap: 14px;
        text-align: center;
    }

    .drawer a {
        font-size: clamp(36px, 8vw, 86px);
        font-weight: 900;
        letter-spacing: 0;
    }

    .drawer-close {
        position: absolute;
        top: 100px;
        right: 28px;
        width: 54px;
        height: 54px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero {
        min-height: 100vh;
        padding: 154px 0 70px;
        color: #000;
        background:
            radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.32), transparent 20%),
            radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.2), transparent 24%),
            var(--green);
        position: relative;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .hero-kicker {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 22px;
        font-size: clamp(21px, 2.4vw, 33px);
        line-height: 1.35;
        max-width: 620px;
        margin: -18px 0 0 auto;
    }

    .brace {
        font-family: "Instrument Serif", serif;
        font-size: 86px;
        line-height: 0.4;
    }

    .hero-title {
        margin: 0;
        max-width: 1500px;
        font-size: clamp(72px, 13vw, 238px);
        line-height: 0.82;
        letter-spacing: 0;
        font-weight: 900;
        will-change: transform, opacity;
    }

    .agency-line {
        display: flex;
        align-items: center;
        gap: clamp(22px, 4vw, 70px);
    }

    .agency-line .serif {
        flex: 0 0 auto;
    }

    .agency-note {
        max-width: 590px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: Inter, Arial, sans-serif;
        font-size: clamp(15px, 1.35vw, 23px);
        line-height: 1.35;
        font-weight: 600;
        letter-spacing: 0;
    }

    .agency-note .brace {
        font-size: clamp(42px, 5vw, 76px);
    }

    .serif {
        font-family: "Instrument Serif", Georgia, serif;
        font-style: italic;
        font-weight: 400;
    }

    .hero-row {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 30px;
        margin-top: 20px;
    }

    .hero-copy {
        max-width: 620px;
        font-size: clamp(18px, 1.6vw, 25px);
        line-height: 1.45;
        font-weight: 600;
    }

    .hero-badge {
        width: 170px;
        height: 170px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: linear-gradient(135deg, #20f252, #a7ff7a);
        font-size: 64px;
        flex: 0 0 auto;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
        position: relative;
        overflow: hidden;
        color: #000;
        isolation: isolate;
    }

    .hero-badge::before {
        content: "";
        position: absolute;
        inset: 9px;
        border: 1px solid rgba(0, 0, 0, 0.16);
        border-radius: 50%;
    }

    .hero-badge .badge-arrow {
        position: relative;
        z-index: 2;
    }

    .spin-text {
        position: absolute;
        inset: 6px;
        z-index: 1;
        animation: badge-spin 12s linear infinite;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: 5px;
        text-transform: uppercase;
        fill: #000;
    }

    @keyframes badge-spin {
        to {
            transform: rotate(360deg);
        }
    }

    .float-shape {
        position: absolute;
        opacity: 0.38;
        pointer-events: none;
        will-change: transform;
    }

    .shape-one {
        left: 22%;
        top: 20%;
        width: 120px;
        height: 28px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.42);
        transform: rotate(48deg);
        filter: blur(1px);
    }

    .shape-two {
        right: 17%;
        bottom: 13%;
        width: 148px;
        height: 24px;
        border: 6px solid rgba(255, 255, 255, 0.5);
        border-left: 0;
        border-bottom: 0;
        transform: rotate(30deg);
    }

    .side-social {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 60;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        color: #000;
        font-size: 15px;
        font-weight: 700;
    }

    .floating-actions {
        position: fixed;
        left: 14px;
        bottom: 22px;
        z-index: 60;
        display: grid;
        gap: 12px;
    }

    .float-btn {
        width: 62px;
        height: 62px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #000;
        background: var(--green);
        border: 0;
        font-size: 25px;
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
    }

    section {
        position: relative;
    }

    .dark-section {
        padding: 120px 0;
        overflow: hidden;
    }

    #services {
        overflow: visible;
    }

    .scroll-intro {
        min-height: 72svh;
        display: grid;
        align-items: center;
        overflow: hidden;
        background:
            radial-gradient(circle at 82% 24%, rgba(100, 255, 95, 0.2), transparent 25%),
            linear-gradient(180deg, #050505 0%, #101010 100%);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .scroll-intro .wrap {
        display: grid;
        gap: 34px;
    }

    .scroll-intro-kicker {
        width: max-content;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        padding: 0 18px;
        color: #000;
        background: var(--green);
        border-radius: 999px;
        font-size: 14px;
        font-weight: 900;
        text-transform: uppercase;
        opacity: var(--scroll-intro-opacity, 0);
        transform: translate3d(0, calc(28px * (1 - var(--scroll-intro-opacity, 0))), 0);
    }

    .scroll-intro-text {
        max-width: 1200px;
        margin: 0;
        font-size: clamp(44px, 7.2vw, 126px);
        line-height: 0.98;
        font-weight: 900;
        letter-spacing: 0;
    }

    .scroll-intro-text span {
        display: block;
        opacity: calc(0.16 + (var(--line-progress, 0) * 0.84));
        transform: translate3d(calc((1 - var(--line-progress, 0)) * -42px), calc((1 - var(--line-progress, 0)) * 22px), 0);
        transition: opacity var(--motion-fast) linear, transform var(--motion-fast) linear;
    }

    .scroll-intro-text .serif {
        display: inline;
        color: var(--green);
        font-family: "Instrument Serif", Georgia, serif;
        font-style: italic;
        font-weight: 400;
    }

    .intro-grid {
        display: grid;
        grid-template-columns: 0.82fr 1.18fr;
        gap: 70px;
        align-items: center;
    }

    .image-tile {
        width: min(100%, 430px);
        aspect-ratio: 9 / 16;
        min-height: 0;
        border-radius: var(--radius);
        overflow: hidden;
        background: #1d1d1d;
        position: relative;
        justify-self: center;
    }

    .image-tile::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.34)),
            linear-gradient(135deg, rgba(100, 255, 95, 0.16), rgba(255, 255, 255, 0.02));
        mix-blend-mode: normal;
    }

    .image-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.72) contrast(1.05);
    }

    .metric-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 34px;
        align-items: center;
        margin-bottom: 120px;
    }

    .metric strong {
        display: block;
        color: var(--green);
        font-size: clamp(58px, 6vw, 110px);
        line-height: 0.9;
        font-weight: 900;
    }

    .metric span {
        display: block;
        margin-top: 22px;
        color: #fff;
        font-family: "Instrument Serif", Georgia, serif;
        font-style: italic;
        font-size: 34px;
        line-height: 1.2;
    }

    .section-title {
        margin: 0;
        font-size: clamp(50px, 6.4vw, 112px);
        line-height: 0.95;
        font-weight: 900;
        letter-spacing: 0;
    }

    .lead {
        color: var(--muted);
        font-size: clamp(19px, 1.7vw, 27px);
        line-height: 1.45;
        max-width: 860px;
        font-weight: 600;
    }

    .pill-link {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        width: max-content;
        min-height: 48px;
        padding: 0 6px 0 30px;
        color: #000;
        background: var(--green);
        border-radius: 999px;
        font-size: 24px;
        font-weight: 500;
        transition: transform var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
    }

    .pill-link:hover {
        transform: translateY(-3px);
        background: #fff;
    }

    .services-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr) 170px;
        gap: 42px;
        align-items: start;
        margin-bottom: 70px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 150px;
        isolation: isolate;
    }

    .service-card,
    .blog-card,
    .testimonial-card,
    .process-card {
        background: linear-gradient(145deg, rgba(27, 27, 27, 0.78), rgba(11, 11, 11, 0.72));
        border-radius: var(--radius);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .service-card {
        min-height: 390px;
        padding: 52px;
        position: relative;
        overflow: hidden;
        transform: translate3d(var(--service-stack-x, 0px), var(--service-stack-shift, 0px), 0) rotate(var(--service-stack-rotate, 0deg)) scale(var(--service-stack-scale, 1));
        transition: transform var(--motion-fast) linear, box-shadow var(--motion) var(--ease);
        will-change: transform;
    }

    .service-card.reveal {
        opacity: 0;
        transform: translate3d(var(--service-stack-x, 0px), calc(var(--service-stack-shift, 0px) + 36px), 0) rotate(var(--service-stack-rotate, 0deg)) scale(var(--service-stack-scale, 1));
    }

    .service-card.reveal.visible {
        opacity: 1;
        transform: translate3d(var(--service-stack-x, 0px), var(--service-stack-shift, 0px), 0) rotate(var(--service-stack-rotate, 0deg)) scale(var(--service-stack-scale, 1));
    }

    .service-card {
        position: sticky;
        top: 118px;
        width: min(100%, 1080px);
        z-index: var(--service-depth, 1);
    }

    .service-card:nth-child(odd) {
        margin-left: auto;
    }

    .service-card:nth-child(even) {
        margin-right: auto;
    }

    .service-card+.service-card {
        margin-top: -118px;
    }

    .chip {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 18px;
        border-radius: 999px;
        color: #000;
        background: var(--green);
        font-weight: 800;
        font-size: 15px;
        text-transform: uppercase;
    }

    .service-card h3 {
        margin: 34px 0 28px;
        max-width: 680px;
        font-size: clamp(30px, 2.7vw, 45px);
        line-height: 1.12;
    }

    .checks {
        display: grid;
        gap: 17px;
        margin: 0 0 40px;
        padding: 0;
        list-style: none;
        color: var(--muted);
        font-size: 19px;
        font-weight: 700;
    }

    .checks li {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .checks li::before {
        content: "\2713";
        color: var(--green);
        font-size: 30px;
        line-height: 1;
    }

    .service-icon {
        position: absolute;
        right: 42px;
        bottom: 36px;
        color: var(--green);
        font-size: 78px;
        opacity: 0.95;
    }

    .work-section {
        background:
            radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.25), transparent 20%),
            radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1), transparent 26%),
            var(--green);
        color: #000;
        padding: 120px 0;
        overflow: hidden;
        position: relative;
        isolation: isolate;
    }

    .work-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(270px, 0.55fr);
        gap: 50px;
        align-items: end;
        margin-bottom: 58px;
    }

    .work-head .lead {
        color: rgba(0, 0, 0, 0.68);
    }

    .work-carousel {
        position: relative;
        padding: clamp(22px, 3vw, 42px);
        border-radius: var(--radius);
        background:
            linear-gradient(90deg, rgba(100, 255, 95, 0.08) 1px, transparent 1px),
            linear-gradient(rgba(100, 255, 95, 0.08) 1px, transparent 1px),
            #060606;
        background-size: 80px 80px;
        box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
        overflow: hidden;
    }

    .work-carousel::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background:
            radial-gradient(circle at 12% 20%, rgba(100, 255, 95, 0.22), transparent 24%),
            radial-gradient(circle at 90% 40%, rgba(100, 255, 95, 0.14), transparent 28%);
        pointer-events: none;
    }

    .work-carousel::after {
        content: "WORK";
        position: absolute;
        left: 50%;
        top: 44%;
        z-index: 0;
        color: rgba(255, 255, 255, 0.07);
        font-size: clamp(120px, 18vw, 310px);
        line-height: 0.8;
        font-weight: 900;
        letter-spacing: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        white-space: nowrap;
    }

    .work-viewport {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .work-strip {
        display: flex;
        gap: 28px;
        padding: 0;
        transition: transform var(--motion-slow) var(--ease);
        will-change: transform;
    }

    .work-card {
        min-height: clamp(500px, 66vh, 680px);
        flex: 0 0 min(780px, 72vw);
        border-radius: var(--radius);
        overflow: hidden;
        background: #111;
        position: relative;
        color: #fff;
        transition: transform var(--motion) var(--ease), box-shadow var(--motion) var(--ease), opacity var(--motion) var(--ease), filter var(--motion) var(--ease);
        opacity: 0.55;
        filter: saturate(0.75);
    }

    .work-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.65;
        filter: grayscale(0.2);
        transition: transform var(--motion-slow) var(--ease), opacity var(--motion) var(--ease);
    }

    .work-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
    }

    .work-card-content {
        position: absolute;
        inset: auto 42px 42px;
        z-index: 1;
        display: grid;
        gap: 22px;
        opacity: 0;
        transform: translateY(36px);
        transition: opacity var(--motion) var(--ease), transform var(--motion) var(--ease);
    }

    .work-card.active {
        opacity: 1;
        filter: saturate(1);
        box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
    }

    .work-card:hover {
        transform: translateY(-18px);
        box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
    }

    .work-card:hover img {
        transform: scale(1.06);
        opacity: 0.78;
    }

    .work-card:hover .work-card-content,
    .work-card:focus-within .work-card-content {
        opacity: 1;
        transform: translateY(-24px);
    }

    .round-arrow {
        width: 150px;
        height: 150px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #000;
        background: linear-gradient(135deg, #28ef4d, #b0ff7a);
        font-size: 72px;
        margin-inline: auto;
    }

    .work-card h3 {
        margin: 0;
        text-align: center;
        font-size: clamp(28px, 3vw, 45px);
        line-height: 1.15;
    }

    .work-card-kicker {
        justify-self: center;
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 16px;
        border-radius: 999px;
        color: #000;
        background: var(--green);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .work-controls {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        margin-top: 30px;
    }

    .work-arrows {
        display: flex;
        gap: 12px;
    }

    .work-control {
        width: 58px;
        height: 58px;
        display: grid;
        place-items: center;
        border: 2px solid rgba(255, 255, 255, 0.22);
        border-radius: 50%;
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
        cursor: pointer;
        font-size: 28px;
        transition: background var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease);
    }

    .work-control:hover {
        color: #000;
        background: var(--green);
        transform: translateY(-2px);
    }

    .work-dots {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .work-dot {
        width: 9px;
        height: 9px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.34);
        cursor: pointer;
        transition: width var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
    }

    .work-dot.active {
        width: 38px;
        background: var(--green);
    }

    .work-progress {
        position: absolute;
        top: 22px;
        right: 22px;
        z-index: 3;
        width: 78px;
        height: 78px;
        display: grid;
        place-items: center;
        color: #fff;
        background: rgba(0, 0, 0, 0.52);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 50%;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .work-progress svg {
        position: absolute;
        inset: 0;
        transform: rotate(-90deg);
    }

    .work-progress circle {
        fill: none;
        stroke-width: 6;
    }

    .work-progress .track {
        stroke: rgba(255, 255, 255, 0.18);
    }

    .work-progress .fill {
        stroke: var(--green);
        stroke-linecap: round;
        stroke-dasharray: 188.5;
        stroke-dashoffset: calc(188.5 - (188.5 * var(--work-progress, 0)));
        transition: stroke-dashoffset var(--motion-fast) linear;
    }

    .work-progress span {
        position: relative;
        font-size: 13px;
        font-weight: 900;
    }

    .marquee {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        overflow: hidden;
        padding: 34px 0;
        background: #000;
        color: #fff;
    }

    .marquee-track {
        display: flex;
        gap: 50px;
        min-width: max-content;
        animation: scroll 24s linear infinite;
        font-size: clamp(48px, 6vw, 100px);
        font-weight: 900;
        align-items: center;
    }

    .marquee-track .serif {
        color: var(--green);
    }

    @keyframes scroll {
        to {
            transform: translateX(-50%);
        }
    }

    .process {
        padding: 120px 0;
    }

    .process-head {
        text-align: center;
        margin-bottom: 80px;
    }

    .process-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px 160px;
        align-items: start;
        position: relative;
    }

    .process-path {
        position: absolute;
        inset: 20px 43% 30px 43%;
        pointer-events: none;
        z-index: 0;
    }

    .process-path svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .process-path-line {
        fill: none;
        stroke: rgba(255, 255, 255, 0.18);
        stroke-width: 3;
        stroke-dasharray: 1400;
        stroke-dashoffset: var(--path-offset, 1400);
        transition: stroke-dashoffset 0.08s linear;
    }

    .path-step {
        position: absolute;
        left: 50%;
        width: 74px;
        height: 74px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff;
        background: #111;
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 23px;
        font-weight: 800;
        transform: translateX(-50%);
        transition: background var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease);
    }

    .path-step.active {
        color: #000;
        background: var(--green);
        transform: translateX(-50%) scale(1.08);
    }

    .path-step:nth-of-type(1) {
        top: 2%;
    }

    .path-step:nth-of-type(2) {
        top: 32%;
    }

    .path-step:nth-of-type(3) {
        top: 62%;
    }

    .path-step:nth-of-type(4) {
        top: 92%;
    }

    .process-card {
        min-height: 210px;
        padding: 46px;
        position: relative;
        display: grid;
        grid-template-columns: 92px 1fr;
        gap: 30px;
        z-index: 1;
    }

    .process-card:nth-child(even) {
        margin-top: 90px;
    }

    .process-icon {
        color: var(--green);
        font-size: 58px;
    }

    .process-card h3 {
        margin: 0 0 16px;
        font-size: 31px;
        line-height: 1.18;
    }

    .process-card p {
        margin: 0;
        color: var(--green);
        font-size: 22px;
        line-height: 1.45;
        font-weight: 600;
    }

    .ghost-number {
        position: absolute;
        left: 34px;
        bottom: -8px;
        color: rgba(255, 255, 255, 0.04);
        font-size: 82px;
        line-height: 1;
        font-weight: 900;
    }

    .split-section {
        padding: 130px 0;
    }

    .blog-layout {
        display: grid;
        grid-template-columns: minmax(310px, 0.65fr) minmax(0, 1.35fr);
        gap: 80px;
        align-items: start;
    }

    .sticky-copy {
        position: sticky;
        top: 130px;
        display: grid;
        gap: 34px;
    }

    .blog-list {
        display: grid;
        gap: 0;
        padding-bottom: 170px;
    }

    .blog-card {
        display: grid;
        grid-template-columns: 1fr 430px;
        gap: 42px;
        padding: 40px;
        align-items: center;
        position: sticky;
        top: 120px;
        transform: translateY(var(--stack-shift, 0px)) scale(var(--stack-scale, 1));
        transition: transform var(--motion-fast) linear, opacity var(--motion-fast) linear;
    }

    .blog-card+.blog-card {
        margin-top: 42px;
    }

    .blog-card h3 {
        margin: 0 0 24px;
        font-size: clamp(28px, 2.8vw, 44px);
        line-height: 1.12;
    }

    .blog-card p {
        color: var(--muted);
        font-size: 19px;
        line-height: 1.55;
        margin: 0 0 54px;
        font-weight: 600;
    }

    .meta {
        color: var(--green);
        font-weight: 800;
        text-transform: uppercase;
    }

    .blog-card img {
        width: 100%;
        height: 290px;
        object-fit: cover;
        border-radius: var(--radius);
    }

    .proof {
        background: var(--green);
        color: #000;
        padding: 42px 0;
    }

    .proof-grid {
        display: grid;
        grid-template-columns: 0.34fr 0.66fr;
        gap: 60px;
        align-items: center;
    }

    .rating strong {
        display: block;
        margin-top: 22px;
        font-size: clamp(50px, 5vw, 78px);
        line-height: 1;
        font-weight: 800;
    }

    .rating p {
        margin: 0;
        font-size: 34px;
        font-weight: 700;
    }

    .logos {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        align-items: center;
        border-left: 1px solid #000;
        padding-left: 60px;
    }

    .logo-word {
        min-height: 84px;
        display: grid;
        place-items: center;
        font-size: 26px;
        font-weight: 900;
        text-align: center;
    }

    .testimonial-wrap {
        display: grid;
        grid-template-columns: 330px minmax(0, 1fr);
        gap: 26px;
        align-items: stretch;
    }

    .rating-card {
        border-radius: var(--radius);
        background: linear-gradient(145deg, rgba(100, 255, 95, 0.96), rgba(100, 255, 95, 0.72));
        color: #050505;
        padding: 34px;
        display: grid;
        align-content: space-between;
        gap: 28px;
        text-align: left;
        min-height: 430px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    }

    .rating-card strong {
        font-size: clamp(64px, 6vw, 88px);
        line-height: 0.95;
        font-weight: 900;
    }

    .rating-card p {
        max-width: 260px;
        margin: 0;
        font-size: 22px;
        line-height: 1.3;
        font-weight: 800;
    }

    .rating-card .talk-pill {
        width: max-content;
        min-height: 44px;
        padding-left: 20px;
        font-size: 18px;
    }

    .testimonial-card {
        padding: 46px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 250px;
        gap: 42px;
        align-items: center;
    }

    .review-stage {
        overflow: hidden;
        min-width: 0;
    }

    .review-track {
        display: flex;
        gap: 28px;
        transition: transform var(--motion-fast) linear;
        will-change: transform;
    }

    .review-track .testimonial-card {
        flex: 0 0 min(820px, 82vw);
    }

    .stars {
        color: #ffc22b;
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 22px;
    }

    .quote {
        margin: 0;
        font-size: clamp(24px, 2.4vw, 36px);
        line-height: 1.28;
    }

    .client {
        display: grid;
        gap: 12px;
        border-left: 1px solid var(--line);
        padding-left: 34px;
    }

    .client img {
        width: 58px;
        height: 58px;
        object-fit: cover;
        border-radius: 50%;
    }

    .client strong {
        font-size: 22px;
    }

    .client span {
        color: var(--muted);
        font-size: 15px;
        font-weight: 700;
    }

    .faq-layout {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        gap: 70px;
        align-items: center;
    }

    .faq-image {
        min-height: 680px;
        border-radius: var(--radius);
        overflow: hidden;
        background: #101010;
        position: relative;
    }

    .faq-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: normal;
        opacity: 0.84;
        filter: grayscale(0.1) saturate(0.75) contrast(1.08);
    }

    .faq-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.42)),
            radial-gradient(circle at 12% 0%, rgba(100, 255, 95, 0.18), transparent 36%);
        pointer-events: none;
    }

    .faq-list {
        margin-top: 58px;
        display: grid;
        gap: 22px;
    }

    .faq-item {
        border-radius: var(--radius);
        background: var(--panel);
        overflow: hidden;
    }

    .faq-question {
        width: 100%;
        min-height: 88px;
        padding: 0 28px 0 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        color: #fff;
        background: transparent;
        border: 0;
        cursor: pointer;
        text-align: left;
        font-size: 25px;
        font-weight: 800;
    }

    .faq-item.active {
        background: var(--green);
        color: #000;
    }

    .faq-item.active .faq-question {
        color: #000;
    }

    .faq-toggle {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border-radius: 50%;
        background: var(--green);
        color: #000;
        font-size: 24px;
        transition: transform var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
    }

    .faq-item.active .faq-toggle {
        background: #000;
        color: #fff;
        transform: rotate(180deg);
    }

    .faq-answer {
        display: none;
        padding: 0 42px 36px;
        color: rgba(0, 0, 0, 0.64);
        font-size: 22px;
        line-height: 1.45;
        font-weight: 700;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .cta {
        padding: 120px 0;
        background: var(--green);
        color: #000;
        overflow: hidden;
    }

    .contact-section {
        padding: 120px 0;
        overflow: hidden;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 0.75fr 1fr;
        gap: 70px;
        align-items: start;
    }

    .contact-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        padding: 36px;
        border-radius: var(--radius);
    }

    .field {
        display: grid;
        gap: 10px;
    }

    .field.full {
        grid-column: 1 / -1;
    }

    .field label {
        color: rgba(255, 255, 255, 0.72);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .field input,
    .field textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
        outline: 0;
        padding: 17px 18px;
        resize: vertical;
        transition: border-color var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
    }

    .field input:focus,
    .field textarea:focus {
        border-color: var(--green);
        background: rgba(100, 255, 95, 0.08);
    }

    .contact-form button {
        justify-self: start;
        border: 0;
        cursor: pointer;
    }

    .cta-grid {
        display: grid;
        grid-template-columns: 1fr 0.45fr;
        gap: 70px;
        align-items: center;
    }

    .cta h2 {
        margin: 0;
        font-size: clamp(62px, 8vw, 138px);
        line-height: 0.94;
        font-weight: 800;
        letter-spacing: 0;
    }

    .cta-illustration {
        justify-self: end;
        width: min(420px, 100%);
        aspect-ratio: 1 / 1;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background:
            radial-gradient(circle at 50% 44%, var(--green) 0 35%, transparent 36%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.09) 1px, transparent 1px),
            linear-gradient(rgba(0, 0, 0, 0.09) 1px, transparent 1px);
        background-size: auto, 42px 42px, 42px 42px;
    }

    .laptop-person {
        width: 78%;
        height: 78%;
        display: grid;
        place-items: center;
        color: #000;
        font-size: 150px;
    }

    .footer {
        padding: 54px 0;
        background: #000;
        border-top: 1px solid var(--line);
    }

    .footer-grid {
        display: flex;
        justify-content: space-between;
        gap: 28px;
        align-items: center;
        color: var(--muted);
        font-weight: 700;
    }

    .footer-links {
        display: flex;
        gap: 26px;
        flex-wrap: wrap;
    }

    .reveal {
        opacity: 0;
        transform: translateY(36px);
        transition: opacity var(--motion-slow) var(--ease), transform var(--motion-slow) var(--ease);
        will-change: opacity, transform;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 1180px) {

        .intro-grid,
        .blog-layout,
        .faq-layout,
        .testimonial-wrap,
        .cta-grid,
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .services-head {
            grid-template-columns: 1fr;
        }

        .services-grid,
        .process-list {
            grid-template-columns: 1fr;
        }

        .services-grid {
            gap: 0;
            padding-bottom: 120px;
        }

        .service-card {
            position: sticky;
            top: 92px;
        }

        .service-card+.service-card {
            margin-top: 22px;
        }

        .process-card:nth-child(even) {
            margin-top: 0;
        }

        .process-path {
            display: none;
        }

        .blog-card,
        .testimonial-card {
            grid-template-columns: 1fr;
        }

        .client {
            border-left: 0;
            border-top: 1px solid var(--line);
            padding: 34px 0 0;
        }

        .proof-grid {
            grid-template-columns: 1fr;
        }

        .logos {
            border-left: 0;
            padding-left: 0;
        }
    }

    @media (max-width: 760px) {
        .wrap {
            width: min(100% - 24px, var(--max));
        }

        .site-header {
            top: 12px;
        }

        .brand-pill {
            min-height: 58px;
            padding-right: 18px;
            gap: 12px;
        }

        .mark {
            width: 48px;
            height: 48px;
            font-size: 19px;
        }

        .menu-button {
            font-size: 0;
        }

        .talk-pill {
            min-height: 44px;
            padding-left: 18px;
            font-size: 0;
        }

        .arrow-dot {
            width: 32px;
            height: 32px;
            font-size: 20px;
        }

        .hero {
            min-height: auto;
            padding: 118px 0 56px;
        }

        .hero-title {
            font-size: clamp(54px, 18vw, 96px);
            line-height: 0.88;
        }

        .hero-kicker {
            justify-content: flex-start;
            margin-right: 0;
            max-width: none;
        }

        .brace {
            font-size: 54px;
        }

        .hero-row {
            display: grid;
        }

        .agency-line {
            display: block;
        }

        .agency-note {
            margin-top: 18px;
            max-width: 100%;
            font-size: 15px;
        }

        .hero-badge {
            width: 118px;
            height: 118px;
            font-size: 46px;
        }

        .side-social {
            display: none;
        }

        .floating-actions {
            display: none;
        }

        .dark-section,
        .process,
        .split-section,
        .cta {
            padding: 74px 0;
        }

        .scroll-intro {
            min-height: 58svh;
        }

        .scroll-intro .wrap {
            gap: 22px;
        }

        .scroll-intro-text {
            font-size: clamp(42px, 13vw, 72px);
        }

        .work-section,
        .contact-section {
            padding: 74px 0;
        }

        .section-title {
            font-size: clamp(40px, 13vw, 64px);
            line-height: 1;
        }

        .lead {
            font-size: 17px;
        }

        .metric-row,
        .logos {
            grid-template-columns: 1fr;
        }

        .metric-row {
            margin-bottom: 70px;
        }

        .image-tile,
        .faq-image {
            min-height: 390px;
        }

        .image-tile {
            width: min(100%, 260px);
            min-height: 0;
        }

        .service-card,
        .process-card,
        .blog-card,
        .testimonial-card,
        .rating-card {
            padding: 28px;
        }

        .services-head,
        .work-head {
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 34px;
        }

        .service-card h3,
        .process-card h3,
        .blog-card h3 {
            font-size: 28px;
        }

        .process-card {
            grid-template-columns: 1fr;
        }

        .service-icon {
            position: static;
            margin-top: 24px;
        }

        .work-strip {
            gap: 18px;
        }

        .work-section {
            min-height: 180svh;
        }

        .work-carousel {
            position: sticky;
            top: 86px;
        }

        .work-card {
            min-height: 390px;
            flex-basis: min(82vw, 360px);
        }

        .work-card.active .work-card-content {
            opacity: 1;
            transform: translateY(0);
        }

        .work-card:hover .work-card-content,
        .work-card:focus-within .work-card-content {
            transform: translateY(-12px);
        }

        .work-carousel {
            padding: 18px;
        }

        .work-progress {
            width: 62px;
            height: 62px;
            top: 14px;
            right: 14px;
        }

        .work-progress circle {
            stroke-width: 7;
        }

        .work-progress span {
            font-size: 11px;
        }

        .work-controls {
            align-items: flex-start;
            gap: 16px;
        }

        .work-control {
            width: 48px;
            height: 48px;
            font-size: 23px;
        }

        .round-arrow {
            width: 104px;
            height: 104px;
            font-size: 48px;
        }

        .blog-card img {
            height: 220px;
        }

        .blog-card {
            position: sticky;
            top: 92px;
        }

        .blog-list {
            gap: 0;
            padding-bottom: 120px;
        }

        .blog-card+.blog-card {
            margin-top: 22px;
        }

        .contact-form {
            grid-template-columns: 1fr;
            padding: 24px;
        }

        .rating-card strong {
            font-size: 68px;
        }

        .rating-card {
            min-height: auto;
        }

        .rating-card p {
            font-size: 19px;
        }

        .faq-question {
            min-height: 72px;
            padding: 0 16px 0 20px;
            font-size: 19px;
        }

        .faq-answer {
            padding: 0 20px 26px;
            font-size: 17px;
        }

        .footer-grid {
            display: grid;
        }
    }

    @media (max-width: 520px) {
        .wrap {
            width: min(100% - 20px, var(--max));
        }

        .brand-pill {
            min-height: 52px;
            padding-right: 14px;
        }

        .mark {
            width: 42px;
            height: 42px;
            font-size: 17px;
        }

        .hero-title {
            font-size: clamp(45px, 15.5vw, 64px);
            line-height: 0.92;
        }

        .hero {
            min-height: 100svh;
            padding: 112px 0 34px;
        }

        .hero-grid {
            min-height: calc(100svh - 146px);
            align-content: start;
            gap: 24px;
        }

        .agency-line {
            margin-top: 4px;
        }

        .agency-note {
            margin-top: 14px;
            display: grid;
            grid-template-columns: 20px minmax(0, 1fr) 20px;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            line-height: 1.35;
            max-width: 320px;
        }

        .agency-note .brace {
            font-size: 42px;
            line-height: 1;
        }

        .hero-row {
            gap: 24px;
        }

        .hero-copy {
            font-size: 16px;
            line-height: 1.45;
            max-width: 330px;
        }

        .hero-badge {
            width: 96px;
            height: 96px;
            font-size: 38px;
            align-self: end;
        }

        .spin-text {
            letter-spacing: 4px;
            font-size: 8px;
        }

        .shape-one {
            left: 72%;
            top: 84%;
            width: 96px;
            opacity: 0.25;
        }

        .shape-two {
            display: none;
        }

        .metric strong {
            font-size: 58px;
        }

        .metric span {
            font-size: 26px;
        }

        .service-card,
        .process-card,
        .blog-card,
        .testimonial-card,
        .rating-card,
        .contact-form {
            padding: 22px;
        }

        .services-grid {
            padding-bottom: 100px;
        }

        .service-card {
            top: 82px;
        }

        .service-card .checks {
            font-size: 15px;
            gap: 12px;
        }

        .blog-card {
            top: 82px;
        }

        .blog-card p {
            margin-bottom: 28px;
            font-size: 16px;
        }

        .blog-card img {
            height: 190px;
        }

        .work-carousel::after {
            top: 38%;
            font-size: 118px;
        }

        .work-card {
            min-height: 340px;
            flex-basis: calc(100vw - 76px);
        }

        .work-card-content {
            inset: auto 18px 22px;
            gap: 14px;
        }

        .work-card h3 {
            font-size: 25px;
        }

        .round-arrow {
            width: 82px;
            height: 82px;
            font-size: 38px;
        }

        .work-controls {
            flex-direction: column;
        }

        .quote {
            font-size: 22px;
        }

        .faq-question {
            font-size: 17px;
        }

        .cta h2 {
            font-size: clamp(44px, 13vw, 62px);
        }
    }