
        :root {
            --ink: #080B0F;
            --ink2: #111418;
            --paper: #F6F3EE;
            --cream: #EDE9E0;
            --acid: #C8FF57;
            --acid-dim: rgba(200, 255, 87, .12);
            --teal: #0D5C52;
            --teal-lt: #c7ff57;
            --mist: #8B8680;
            --border: rgba(255, 255, 255, .07);
            --border-lt: #D8D3C8;
            --FS: 'Syne', sans-serif;
            --FD: 'DM Serif Display', serif;
            --FM: 'JetBrains Mono', monospace;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            background: var(--ink);
            color: var(--paper);
            font-family: var(--FS);
            overflow-x: hidden;
            cursor: none;
            direction: ltr;
            text-align: left;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block
        }

        a {
            cursor: none;
            text-decoration: none;
            color: inherit
        }

        /* ── CURSOR ── */
        .cur-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--acid);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width .2s, height .2s;
            mix-blend-mode: difference;
        }

        .cur-ring {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(200, 255, 87, .4);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: all .15s ease;
        }

        @media(pointer:coarse) {

            .cur-dot,
            .cur-ring {
                display: none
            }

            body,
            a {
                cursor: auto
            }
        }

        /* ── NOISE TEXTURE ── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9997;
            opacity: .5;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 52px;
            transition: padding .4s, background .4s;
        }

        nav.scrolled {
            background: rgba(8, 11, 15, .9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 14px 52px;
        }

        .nav-logo {
            font-family: var(--FS);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .02em;
            color: var(--paper);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-logo-name {
            display: flex;
            flex-direction: column;
            gap: 1px;
            line-height: 1;
        }

        .nav-logo-first {
            font-size: 15px;
            font-weight: 700;
            color: var(--paper);
            letter-spacing: .02em;
        }

        .nav-logo-last {
            font-size: 15px;
            font-weight: 800;
            color: var(--acid);
            letter-spacing: .02em;
        }

        .nav-logo-tag {
            font-family: var(--FM);
            font-size: 8px;
            font-weight: 500;
            color: rgba(246, 243, 238, .3);
            letter-spacing: .15em;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .nav-logo-dot {
            width: 6px;
            height: 6px;
            background: var(--acid);
            border-radius: 50%;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .4;
                transform: scale(1.5)
            }
        }

        .nav-links {
            display: flex;
            gap: 16px;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(246, 243, 238, .45);
            transition: color .3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--acid);
            transition: width .3s;
        }

        .nav-links a:hover {
            color: var(--paper)
        }

        .nav-links a:hover::after {
            width: 100%
        }

        .nav-cta {
            font-family: var(--FM);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--ink);
            background: var(--acid);
            padding: 10px 22px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all .3s;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
        }

        .nav-cta:hover {
            background: white;
            transform: translateY(-1px)
        }

        .hbg {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 600;
        }

        .hbg span {
            display: block;
            width: 22px;
            height: 1.5px;
            background: var(--paper);
            transition: all .3s;
        }

        .hbg.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px)
        }

        .hbg.open span:nth-child(2) {
            opacity: 0
        }

        .hbg.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px)
        }

        /* ── HERO ── */
        #hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }

        .hero-left {
            padding: 180px 52px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
            border-right: 1px solid var(--border);
        }

        .hero-right {
            position: relative;
            overflow: hidden;
        }

        .hero-img-wrap {
            position: absolute;
            inset: 0;
        }

        .hero-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            filter: grayscale(30%) contrast(1.05);
        }

        .hero-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, var(--ink) 0%, transparent 30%, transparent 70%, var(--ink) 100%),
                linear-gradient(0deg, var(--ink) 0%, transparent 20%);
        }

        /* Floating data badge */
        .hero-badge {
            position: absolute;
            bottom: 100px;
            left: 28px;
            background: rgba(8, 11, 15, .82);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(200, 255, 87, .18);
            border-left: 3px solid var(--acid);
            padding: 22px 28px;
            z-index: 3;
            min-width: 160px;
        }

        .hb-num {
            font-family: var(--FM);
            font-size: 48px;
            font-weight: 700;
            color: var(--acid);
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -.02em;
        }

        .hb-lbl {
            font-size: 11px;
            color: rgba(246, 243, 238, .55);
            text-transform: uppercase;
            letter-spacing: .14em;
            line-height: 1.5;
        }

        /* Specialty chips replacing vertical text */
        .hero-chips {
            position: absolute;
            bottom: 28px;
            left: 0;
            right: 0;
            display: flex;
            gap: 8px;
            padding: 0 28px;
            justify-content: flex-end;
            z-index: 3;
            flex-wrap: wrap;
        }

        .hero-chip {
            font-family: var(--FM);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(200, 255, 87, .7);
            background: rgba(200, 255, 87, .06);
            border: 1px solid rgba(200, 255, 87, .15);
            padding: 7px 14px;
            backdrop-filter: blur(8px);
            white-space: nowrap;
            transition: all .3s;
        }

        .hero-chip:hover {
            color: var(--acid);
            border-color: rgba(200, 255, 87, .4);
            background: rgba(200, 255, 87, .1);
        }

        .hero-available {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--FM);
            font-size: 11px;
            color: var(--acid);
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .av-dot {
            width: 8px;
            height: 8px;
            background: var(--acid);
            border-radius: 50%;
            animation: pulse 2s ease infinite;
            flex-shrink: 0;
        }

        .hero-h1 {
            font-family: var(--FD);
            font-size: clamp(54px, 6.5vw, 96px);
            line-height: .9;
            letter-spacing: -2px;
            margin-bottom: 10px;
        }

        .hero-h1 .outline {
            -webkit-text-stroke: 1px rgba(246, 243, 238, .2);
            color: transparent;
        }

        .hero-h1 .accent {
            color: var(--acid);
            font-style: italic;
        }

        .hero-desc {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(246, 243, 238, .55);
            max-width: 420px;
            margin: 24px 0 36px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--acid);
            color: var(--ink);
            font-family: var(--FM);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: 15px 28px;
            transition: all .3s;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, .2);
            transform: skewX(-20deg);
            transition: left .4s;
        }

        .btn-primary:hover::before {
            left: 100%
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(200, 255, 87, .25)
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(246, 243, 238, .6);
            font-family: var(--FM);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: 15px 0;
            border-bottom: 1px solid rgba(246, 243, 238, .15);
            transition: all .3s;
        }

        .btn-ghost:hover {
            color: var(--paper);
            border-color: var(--paper)
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, auto);
            gap: 0;
            margin-top: 52px;
            padding-top: 36px;
            border-top: 1px solid var(--border);
        }

        .hs-item {
            padding: 0 28px 0 0;
            border-right: 1px solid var(--border);
            margin-right: 28px;
        }

        .hs-item:last-child {
            border-right: none;
            margin-right: 0;
            padding-right: 0;
        }


        .hs-num {
            font-family: var(--FM);
            font-size: 28px;
            font-weight: 600;
            color: var(--acid);
            line-height: 1;
            margin-bottom: 4px;
        }

        .hs-lbl {
            font-size: 11px;
            color: rgba(246, 243, 238, .35);
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        /* Grid lines decoration */
        .hero-grid-lines {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(rgba(200, 255, 87, .03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(200, 255, 87, .03) 1px, transparent 1px);
            background-size: 80px 80px;
        }

        /* Scrolling vertical text on right edge */
        .hero-vert {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            transform-origin: center;
            font-family: var(--FM);
            font-size: 9px;
            letter-spacing: .3em;
            color: rgba(200, 255, 87, .3);
            text-transform: uppercase;
            white-space: nowrap;
            z-index: 3;
        }

        /* ── MARQUEE ── */
        .marquee-wrap {
            background: var(--acid);
            padding: 0;
            overflow: hidden;
            border-top: 1px solid rgba(200, 255, 87, .3);
        }

        .marquee-inner {
            display: flex;
            animation: marquee 60s linear infinite;
            width: max-content;
        }

        .marquee-inner:hover {
            animation-play-state: paused
        }

        .m-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 14px 32px;
            font-family: var(--FM);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--ink);
            border-right: 1px solid rgba(8, 11, 15, .12);
            white-space: nowrap;
        }

        .m-sep {
            width: 4px;
            height: 4px;
            background: var(--ink);
            border-radius: 50%;
            opacity: .3;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        /* ── SECTION SHARED ── */
        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--FM);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--acid);
            margin-bottom: 18px;
        }

        .section-eyebrow::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--acid);
        }

        .sec-title {
            font-family: var(--FD);
            font-size: clamp(36px, 4vw, 58px);
            line-height: .95;
            letter-spacing: -1.5px;
            margin-bottom: 0;
        }

        .sec-title em {
            color: var(--acid);
            font-style: italic
        }

        /* ── NUMBERS ── */
        #numbers {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .num-box {
            padding: 52px 40px;
            border-right: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: background .4s;
        }

        .num-box:last-child {
            border-right: none
        }

        .num-box:hover {
            background: rgba(200, 255, 87, .03)
        }

        .num-box::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--acid);
            transition: width .5s ease;
        }

        .num-box:hover::before {
            width: 100%
        }

        .nb-val {
            font-family: var(--FM);
            font-size: clamp(40px, 4vw, 60px);
            font-weight: 600;
            color: var(--paper);
            line-height: 1;
            margin-bottom: 8px;
        }

        .nb-val .accent {
            color: var(--acid)
        }

        .nb-lbl {
            font-size: 12px;
            color: rgba(246, 243, 238, .35);
            text-transform: uppercase;
            letter-spacing: .1em;
        }

        /* ── ABOUT ── */
        #about {
            display: grid;
            grid-template-columns: 5fr 4fr;
            border-bottom: 1px solid var(--border);
        }

        .abt-left {
            padding: 96px 64px;
            border-right: 1px solid var(--border);
        }

        .abt-right {
            padding: 96px 52px;
            background: var(--ink2);
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .abt-body {
            font-size: 16px;
            line-height: 1.85;
            color: rgba(246, 243, 238, .6);
            max-width: 500px;
            margin: 28px 0;
        }

        .abt-body strong {
            color: var(--paper);
            font-weight: 600
        }

        .abt-flags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 28px;
        }

        .flag-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border: 1px solid var(--border);
            font-size: 12px;
            color: rgba(246, 243, 238, .5);
            font-family: var(--FM);
            transition: all .3s;
        }

        .flag-chip:hover {
            border-color: var(--acid);
            color: var(--paper)
        }

        /* Timeline */
        .timeline {
            display: flex;
            flex-direction: column;
        }

        .tl-item {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
            position: relative;
            transition: all .3s;
        }

        .tl-item:last-child {
            border-bottom: none
        }

        .tl-item:hover .tl-dot {
            background: var(--acid);
            transform: scale(1.3)
        }

        .tl-year {
            font-family: var(--FM);
            font-size: 10px;
            font-weight: 600;
            color: rgba(246, 243, 238, .3);
            letter-spacing: .08em;
            padding-top: 3px;
        }

        .tl-dot {
            position: absolute;
            left: 74px;
            top: 28px;
            width: 6px;
            height: 6px;
            background: rgba(246, 243, 238, .15);
            border-radius: 50%;
            transition: all .3s;
        }


        .tl-role {
            font-size: 15px;
            font-weight: 600;
            color: var(--paper);
            margin-bottom: 3px;
        }

        .tl-co {
            font-family: var(--FM);
            font-size: 11px;
            color: rgba(246, 243, 238, .35);
        }

        /* ── SERVICES ── */
        #services {
            padding: 96px 52px;
            border-bottom: 1px solid var(--border);
        }

        .svc-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            margin-bottom: 64px;
        }

        .svc-top p {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(246, 243, 238, .45);
            max-width: 360px;
            align-self: end;
        }

        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            /* Added gap between cards */
        }

        .svc-card {
            padding: 40px 34px;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            /* Sharper corners like arc-frame */
            background: rgba(246, 243, 238, 0.02);
            border: 1px solid rgba(246, 243, 238, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1;
        }

        /* Scan line overlay */
        .svc-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(0deg,
                    transparent,
                    transparent 3px,
                    rgba(8, 11, 15, 0.3) 3px,
                    rgba(8, 11, 15, 0.3) 4px);
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
            transition: opacity 0.4s;
        }

        /* Corner brackets */
        .svc-card::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            bottom: -6px;
            right: -6px;
            border-bottom: 2px solid var(--acid);
            border-right: 2px solid var(--acid);
            z-index: 4;
            opacity: 0;
            transition: all 0.4s;
        }

        .svc-card:hover {
            transform: translateY(-5px);
            background: rgba(8, 11, 15, 0.8);
            border-color: rgba(200, 255, 87, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 255, 87, 0.1);
        }

        .svc-card:hover::before {
            opacity: 1;
        }

        .svc-card:hover::after {
            bottom: 0px;
            right: 0px;
            opacity: 1;
        }


        .svc-card:hover .svc-num {
            color: rgba(200, 255, 87, 0.3);
            text-shadow: 0 0 10px rgba(200, 255, 87, 0.5);
        }

        .svc-card:hover .svc-ico {
            transform: scale(1.1) rotate(5deg);
            color: var(--acid);
            border-color: var(--acid);
            background: rgba(200, 255, 87, 0.05);
        }

        .svc-card:hover .svc-ico i {
            animation: bounce-icon 0.5s ease;
        }

        @keyframes bounce-icon {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-3px);
            }
        }


        .svc-num {
            position: absolute;
            top: 24px;
            right: 24px;
            font-family: var(--FS);
            /* Make number big and bold */
            font-size: 42px;
            font-weight: 900;
            color: rgba(246, 243, 238, .03);
            letter-spacing: -2px;
            transition: all .4s;
            z-index: 1;
            line-height: 1;
        }

        .svc-ico {
            width: 48px;
            height: 48px;
            border-radius: 4px;
            background: rgba(246, 243, 238, 0.03);
            border: 1px solid rgba(246, 243, 238, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: rgba(246, 243, 238, 0.5);
            transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            margin-bottom: 30px;
        }

        .svc-name {
            font-size: 18px;
            font-weight: 700;
            color: rgba(246, 243, 238, .9);
            margin-bottom: 12px;
            transition: color .4s;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .svc-card:hover .svc-name {
            color: var(--acid);
        }

        .svc-desc {
            font-size: 14px;
            line-height: 1.75;
            color: rgba(246, 243, 238, .5);
            position: relative;
            z-index: 1;
        }


        /* ── WHY ME ── */
        #why {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid var(--border);
        }

        .why-left {
            padding: 96px 64px;
            background: var(--ink2);
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .why-right {
            padding: 96px 52px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .why-sub {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(246, 243, 238, .5);
            max-width: 420px;
            margin-top: 22px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            padding: 24px;
        }

        .why-item {
            padding: 36px 30px;
            background: var(--ink);
            border-radius: 12px;
            border: 1px solid rgba(246, 243, 238, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .why-item::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent, rgba(200, 255, 87, 0.03), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .why-item:hover {
            background: var(--ink2);
            border-color: rgba(200, 255, 87, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .why-item:hover::before {
            transform: translateX(100%);
        }

        .wi-ico {
            font-size: 24px;
            color: var(--ink);
            background: var(--acid);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(200, 255, 87, 0.2);
            transition: transform 0.3s;
        }

        .why-item:hover .wi-ico {
            transform: scale(1.1) rotate(-5deg);
        }

        .wi-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--paper);
        }

        .wi-desc {
            font-size: 14px;
            line-height: 1.75;
            color: rgba(246, 243, 238, .5);
        }

        /* ── TOOLS ── */
        #tools {
            padding: 80px 52px;
            border-bottom: 1px solid var(--border);
            background: var(--ink2);
            overflow: hidden;
        }

        .tools-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
        }

        .tools-top p {
            font-size: 14px;
            color: rgba(246, 243, 238, .4);
            max-width: 300px;
            line-height: 1.7;
        }

        .tools-scroll {
            position: relative;
            overflow: hidden;
        }

        .tools-scroll::before,
        .tools-scroll::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            pointer-events: none;
            z-index: 2;
        }

        .tools-scroll::before {
            left: 0;
            background: linear-gradient(90deg, var(--ink2), transparent)
        }

        .tools-scroll::after {
            right: 0;
            background: linear-gradient(-90deg, var(--ink2), transparent)
        }

        .tools-track {
            display: flex;
            gap: 10px;
            width: max-content;
            animation: marquee 30s linear infinite;
        }

        .tool-pill {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 24px;
            border: 1px solid var(--border);
            background: rgba(246, 243, 238, .02);
            white-space: nowrap;
            transition: all .3s;
            flex-shrink: 0;
        }

        .tool-pill:hover {
            border-color: rgba(200, 255, 87, .3);
            background: rgba(200, 255, 87, .04);
        }

        .tool-pill i {
            font-size: 20px;
            color: rgba(246, 243, 238, .4)
        }

        .tool-pill span {
            font-size: 13px;
            font-weight: 500;
            color: rgba(246, 243, 238, .6)
        }

        /* ── PROBLEMS ── */
        #problems {
            padding: 96px 52px;
            border-bottom: 1px solid var(--border);
        }

        .prob-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            margin-bottom: 64px;
        }

        .prob-head p {
            font-size: 15px;
            color: rgba(246, 243, 238, .45);
            line-height: 1.75;
            max-width: 380px;
            align-self: end;
        }

        .prob-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .prob-card {
            background: rgba(8, 11, 15, 0.4);
            padding: 40px 32px;
            border-radius: 4px;
            /* Professional sharp corners */
            border: 1px solid rgba(246, 243, 238, 0.04);
            transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            z-index: 1;
        }

        /* Diagnostic blueprint overlay */
        .prob-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(rgba(246, 243, 238, 0.03) 1px, transparent 1px);
            background-size: 16px 16px;
            pointer-events: none;
            opacity: 0.3;
            z-index: -1;
            transition: opacity 0.4s;
        }

        .prob-card:hover {
            transform: translateY(-5px);
            border-color: rgba(246, 243, 238, 0.1);
            background: rgba(8, 11, 15, 0.8);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .prob-card:hover::before {
            opacity: 0.8;
        }

        /* Diagnostic Edge line */
        .prob-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0%;
            transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
        }

        .prob-card.danger::after {
            background: var(--teal-lt);
            box-shadow: 0 0 15px rgba(26, 138, 122, 0.5);
        }

        .prob-card.safe::after {
            background: var(--acid);
            box-shadow: 0 0 15px rgba(200, 255, 87, 0.5);
        }

        .prob-card:hover::after {
            height: 100%;
        }

        .prob-ico {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            transition: transform 0.4s;
        }

        .prob-ico::after {
            content: '';
            position: absolute;
            inset: -4px;
            border: 1px dashed rgba(246, 243, 238, 0.1);
            border-radius: 4px;
            transition: all 0.4s;
        }

        .prob-card.danger .prob-ico {
            color: var(--teal-lt);
        }

        .prob-card.safe .prob-ico {
            color: var(--acid);
        }

        .prob-card:hover .prob-ico::after {
            border-color: inherit;
            transform: rotate(45deg);
        }

        .prob-card.danger:hover .prob-ico::after {
            border-color: rgba(26, 138, 122, 0.4);
            background: rgba(26, 138, 122, 0.05);
        }

        .prob-card.safe:hover .prob-ico::after {
            border-color: rgba(200, 255, 87, 0.4);
            background: rgba(200, 255, 87, 0.05);
        }

        .prob-card:hover .prob-ico {
            transform: scale(1.1);
        }

        .prob-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--paper);
        }

        .prob-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(246, 243, 238, .5);
            margin-bottom: 0;
        }

        /* ── PROCESS ── */
        #process {
            padding: 96px 52px;
            border-bottom: 1px solid var(--border);
            background: var(--ink2);
        }

        .proc-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 64px;
            gap: 40px;
            flex-wrap: wrap;
        }

        .proc-head p {
            font-size: 14px;
            color: rgba(246, 243, 238, .4);
            max-width: 320px;
            line-height: 1.75;
        }

        .proc-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            position: relative;
        }

        .proc-steps::before {
            content: '';
            position: absolute;
            top: 32px;
            left: calc(12.5% + 20px);
            right: calc(12.5% + 20px);
            height: 1px;
            background: linear-gradient(90deg, var(--acid), rgba(200, 255, 87, .2), var(--acid), rgba(200, 255, 87, .2));
            z-index: 0;
        }

        .pstep {
            padding: 0 28px 48px;
            position: relative;
            z-index: 1;
        }

        .pstep:first-child {
            padding-left: 0
        }

        .pstep:last-child {
            padding-right: 0
        }

        .pstep-num {
            width: 64px;
            height: 64px;
            border: 1px solid var(--border);
            background: var(--ink2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--FM);
            font-size: 13px;
            font-weight: 600;
            color: var(--acid);
            margin-bottom: 28px;
            position: relative;
            transition: all .4s;
        }

        .pstep:hover .pstep-num {
            background: var(--acid);
            color: var(--ink);
            border-color: var(--acid);
        }

        .pstep-title {
            font-family: var(--FM);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--paper);
            margin-bottom: 10px;
        }

        .pstep-desc {
            font-size: 13px;
            line-height: 1.7;
            color: rgba(246, 243, 238, .4);
        }

        /* ── WORK ── */
        #work {
            padding: 96px 52px;
            border-bottom: 1px solid var(--border);
        }

        .work-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 52px;
            gap: 24px;
            flex-wrap: wrap;
        }

        .work-head p {
            font-size: 14px;
            color: rgba(246, 243, 238, .4);
            max-width: 280px;
            line-height: 1.7;
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
        }

        .wcard {
            background: var(--ink);
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            transition: background .35s;
            text-decoration: none;
            color: inherit;
            position: relative;
            overflow: hidden;
        }

        .wcard::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(200, 255, 87, .06), transparent);
            transition: width .4s;
        }

        .wcard:hover {
            background: var(--ink2)
        }

        .wcard:hover::after {
            width: 100%
        }

        .wcard:hover .wc-arrow {
            transform: translate(3px, -3px);
            color: var(--acid)
        }

        .wcard:hover .wc-num {
            color: rgba(200, 255, 87, .08)
        }

        .wc-num {
            font-family: var(--FM);
            font-size: 11px;
            color: rgba(246, 243, 238, .1);
            margin-bottom: 24px;
            transition: color .35s;
        }

        .wc-type {
            font-family: var(--FM);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--acid);
            opacity: .6;
            margin-bottom: 6px;
        }

        .wc-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--paper);
            margin-bottom: 3px;
        }

        .wc-domain {
            font-family: var(--FM);
            font-size: 11px;
            color: rgba(246, 243, 238, .25);
            margin-bottom: auto;
        }

        .wc-desc {
            font-size: 11px;
            font-family: var(--FM);
            color: var(--mist);
            line-height: 1.6;
            margin-top: 10px;
        }

        .wc-country {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
            font-family: var(--FM);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            padding: 3px 9px;
            border-radius: 20px;
            background: var(--acid-dim);
            color: var(--acid);
            border: 1px solid rgba(200, 255, 87, .18);
            width: fit-content;
        }

        .wc-flag { font-size: 12px; }

        .wc-arrow {
            margin-top: 20px;
            font-size: 16px;
            color: rgba(246, 243, 238, .15);
            transition: all .35s;
            display: block;
            position: relative;
            z-index: 1;
        }

        /* ── GALLERY ── */
        #gallery {
            padding: var(--sec-pad) 0;
        }

        .gal-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 24px;
            margin-bottom: 48px;
            flex-wrap: wrap;
            padding: 0 var(--pad);
        }

        .gal-head p {
            color: var(--mist);
            font-size: 15px;
            max-width: 360px;
            line-height: 1.6;
        }

        /* Masonry grid */
        .gal-grid {
            columns: 4;
            column-gap: 14px;
            padding: 0 var(--pad);
        }

        /* Each card */
        .gal-card {
            break-inside: avoid;
            margin-bottom: 14px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--ink2);
            transition: transform .4s cubic-bezier(.25,.46,.45,.94),
                        box-shadow .4s ease,
                        border-color .4s ease;
            cursor: zoom-in;
        }

        .gal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 24px 56px rgba(0,0,0,.55), 0 0 0 1px rgba(200,255,87,.12);
            border-color: rgba(200,255,87,.2);
        }

        /* Browser chrome */
        .gal-chrome {
            background: #13171e;
            padding: 9px 13px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid rgba(255,255,255,.06);
        }

        .gal-dots { display: flex; gap: 5px; flex-shrink: 0; }

        .gal-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }
        .gal-dot:nth-child(1) { background: #ff5f57; }
        .gal-dot:nth-child(2) { background: #ffbd2e; }
        .gal-dot:nth-child(3) { background: #28c840; }

        .gal-urlbar {
            flex: 1;
            background: rgba(255,255,255,.05);
            border-radius: 5px;
            height: 21px;
            display: flex;
            align-items: center;
            padding: 0 9px;
            gap: 5px;
        }

        .gal-urlbar i {
            font-size: 10px;
            color: rgba(200,255,87,.5);
            flex-shrink: 0;
        }

        .gal-url {
            font-family: var(--FM);
            font-size: 10px;
            color: rgba(246,243,238,.35);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Scroll-preview viewport */
        .gal-viewport {
            height: 320px;
            overflow: hidden;
            position: relative;
        }

        .gal-viewport img {
            width: 100%;
            height: auto;
            display: block;
            transform: translateY(0);
            transition: transform 5s cubic-bezier(.25,.46,.45,.94);
            will-change: transform;
        }

        .gal-card:hover .gal-viewport img {
            transform: translateY(var(--scroll-to, -65%));
        }

        @media (max-width: 1100px) { .gal-grid { columns: 3; } }
        @media (max-width: 768px)  { .gal-grid { columns: 2; } .gal-viewport { height: 280px; } }
        @media (max-width: 480px)  { .gal-grid { columns: 1; } .gal-viewport { height: 260px; } }

        /* ── RESULTS ── */
        #results {
            padding: 96px 52px;
            border-bottom: 1px solid var(--border);
            background: var(--ink2);
        }

        .results-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 52px;
            gap: 24px;
            flex-wrap: wrap;
        }

        .results-head p {
            font-size: 14px;
            color: rgba(246, 243, 238, .4);
            line-height: 1.7;
            max-width: 300px;
        }

        .results-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* ── Browser Frame Card ── */
        .rcard {
            position: relative;
            display: flex;
            flex-direction: column;
            border-radius: 12px;
            overflow: hidden;
            background: #13171f;
            border: 1px solid rgba(255, 255, 255, .08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .04);
            transition: all .4s;
            text-decoration: none;
            flex: 1 1 calc(25% - 16px);
            min-width: 260px;
            max-width: 100%;
        }

        /* Browser chrome header */
        .rcard::before {
            content: 'search.google.com/search-console/performance';
            display: flex;
            align-items: center;
            padding-left: 80px;
            padding-right: 16px;
            height: 38px;
            min-height: 38px;
            flex-shrink: 0;
            background: #1c2333;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            font-family: var(--FM);
            font-size: 9.5px;
            letter-spacing: .01em;
            color: rgba(255, 255, 255, .22);
            /* Traffic-light dots matching brand colors */
            background-image:
                radial-gradient(circle 5.5px at 20px 50%, rgba(200, 255, 87, 0.2) 100%, transparent 100%),
                radial-gradient(circle 5.5px at 36px 50%, rgba(200, 255, 87, 0.5) 100%, transparent 100%),
                radial-gradient(circle 5.5px at 52px 50%, var(--acid) 100%, transparent 100%),
                linear-gradient(#1c2333, #1c2333);
        }

        /* URL bar pill */
        .rcard::after {
            content: '';
            position: absolute;
            top: 9px;
            left: 72px;
            right: 12px;
            height: 20px;
            border-radius: 4px;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .rcard::before {
                font-size: 7px;
                padding-left: 54px;
                padding-right: 8px;
                letter-spacing: 0;
                background-image:
                    radial-gradient(circle 4.5px at 14px 50%, rgba(200, 255, 87, 0.2) 100%, transparent 100%),
                    radial-gradient(circle 4.5px at 26px 50%, rgba(200, 255, 87, 0.5) 100%, transparent 100%),
                    radial-gradient(circle 4.5px at 38px 50%, var(--acid) 100%, transparent 100%),
                    linear-gradient(#1c2333, #1c2333);
            }

            .rcard::after {
                left: 50px;
                right: 6px;
            }
        }

        @media (max-width: 480px) {
            .rcard::before {
                font-size: 5.8px;
                padding-left: 48px;
                background-image:
                    radial-gradient(circle 4px at 12px 50%, rgba(200, 255, 87, 0.2) 100%, transparent 100%),
                    radial-gradient(circle 4px at 22px 50%, rgba(200, 255, 87, 0.5) 100%, transparent 100%),
                    radial-gradient(circle 4px at 32px 50%, var(--acid) 100%, transparent 100%),
                    linear-gradient(#1c2333, #1c2333);
            }

            .rcard::after {
                left: 44px;
            }
        }

        /* Image container */
        .rcard img {
            width: 100%;
            height: 240px;
            object-fit: contain;
            object-position: top center;
            background: #0d1117;
            display: block;
            flex: 1;
            transition: transform .4s;
        }



        .rcard:hover {
            border-color: rgba(200, 255, 87, .3);
            box-shadow: 0 12px 48px rgba(0, 0, 0, .6), 0 0 0 1px rgba(200, 255, 87, .1);
            transform: translateY(-3px);
        }

        .rcard:hover img {
            transform: scale(1.02);
        }

        /* ── TESTIMONIALS ── */
        #testimonials {
            padding: 96px 52px;
            border-bottom: 1px solid var(--border);
        }

        .tst-head {
            margin-bottom: 52px
        }

        .tst-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            margin-bottom: 28px;
        }

        .tc {
            background: var(--ink);
            padding: 36px 30px;
            position: relative;
            overflow: hidden;
            transition: background .4s;
        }

        .tc:hover {
            background: var(--ink2)
        }

        .tc-q {
            font-family: var(--FD);
            font-size: 80px;
            color: rgba(200, 255, 87, .06);
            line-height: .7;
            margin-bottom: 16px;
            display: block;
        }

        .tc-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 16px;
        }

        .tc-text {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(246, 243, 238, .55);
            font-style: italic;
            margin-bottom: 24px;
        }

        .tc-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tc-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            object-fit: cover;
            filter: grayscale(30%);
            border: 1px solid var(--border);
        }

        .tc-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--paper)
        }

        .tc-role {
            font-family: var(--FM);
            font-size: 10px;
            color: rgba(246, 243, 238, .3);
        }

        .tst-media {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 20px;
            align-items: start;
        }

        /* ── Left Column Wrapper (desktop) ── */
        .tst-left-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Text intro block — fills gap above video */
        .tst-left-intro {
            padding: 28px 28px 24px;
            border-radius: 14px;
            background: #0d1117;
            border: 1px solid rgba(201, 255, 87, .1);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .tst-intro-title {
            font-size: clamp(18px, 2.2vw, 26px);
            font-weight: 700;
            color: var(--cream);
            line-height: 1.3;
            margin: 0;
        }

        .tst-intro-title em {
            font-style: normal;
            color: var(--acid);
        }

        .tst-intro-desc {
            font-size: 13.5px;
            color: rgba(246, 243, 238, .55);
            line-height: 1.65;
            margin: 0;
        }

        /* Trust pills row */
        .tst-trust-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 4px;
        }

        .tst-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--FM);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: rgba(246, 243, 238, .65);
            background: rgba(201, 255, 87, .05);
            border: 1px solid rgba(201, 255, 87, .14);
            padding: 6px 12px;
            border-radius: 20px;
        }

        .tst-pill i {
            font-size: 13px;
            color: var(--acid);
        }

        /* ── Video Wrap — Branded Frame ── */

        .tst-video-wrap {
            position: relative;
            display: flex;
            flex-direction: column;
            border-radius: 16px;
            overflow: hidden;
            background: #0d1117;
            border: 1px solid rgba(201, 255, 87, .15);
            box-shadow:
                0 0 0 1px rgba(201, 255, 87, .05),
                0 8px 40px rgba(0, 0, 0, .6),
                0 0 50px rgba(201, 255, 87, .03);
            transition: all .4s;
        }

        /* Top-left corner accent */
        .tst-video-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--acid), transparent);
            z-index: 3;
            pointer-events: none;
        }

        /* Top-right corner accent */
        .tst-video-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 3px;
            height: 60px;
            background: linear-gradient(180deg, var(--acid), transparent);
            z-index: 3;
            pointer-events: none;
        }

        .tst-video-wrap:hover {
            border-color: rgba(201, 255, 87, .28);
            box-shadow: 0 0 0 1px rgba(201, 255, 87, .08), 0 16px 56px rgba(0, 0, 0, .65), 0 0 60px rgba(201, 255, 87, .05);
            transform: translateY(-2px);
        }

        .vid-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 18px;
            height: 48px;
            min-height: 48px;
            flex-shrink: 0;
            font-family: var(--FM);
            font-size: 9px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(246, 243, 238, .5);
            border-bottom: 1px solid rgba(201, 255, 87, .1);
            background: #0d1117;
            position: relative;
        }

        .vid-label-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* "LIVE" badge */
        .vid-live-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            font-family: var(--FM);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: .15em;
            color: var(--ink);
            background: var(--acid);
            padding: 3px 10px;
            border-radius: 20px;
        }

        .vid-live-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--ink);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .5;
                transform: scale(.8);
            }
        }

        /* Video element */
        .tst-video-wrap video {
            width: 100%;
            max-height: 260px;
            display: block;
            background: #000;
            object-fit: contain;
        }

        /* Audio wrapper */
        .vid-audio-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: linear-gradient(135deg, #0d1117 0%, #06080b 100%);
            border-top: 1px solid rgba(201, 255, 87, .15);
            position: relative;
            overflow: hidden;
        }

        /* Subtle glow behind audio */
        .vid-audio-wrap::before {
            content: '';
            position: absolute;
            left: -10%;
            top: -50%;
            width: 50%;
            height: 200%;
            background: radial-gradient(circle, rgba(201, 255, 87, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .vid-audio-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(201, 255, 87, .1);
            border: 1px solid rgba(201, 255, 87, .3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--acid);
            font-size: 18px;
            flex-shrink: 0;
            box-shadow: 0 0 16px rgba(201, 255, 87, 0.15);
            position: relative;
        }

        /* Dashed rotating border */
        .vid-audio-icon::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 1px dashed rgba(201, 255, 87, 0.3);
            animation: spin-dashed 12s linear infinite;
        }

        @keyframes spin-dashed {
            100% {
                transform: rotate(360deg);
            }
        }

        .vid-audio-info {
            flex: 1;
            min-width: 0;
            position: relative;
            z-index: 1;
        }

        .vid-audio-title {
            font-family: var(--FM);
            font-size: 10px;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--acid);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Live recording dot indicator */
        .vid-audio-title::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--acid);
            box-shadow: 0 0 8px var(--acid);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        /* Audio Waves */
        .audio-waves {
            display: flex;
            align-items: flex-end;
            gap: 2px;
            height: 12px;
            margin-left: 8px;
            opacity: 0.3;
            transition: opacity 0.3s;
        }

        .vid-audio-wrap.playing .audio-waves {
            opacity: 1;
        }

        .audio-waves span {
            width: 3px;
            background: var(--acid);
            border-radius: 2px;
            display: inline-block;
            height: 3px;
            box-shadow: 0 0 4px rgba(201, 255, 87, 0.4);
            transform-origin: bottom;
        }

        .vid-audio-wrap.playing .audio-waves span {
            animation: waveFrames 1.2s ease-in-out infinite alternate;
        }

        .vid-audio-wrap.playing .audio-waves span:nth-child(1) {
            animation-delay: 0.1s;
            animation-duration: 0.9s;
        }

        .vid-audio-wrap.playing .audio-waves span:nth-child(2) {
            animation-delay: 0.3s;
            animation-duration: 1.1s;
        }

        .vid-audio-wrap.playing .audio-waves span:nth-child(3) {
            animation-delay: 0.0s;
            animation-duration: 0.8s;
        }

        .vid-audio-wrap.playing .audio-waves span:nth-child(4) {
            animation-delay: 0.4s;
            animation-duration: 1.2s;
        }

        @keyframes waveFrames {
            0% {
                height: 3px;
            }

            100% {
                height: 12px;
            }
        }

        .tst-video-wrap audio {
            width: 100%;
            display: block;
            height: 38px;
            outline: none;
            border-radius: 30px;
            accent-color: var(--acid);
        }

        /* Style the inside of the audio player for webkit browsers */
        .tst-video-wrap audio::-webkit-media-controls-panel {
            background-color: #11151c;
        }

        .tst-video-wrap audio::-webkit-media-controls-play-button,
        .tst-video-wrap audio::-webkit-media-controls-mute-button {
            background-color: rgba(201, 255, 87, 0.15);
            border-radius: 50%;
        }

        .tst-video-wrap audio::-webkit-media-controls-current-time-display,
        .tst-video-wrap audio::-webkit-media-controls-time-remaining-display {
            color: rgba(246, 243, 238, 0.7);
            font-family: var(--FM);
            font-size: 11px;
        }


        /* ── Screenshots — Creative Floating Cards ── */
        .tst-shots {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .shots-label {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            font-family: var(--FM);
            font-size: 9px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--acid);
            border-radius: 8px;
            background: rgba(200, 255, 87, .05);
            border: 1px solid rgba(200, 255, 87, .12);
        }

        /* Creative 2x2 review card grid */
        .shots-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 10px;
            counter-reset: shot-counter;
        }

        /* Each screenshot = floating review card */
        .shot-item {
            counter-increment: shot-counter;
            position: relative;
            border-radius: 10px;
            overflow: visible;
            background: #13171f;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .06);
            transition: all .38s cubic-bezier(.25, .46, .45, .94);
            cursor: zoom-in;
        }

        /* Inner image wrapper to clip */
        .shot-item img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            object-position: top center;
            background: #0a0d12;
            border-radius: 10px;
            transition: transform .38s ease;
        }

        /* Numbered badge pill */
        .shot-item::before {
            content: "0" counter(shot-counter);
            position: absolute;
            top: -8px;
            left: -8px;
            z-index: 4;
            font-family: var(--FM);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: .1em;
            color: var(--ink);
            background: var(--acid);
            padding: 3px 9px;
            border-radius: 20px;
            box-shadow: 0 2px 12px rgba(200, 255, 87, .4);
        }

        /* Top accent line */
        .shot-item::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 10px;
            border: 1px solid rgba(200, 255, 87, 0);
            transition: border-color .38s;
            pointer-events: none;
            z-index: 2;
        }

        .shot-item:hover::after {
            border-color: rgba(200, 255, 87, .35);
        }

        .shot-item:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, .55), 0 0 24px rgba(200, 255, 87, .08);
            transform: translateY(-5px) rotate(-0.5deg);
        }

        .shot-item:nth-child(even):hover {
            transform: translateY(-5px) rotate(0.5deg);
        }

        .shot-item:hover img {
            transform: scale(1.02);
        }



        /* ── CONTACT ── */
        #contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid var(--border);
        }

        .ct-left {
            padding: 96px 64px;
            border-right: 1px solid var(--border);
        }

        .ct-right {
            padding: 96px 52px;
            background: var(--ink2);
        }

        .ct-left h2 {
            margin-bottom: 36px
        }

        .contact-links {
            display: flex;
            flex-direction: column;
        }

        .clink {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
            text-decoration: none;
            color: inherit;
            transition: all .3s;
        }

        .clink:hover .cl-ico {
            border-color: var(--acid);
            color: var(--acid)
        }

        .clink:hover .cl-val {
            color: var(--paper)
        }

        .cl-ico {
            width: 42px;
            height: 42px;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: rgba(246, 243, 238, .4);
            flex-shrink: 0;
            transition: all .3s;
        }

        .cl-lbl {
            font-family: var(--FM);
            font-size: 9px;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: rgba(246, 243, 238, .25);
            margin-bottom: 3px;
        }

        .cl-val {
            font-size: 14px;
            font-weight: 500;
            color: rgba(246, 243, 238, .7);
            transition: color .3s;
        }

        .ct-socials {
            display: flex;
            gap: 8px;
            margin-top: 32px;
        }

        .ct-soc {
            width: 40px;
            height: 40px;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: rgba(246, 243, 238, .3);
            text-decoration: none;
            transition: all .3s;
        }

        .ct-soc:hover {
            border-color: var(--acid);
            color: var(--acid)
        }

        /* Form */
        .form-label {
            font-family: var(--FM);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: rgba(246, 243, 238, .3);
            display: block;
            margin-bottom: 8px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            background: rgba(246, 243, 238, .03);
            border: 1px solid var(--border);
            padding: 13px 16px;
            font-size: 14px;
            color: var(--paper);
            font-family: var(--FS);
            outline: none;
            transition: border-color .3s;
            resize: none;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: rgba(200, 255, 87, .3)
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(246, 243, 238, .15)
        }

        .form-group {
            margin-bottom: 14px
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .form-submit {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--acid);
            color: var(--ink);
            font-family: var(--FM);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: 14px 28px;
            text-decoration: none;
            transition: all .3s;
            margin-top: 8px;
            border: none;
            cursor: none;
        }

        .form-submit:hover {
            background: white;
            transform: translateY(-2px)
        }

        /* ── FREE AUDIT BANNER ── */
        #audit-banner {
            background: var(--ink);
            padding: 100px 52px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: center;
        }

        .ab-inner {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 64px;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
        }

        .ab-tag {
            font-family: var(--FM);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--acid);
            background: rgba(200, 255, 87, 0.08);
            border: 1px solid rgba(200, 255, 87, 0.15);
            padding: 8px 16px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 24px;
        }

        .ab-title {
            font-family: var(--FD);
            font-size: clamp(34px, 4.5vw, 64px);
            line-height: 1.05;
            color: var(--paper);
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .ab-title em {
            color: var(--acid);
            font-style: normal;
        }

        .ab-desc {
            font-size: 16px;
            color: rgba(246, 243, 238, .6);
            line-height: 1.7;
            max-width: 520px;
        }

        .ab-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start
        }

        .ab-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--acid);
            color: var(--ink);
            font-family: var(--FM);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: 18px 36px;
            text-decoration: none;
            white-space: nowrap;
            transition: all .3s;
        }

        .ab-btn-primary:hover {
            background: white;
            transform: translateY(-2px)
        }

        .ab-btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(246, 243, 238, .6);
            font-family: var(--FM);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            text-decoration: none;
            border-bottom: 1px solid rgba(246, 243, 238, .2);
            padding-bottom: 4px;
            transition: color .3s, border-color .3s;
        }

        .ab-btn-ghost:hover {
            color: var(--paper);
            border-color: rgba(246, 243, 238, .6);
        }

        /* ── CLIENTS ── */
        #clients {
            padding: 64px 52px;
            border-bottom: 1px solid var(--border);
            background: var(--ink2);
        }

        .cl-label {
            font-family: var(--FM);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: rgba(246, 243, 238, .2);
            text-align: center;
            margin-bottom: 36px;
        }

        .logos-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
        }

        .logo-box {
            flex: 1 1 180px;
            background: var(--ink2);
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: background .3s;
            text-decoration: none;
        }

        .logo-box:hover {
            background: rgba(200, 255, 87, .04);
        }

        .logo-box img {
            max-height: 44px;
            max-width: 85%;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: .45;
            transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .logo-box:hover img {
            filter: brightness(0) invert(1);
            opacity: 1;
            transform: scale(1.08);
        }

        /* ── FOOTER ── */
        footer {
            padding: 32px 52px;
            background: var(--ink);
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .foot-logo {
            font-family: var(--FM);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .05em;
            color: rgba(246, 243, 238, .6);
        }

        .foot-logo em {
            color: var(--acid);
            font-style: normal
        }

        .foot-copy {
            font-family: var(--FM);
            font-size: 11px;
            color: rgba(246, 243, 238, .2);
        }

        .foot-copy a {
            color: rgba(200, 255, 87, .5);
            transition: color .3s
        }

        .foot-copy a:hover {
            color: var(--acid)
        }

        .foot-links {
            display: flex;
            gap: 20px;
        }

        .foot-link {
            font-family: var(--FM);
            font-size: 11px;
            color: rgba(246, 243, 238, .25);
            text-decoration: none;
            transition: color .3s;
        }

        .foot-link:hover {
            color: var(--acid)
        }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0)
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1100px) {
            .svc-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .work-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .results-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .results-grid .rcard:nth-child(1) {
                grid-column: span 1;
                min-height: auto
            }

            #numbers {
                grid-template-columns: repeat(2, 1fr)
            }

            .proc-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 48px 0
            }

            .proc-steps::before {
                display: none
            }

            .tools-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px
            }
        }

        @media (max-width: 900px) {
            nav {
                padding: 16px 24px
            }

            nav.scrolled {
                padding: 12px 24px
            }

            .nav-links,
            .nav-cta {
                display: none
            }

            .nav-links.open {
                display: flex;
                position: fixed;
                inset: 0;
                background: var(--ink);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 32px;
                z-index: 550;
            }

            .nav-links.open a {
                font-size: 18px;
                color: var(--paper)
            }

            .hbg {
                display: flex
            }

            /* ─ Hero ─ */
            #hero {
                grid-template-columns: 1fr;
                min-height: auto
            }

            .hero-left {
                padding: 110px 28px 56px
            }

            .hero-h1 {
                font-size: clamp(46px, 11vw, 80px)
            }

            .hero-desc {
                font-size: 14px;
                max-width: 100%
            }

            .hero-right {
                height: auto;
                min-height: 460px;
                aspect-ratio: 3 / 4;
            }

            .hero-img-wrap {
                position: absolute;
                inset: 0;
            }

            .hero-img-wrap img {
                object-position: center top;
                object-fit: cover;
            }

            .hero-badge {
                display: none
            }

            .hero-chips {
                bottom: 16px;
                padding: 0 16px;
                gap: 6px;
            }

            .hero-stats {
                gap: 20px;
                margin-top: 32px;
                padding-top: 24px;
                flex-wrap: wrap
            }

            .hero-available {
                font-size: 10px
            }

            /* ─ Two-column → one ─ */
            #about,
            #why,
            #contact {
                grid-template-columns: 1fr
            }

            .abt-left,
            .abt-right,
            .why-left,
            .why-right,
            .ct-left,
            .ct-right {
                padding: 56px 24px;
                border-right: none;
                border-bottom: 1px solid var(--border)
            }

            /* ─ Section padding ─ */
            #services,
            #work,
            #problems,
            #process,
            #results,
            #testimonials,
            #clients,
            #audit-banner,
            #tools,
            #numbers {
                padding: 56px 20px
            }

            .sec-title {
                font-size: clamp(30px, 7vw, 50px)
            }

            /* ─ Section tops one-col ─ */
            .svc-top,
            .prob-head,
            .work-head,
            .results-head,
            .tools-top {
                grid-template-columns: 1fr;
                flex-direction: column;
                gap: 16px;
                margin-bottom: 36px;
                text-align: left
            }

            /* ─ Force headings & eyebrows left on mobile ─ */
            .sec-title,
            .section-eyebrow,
            .abt-left .sec-title,
            .why-left .sec-title,
            .ct-left .sec-title,
            h2,
            h3 {
                text-align: left !important
            }

            /* ─ Results & Work head fix ─ */
            .results-head,
            .work-head {
                flex-direction: column;
                align-items: flex-start;
                text-align: left
            }

            /* ─ Grids ─ */
            .svc-grid,
            .prob-grid {
                grid-template-columns: 1fr
            }

            .work-grid {
                grid-template-columns: repeat(2, 1fr) !important
            }

            .rcard img {
                height: 180px
            }

            .tst-grid {
                grid-template-columns: 1fr
            }

            .tst-media {
                grid-template-columns: 1fr
            }

            .tst-left-col {
                gap: 14px
            }

            .tst-left-intro {
                padding: 20px 18px
            }

            .tst-intro-title {
                font-size: 18px
            }

            .shots-grid {
                grid-template-columns: 1fr 1fr
            }

            .shot-item {
                overflow: hidden
            }

            .shot-item::before {
                top: 6px;
                left: 6px;
                font-size: 7px;
                position: absolute
            }

            /* ─ Pricing ─ */
            .pr-grid {
                grid-template-columns: 1fr;
                gap: 8px;
                background: none
            }

            .prcard {
                border: 1px solid var(--border) !important;
                margin: 0 !important;
                padding: 32px 24px
            }

            /* ─ Audit banner ─ */
            .ab-inner {
                grid-template-columns: 1fr
            }

            .ab-actions {
                flex-direction: column;
                width: 100%
            }

            .ab-btn-primary,
            .ab-btn-ghost {
                width: 100%;
                justify-content: center;
                text-align: center
            }

            /* ─ Form ─ */
            .form-row {
                grid-template-columns: 1fr
            }

            .form-submit {
                width: 100%;
                justify-content: center
            }

            /* ─ Numbers ─ */
            #numbers {
                grid-template-columns: repeat(2, 1fr)
            }

            .num-box {
                padding: 36px 24px
            }

            /* ─ Process ─ */
            .proc-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 0
            }

            /* ─ Timeline ─ */
            .tl-item {
                grid-template-columns: 70px 1fr
            }

            /* ─ Footer ─ */
            footer {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
                gap: 12px
            }

            .foot-links {
                justify-content: center
            }
        }

        /* ── TABLET SMALL (700px) ── */
        @media (max-width: 700px) {
            .hero-h1 {
                font-size: clamp(40px, 10vw, 60px)
            }

            .hero-right {
                min-height: 380px;
                aspect-ratio: 4 / 5;
            }

            .hero-left {
                padding: 100px 20px 48px
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 0;
                row-gap: 28px;
            }

            .hs-item {
                padding: 0 20px 0 0;
                border-right: 1px solid var(--border);
                margin-right: 20px;
            }

            .hs-item:nth-child(2n) {
                border-right: none;
                margin-right: 0;
                padding-right: 0;
            }

            .hs-item:last-child {
                border-right: none;
                margin-right: 0;
                padding-right: 0;
            }

            .hs-num {
                font-size: 24px
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 10px
            }

            .btn-primary,
            .btn-ghost {
                width: 100%;
                justify-content: center
            }

            .work-grid {
                grid-template-columns: 1fr
            }

            #numbers {
                grid-template-columns: repeat(2, 1fr)
            }

            .why-grid {
                grid-template-columns: 1fr
            }

            .why-item {
                border-right: none;
                border-bottom: 1px solid var(--border)
            }

            .why-item:last-child {
                border-bottom: none
            }

            .proc-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px 16px;
            }

            .pstep {
                padding: 0 !important;
            }

            .pstep-num {
                width: 48px;
                height: 48px;
                margin-bottom: 12px;
                font-size: 11px;
            }

            .pstep-title {
                font-size: 11px;
            }

            .pstep-desc {
                font-size: 12px;
                line-height: 1.5;
            }

            .shots-grid {
                grid-template-columns: 1fr
            }

            .shot-item {
                border-right: none !important;
                border-bottom: 1px solid var(--border) !important;
                aspect-ratio: 16 / 9
            }

            .shot-item:last-child {
                border-bottom: none !important
            }

            .logo-box {
                min-width: 90px;
                padding: 14px 18px
            }

            .ct-socials {
                flex-wrap: wrap
            }

            .abt-flags {
                gap: 8px
            }

            .flag-chip {
                font-size: 11px;
                padding: 6px 12px
            }

            .tst-grid {
                gap: 1px
            }

            .wcard {
                padding: 24px 20px
            }

            .svc-card {
                padding: 32px 24px
            }

            .prob-card {
                padding: 30px 24px
            }
        }

        /* ── MOBILE (480px) ── */
        @media (max-width: 480px) {
            .hero-h1 {
                font-size: 38px
            }

            .hero-right {
                min-height: 300px;
                aspect-ratio: 1 / 1;
            }

            .hero-left {
                padding: 90px 16px 40px
            }

            .hero-desc {
                font-size: 13px
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 24px;
                gap: 0;
            }

            .hero-actions {
                gap: 10px
            }

            .hero-chip {
                font-size: 8px;
                padding: 5px 10px
            }

            #services,
            #work,
            #problems,
            #process,
            #results,
            #testimonials,
            #pricing,
            #clients,
            #audit-banner,
            #tools,
            #numbers {
                padding: 44px 16px
            }

            .abt-left,
            .abt-right,
            .why-left,
            .why-right,
            .ct-left,
            .ct-right {
                padding: 44px 16px
            }

            .sec-title {
                font-size: clamp(26px, 9vw, 40px);
                text-align: left !important
            }

            .nb-val {
                font-size: 36px
            }

            #numbers {
                grid-template-columns: 1fr 1fr
            }

            .num-box {
                padding: 28px 16px
            }

            .prcard {
                padding: 26px 18px
            }

            .pr-price {
                font-size: 40px
            }

            .tc {
                padding: 24px 18px
            }

            .tc-text {
                font-size: 13px
            }

            .wcard {
                padding: 20px 16px
            }

            .work-head,
            .results-head {
                flex-direction: column;
                align-items: flex-start;
                text-align: left
            }

            .wc-name {
                font-size: 14px
            }

            .why-item {
                padding: 24px 16px
            }

            .prob-card {
                padding: 26px 18px
            }

            .pstep {
                padding: 0 0 36px
            }

            .pstep:last-child {
                padding-bottom: 0
            }

            footer {
                padding: 20px 16px
            }

            .foot-links {
                gap: 14px
            }

            .ab-title {
                font-size: clamp(20px, 6vw, 30px)
            }

            .ab-desc {
                font-size: 13px
            }

            /* ─ Testimonials media mobile ─ */
            .tst-media {
                grid-template-columns: 1fr;
                gap: 24px
            }

            .shots-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px
            }

            .shot-item {
                overflow: hidden;
                border-radius: 8px
            }

            .shot-item::before {
                position: absolute;
                top: 6px;
                left: 6px;
                font-size: 7px;
                padding: 2px 6px
            }

            .shot-item:hover {
                transform: translateY(-2px);
                rotate: 0deg
            }

            .tst-video-wrap,
            .tst-shots {
                width: 100%
            }

            .vid-label,
            .shots-label {
                padding-left: 70px;
                font-size: 8.5px
            }
        }

        .ct-socials {
            flex-wrap: wrap;
            gap: 6px
        }

        .shots-grid {
            grid-template-columns: 1fr
        }

        .logo-box {
            min-width: 80px;
            padding: 12px 14px
        }

        .tl-item {
            grid-template-columns: 60px 1fr;
            gap: 12px
        }

        /* ═══════════════════════════════════
           SCREENSHOTS SLIDER — Premium Frame
           ═══════════════════════════════════ */

        /* The outer card */
        .tst-shots {
            display: flex;
            flex-direction: column;
            border-radius: 16px;
            overflow: hidden;
            background: #0d1117;
            border: 1px solid rgba(201, 255, 87, .18);
            box-shadow:
                0 0 0 1px rgba(201, 255, 87, .06),
                0 8px 40px rgba(0, 0, 0, .6),
                0 0 60px rgba(201, 255, 87, .04);
            position: relative;
        }

        /* Top-left corner accent */
        .tst-shots::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--acid), transparent);
            border-radius: 0 0 2px 0;
            z-index: 3;
        }

        /* Top-right corner accent */
        .tst-shots::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 3px;
            height: 60px;
            background: linear-gradient(180deg, var(--acid), transparent);
            z-index: 3;
        }

        /* Header bar */
        .shots-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 18px;
            height: 48px;
            min-height: 48px;
            flex-shrink: 0;
            background: #0d1117;
            border-bottom: 1px solid rgba(201, 255, 87, .1);
            position: relative;
        }

        /* Label left group */
        .shots-label-left {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--FM);
            font-size: 9px;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: rgba(246, 243, 238, .55);
        }

        /* Slide counter badge (right side) */
        #slideCounter {
            font-family: var(--FM);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .05em;
            color: var(--acid);
            background: rgba(201, 255, 87, .08);
            border: 1px solid rgba(201, 255, 87, .2);
            padding: 4px 12px;
            border-radius: 20px;
        }

        /* Slider wrapper */
        .shots-slider-wrap {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        /* Slide track */
        .shots-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -ms-overflow-style: none;
            scrollbar-width: none;
            flex: 1;
        }

        .shots-slider::-webkit-scrollbar {
            display: none;
        }

        /* Individual slide */
        .shot-slide {
            flex: 0 0 100%;
            scroll-snap-align: start;
            background: #08090d;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            position: relative;
        }

        /* Subtle scan-line texture over each slide */
        .shot-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(0deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 0, 0, .03) 2px,
                    rgba(0, 0, 0, .03) 4px);
            pointer-events: none;
            z-index: 1;
        }

        .shot-slide img {
            width: 100%;
            height: auto;
            max-height: 480px;
            /* Reduces excessive height on desktop */
            display: block;
            object-fit: contain;
            object-position: top center;
            position: relative;
            z-index: 0;
        }

        /* ── Controls bar ── */
        .slider-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 18px;
            background: #0d1117;
            border-top: 1px solid rgba(201, 255, 87, .1);
            flex-shrink: 0;
        }

        /* Prev / Next buttons */
        .sl-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(201, 255, 87, .06);
            border: 1px solid rgba(201, 255, 87, .2);
            color: var(--acid);
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all .25s;
            flex-shrink: 0;
        }

        .sl-btn:hover {
            background: var(--acid);
            border-color: var(--acid);
            color: var(--ink);
            box-shadow: 0 0 16px rgba(201, 255, 87, .35);
        }

        /* Dots row */
        .sl-dots {
            display: flex;
            gap: 7px;
            align-items: center;
        }

        .sl-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(201, 255, 87, .2);
            border: 1px solid rgba(201, 255, 87, .15);
            cursor: pointer;
            transition: all .3s cubic-bezier(.4, 0, .2, 1);
            padding: 0;
        }

        .sl-dot.active {
            background: var(--acid);
            width: 22px;
            border-radius: 4px;
            border-color: var(--acid);
            box-shadow: 0 0 10px rgba(201, 255, 87, .5);
        }
    

            /* ── ARCHITECT SECTION ── */
            #architect {
                padding: 100px 52px;
                border-bottom: 1px solid var(--border);
                overflow: hidden;
                position: relative;
            }

            /* Faint bg grid */
            #architect::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(rgba(201, 255, 87, .025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201, 255, 87, .025) 1px, transparent 1px);
                background-size: 60px 60px;
                pointer-events: none;
            }

            .arc-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 72px;
                align-items: center;
                max-width: 1400px;
                margin: 0 auto;
                position: relative;
                z-index: 1;
            }

            .arc-img-col {
                position: relative;
                max-width: 560px;
            }

            /* Big ghost number */
            .arc-ghost-num {
                position: absolute;
                top: -32px;
                left: -20px;
                font-family: var(--FS);
                font-size: 140px;
                font-weight: 900;
                color: rgba(201, 255, 87, .04);
                line-height: 1;
                pointer-events: none;
                z-index: 0;
                letter-spacing: -6px;
            }

            /* Image frame */
            .arc-frame {
                position: relative;
                z-index: 1;
                border-radius: 4px;
                overflow: visible;
            }

            /* Corner brackets */
            .arc-frame::before,
            .arc-frame::after {
                content: '';
                position: absolute;
                width: 28px;
                height: 28px;
                z-index: 4;
            }

            .arc-frame::before {
                top: -6px;
                left: -6px;
                border-top: 2px solid var(--acid);
                border-left: 2px solid var(--acid);
            }

            .arc-frame::after {
                bottom: -6px;
                right: -6px;
                border-bottom: 2px solid var(--acid);
                border-right: 2px solid var(--acid);
            }

            /* The actual image container */
            .arc-img-box {
                position: relative;
                border-radius: 4px;
                overflow: hidden;
                filter: grayscale(100%) contrast(1.08);
                box-shadow: 0 24px 80px rgba(0, 0, 0, .8), 0 0 0 1px rgba(201, 255, 87, .1);
            }

            .arc-img-box img {
                width: 100%;
                height: auto;
                display: block;
            }

            /* Neon green overlay gradient */
            .arc-img-box::after {
                content: '';
                position: absolute;
                inset: 0;
                background:
                    linear-gradient(to top, rgba(201, 255, 87, .12) 0%, transparent 50%),
                    linear-gradient(135deg, rgba(201, 255, 87, .06) 0%, transparent 60%);
                mix-blend-mode: screen;
                pointer-events: none;
            }

            /* Scan line overlay */
            .arc-img-box::before {
                content: '';
                position: absolute;
                inset: 0;
                background: repeating-linear-gradient(0deg,
                        transparent,
                        transparent 3px,
                        rgba(0, 0, 0, .06) 3px,
                        rgba(0, 0, 0, .06) 4px);
                pointer-events: none;
                z-index: 2;
            }

            /* Floating UI chips around the image */
            .arc-chip {
                position: absolute;
                font-family: var(--FM);
                font-size: 8px;
                font-weight: 700;
                letter-spacing: .18em;
                text-transform: uppercase;
                background: rgba(8, 11, 15, .92);
                border: 1px solid rgba(201, 255, 87, .25);
                color: var(--acid);
                padding: 6px 12px;
                border-radius: 4px;
                backdrop-filter: blur(8px);
                z-index: 5;
                white-space: nowrap;
            }

            .arc-chip-1 {
                top: 18%;
                right: -48px;
            }

            .arc-chip-2 {
                bottom: 22%;
                right: -52px;
            }

            .arc-chip-3 {
                bottom: 8%;
                left: 14px;
            }

            /* Glowing dot accent */
            .arc-glow-dot {
                position: absolute;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: var(--acid);
                box-shadow: 0 0 12px 4px rgba(201, 255, 87, .5);
                z-index: 5;
            }

            .arc-glow-dot-1 {
                top: -4px;
                right: 30%;
            }

            .arc-glow-dot-2 {
                bottom: -4px;
                left: 20%;
            }

            /* Thin horizontal rule next to image */
            .arc-rule {
                width: 48px;
                height: 2px;
                background: linear-gradient(90deg, var(--acid), transparent);
                margin-top: 20px;
            }

            /* ── TEXT SIDE ── */
            .arc-text-col {
                display: flex;
                flex-direction: column;
                gap: 24px;
            }

            .arc-eyebrow {
                display: flex;
                align-items: center;
                gap: 12px;
                font-family: var(--FM);
                font-size: 9px;
                letter-spacing: .22em;
                text-transform: uppercase;
                color: var(--acid);
            }

            .arc-eyebrow::before {
                content: '';
                display: block;
                width: 40px;
                height: 1px;
                background: var(--acid);
                flex-shrink: 0;
            }

            .arc-h2 {
                font-family: var(--FS);
                font-size: clamp(26px, 3.2vw, 44px);
                font-weight: 800;
                color: var(--cream);
                line-height: 1.15;
                letter-spacing: -.5px;
                margin: 0;
            }

            .arc-h2 em {
                font-style: normal;
                color: var(--acid);
            }

            .arc-sub {
                font-size: 15px;
                font-weight: 600;
                color: rgba(246, 243, 238, .7);
                line-height: 1.5;
                border-left: 2px solid var(--acid);
                padding-left: 16px;
                margin: 0;
            }

            .arc-body {
                font-size: 14px;
                color: rgba(246, 243, 238, .5);
                line-height: 1.75;
                margin: 0;
            }

            .arc-body strong {
                color: rgba(246, 243, 238, .85);
                font-weight: 600;
            }

            /* Bullet list */
            .arc-bullets {
                display: flex;
                flex-direction: column;
                gap: 8px;
                padding: 0;
                margin: 0;
                list-style: none;
            }

            .arc-bullets li {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 13.5px;
                color: rgba(246, 243, 238, .65);
            }

            .arc-bullets li::before {
                content: '';
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--acid);
                flex-shrink: 0;
                box-shadow: 0 0 8px rgba(201, 255, 87, .6);
            }

            /* Highlight trait pills */
            .arc-traits {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .arc-trait {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 12px 16px;
                border-radius: 8px;
                background: rgba(201, 255, 87, .04);
                border: 1px solid rgba(201, 255, 87, .1);
                font-size: 12px;
                font-weight: 600;
                color: rgba(246, 243, 238, .7);
                transition: all .3s;
            }

            .arc-trait:hover {
                background: rgba(201, 255, 87, .08);
                border-color: rgba(201, 255, 87, .22);
                color: var(--cream);
            }

            .arc-trait i {
                font-size: 18px;
                color: var(--acid);
                flex-shrink: 0;
            }

            /* Closing line */
            .arc-closing {
                font-family: var(--FM);
                font-size: 11px;
                letter-spacing: .16em;
                text-transform: uppercase;
                color: rgba(201, 255, 87, .5);
                border-top: 1px solid rgba(201, 255, 87, .1);
                padding-top: 20px;
            }

            .arc-closing em {
                font-style: normal;
                color: var(--acid);
            }

            /* ── RESPONSIVE ── */
            @media (max-width: 900px) {
                #architect {
                    padding: 60px 24px;
                }

                .arc-inner {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }

                .arc-chip-1,
                .arc-chip-2 {
                    display: none;
                }

                .arc-chip-3 {
                    position: static;
                    display: inline-flex;
                    margin-top: 12px;
                }

                .arc-ghost-num {
                    font-size: 80px;
                }

                .arc-traits {
                    grid-template-columns: 1fr 1fr;
                }
            }

            @media (max-width: 480px) {
                #architect {
                    padding: 44px 16px;
                }

                .arc-traits {
                    grid-template-columns: 1fr 1fr;
                }

                .arc-h2 {
                    font-size: 24px;
                }
            }
        

            #strategy {
                padding: 100px 52px;
                border-bottom: 1px solid var(--border);
                position: relative;
                overflow: hidden;
                background: linear-gradient(160deg, #0b0c10 0%, #0d1117 60%, #070a0d 100%);
            }

            /* Grid bg */
            #strategy::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(rgba(201, 255, 87, .018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201, 255, 87, .018) 1px, transparent 1px);
                background-size: 50px 50px;
                pointer-events: none;
            }

            /* Radial acid glow bottom-left */
            #strategy::after {
                content: '';
                position: absolute;
                bottom: -120px;
                left: -80px;
                width: 500px;
                height: 500px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(201, 255, 87, .055) 0%, transparent 70%);
                pointer-events: none;
            }

            /* Inner grid: 55% image | 45% text */
            .str-inner {
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 64px;
                align-items: center;
                max-width: 1400px;
                margin: 0 auto;
                position: relative;
                z-index: 1;
            }

            /* Desktop: Text LEFT, Image RIGHT */
            .str-text-col {
                order: 1;
            }

            .str-img-col {
                order: 2;
                max-width: 560px;
            }

            /* ── IMAGE SIDE ── */
            .str-img-col {
                position: relative;
            }

            /* Ghost "02" */
            .str-ghost {
                position: absolute;
                top: -40px;
                left: -16px;
                font-family: var(--FS);
                font-size: 160px;
                font-weight: 900;
                color: rgba(201, 255, 87, .035);
                line-height: 1;
                pointer-events: none;
                z-index: 0;
                letter-spacing: -8px;
            }

            /* Top chip row */
            .str-chips-top {
                display: flex;
                gap: 8px;
                margin-bottom: 12px;
                flex-wrap: wrap;
                position: relative;
                z-index: 2;
            }

            /* Bottom chip row */
            .str-chips-bot {
                display: flex;
                gap: 8px;
                margin-top: 12px;
                flex-wrap: wrap;
                position: relative;
                z-index: 2;
            }

            /* Individual chip */
            .str-chip {
                font-family: var(--FM);
                font-size: 8px;
                font-weight: 700;
                letter-spacing: .18em;
                text-transform: uppercase;
                color: var(--acid);
                background: rgba(201, 255, 87, .06);
                border: 1px solid rgba(201, 255, 87, .2);
                padding: 5px 11px;
                border-radius: 4px;
                display: flex;
                align-items: center;
                gap: 5px;
            }

            /* Image box */
            .str-img-box {
                position: relative;
                z-index: 1;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 40px 80px rgba(0, 0, 0, .65), 0 0 0 1px rgba(201, 255, 87, .1);
            }

            .str-img-box img {
                width: 100%;
                height: auto;
                display: block;
            }

            /* Neon green bottom-fade */
            .str-img-box::after {
                content: '';
                position: absolute;
                inset: 0;
                background:
                    linear-gradient(to top, rgba(201, 255, 87, .1) 0%, transparent 45%),
                    linear-gradient(to right, rgba(201, 255, 87, .05) 0%, transparent 50%);
                mix-blend-mode: screen;
                pointer-events: none;
            }

            /* Scan-lines */
            .str-img-box::before {
                content: '';
                position: absolute;
                inset: 0;
                background: repeating-linear-gradient(0deg, transparent, transparent 3px,
                        rgba(0, 0, 0, .05) 3px, rgba(0, 0, 0, .05) 4px);
                pointer-events: none;
                z-index: 2;
            }

            /* Corner brackets on image */
            .str-frame {
                position: relative;
                z-index: 1;
            }

            .str-frame::before,
            .str-frame::after {
                content: '';
                position: absolute;
                width: 24px;
                height: 24px;
                z-index: 4;
            }

            .str-frame::before {
                top: -5px;
                left: -5px;
                border-top: 2px solid var(--acid);
                border-left: 2px solid var(--acid);
            }

            .str-frame::after {
                bottom: -5px;
                right: -5px;
                border-bottom: 2px solid var(--acid);
                border-right: 2px solid var(--acid);
            }

            /* Stats row */
            .str-stats {
                display: flex;
                gap: 12px;
                margin-top: 16px;
                position: relative;
                z-index: 2;
            }

            .str-stat {
                flex: 1;
                background: rgba(201, 255, 87, .05);
                border: 1px solid rgba(201, 255, 87, .14);
                border-radius: 8px;
                padding: 12px 14px;
                text-align: center;
            }

            .str-stat-val {
                font-family: var(--FS);
                font-size: 20px;
                font-weight: 800;
                color: var(--acid);
                display: block;
                line-height: 1;
            }

            .str-stat-lbl {
                font-family: var(--FM);
                font-size: 7.5px;
                letter-spacing: .14em;
                text-transform: uppercase;
                color: rgba(246, 243, 238, .4);
                margin-top: 5px;
                display: block;
            }

            /* ── TEXT SIDE ── */
            .str-text-col {
                display: flex;
                flex-direction: column;
                gap: 22px;
                position: relative;
            }

            /* Vertical accent line */
            .str-vline {
                position: absolute;
                left: -32px;
                top: 0;
                width: 2px;
                height: 80px;
                background: linear-gradient(to bottom, var(--acid), transparent);
            }

            .str-eyebrow {
                display: flex;
                align-items: center;
                gap: 12px;
                font-family: var(--FM);
                font-size: 9px;
                letter-spacing: .22em;
                text-transform: uppercase;
                color: var(--acid);
            }

            .str-eyebrow::before {
                content: '';
                width: 36px;
                height: 1px;
                background: var(--acid);
                flex-shrink: 0;
            }

            .str-h2 {
                font-family: var(--FS);
                font-size: clamp(26px, 3vw, 42px);
                font-weight: 800;
                color: var(--cream);
                line-height: 1.15;
                letter-spacing: -.5px;
                margin: 0;
            }

            .str-h2 em {
                font-style: normal;
                color: var(--acid);
            }

            .str-sub {
                font-size: 14.5px;
                font-weight: 600;
                color: rgba(246, 243, 238, .65);
                line-height: 1.5;
                border-left: 2px solid rgba(201, 255, 87, .4);
                padding-left: 16px;
                margin: 0;
            }

            .str-body {
                font-size: 13.5px;
                color: rgba(246, 243, 238, .48);
                line-height: 1.8;
                margin: 0;
            }

            .str-body strong {
                color: rgba(246, 243, 238, .82);
                font-weight: 600;
            }

            /* 3 bullet points */
            .str-bullets {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .str-bullets li {
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 13px;
                font-weight: 600;
                color: rgba(246, 243, 238, .7);
            }

            .str-bullets li i {
                font-size: 18px;
                color: var(--acid);
                flex-shrink: 0;
            }

            /* CTA link */
            .str-cta {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                font-family: var(--FM);
                font-size: 10px;
                font-weight: 700;
                letter-spacing: .18em;
                text-transform: uppercase;
                color: var(--acid);
                border-bottom: 1px solid rgba(201, 255, 87, .3);
                padding-bottom: 2px;
                text-decoration: none;
                transition: all .25s;
                width: fit-content;
            }

            .str-cta:hover {
                color: var(--cream);
                border-color: var(--cream);
            }

            /* ── RESPONSIVE ── */
            @media (max-width: 900px) {
                #strategy {
                    padding: 60px 24px;
                }

                .str-inner {
                    grid-template-columns: 1fr;
                    gap: 36px;
                }

                /* Reset order on mobile: image top, text bottom */
                .str-img-col {
                    order: 1;
                }

                .str-text-col {
                    order: 2;
                }

                .str-vline {
                    display: none;
                }

                .str-stats {
                    gap: 8px;
                }

                .str-ghost {
                    font-size: 90px;
                }
            }

            @media (max-width: 480px) {
                #strategy {
                    padding: 44px 16px;
                }

                .str-h2 {
                    font-size: 24px;
                }

                .str-stats {
                    flex-wrap: nowrap;
                    gap: 6px;
                }

                .str-stat {
                    min-width: 0;
                    padding: 10px 8px;
                }

                .str-stat-val {
                    font-size: 16px;
                }

                .str-stat-lbl {
                    font-size: 6px;
                    letter-spacing: .08em;
                }
            }
        

            #mindset {
                padding: 100px 52px;
                border-bottom: 1px solid var(--border);
                position: relative;
                overflow: hidden;
                background: #0d1117;
            }

            /* Abstract bg shapes for Mindset */
            #mindset::before {
                content: '';
                position: absolute;
                top: -150px;
                right: -150px;
                width: 600px;
                height: 600px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(201, 255, 87, .03) 0%, transparent 70%);
                pointer-events: none;
            }

            .mnd-inner {
                display: grid;
                grid-template-columns: 1fr 1.1fr;
                gap: 72px;
                align-items: center;
                max-width: 1400px;
                margin: 0 auto;
                position: relative;
                z-index: 1;
            }

            /* ── IMAGE SIDE (LEFT) ── */
            .mnd-img-col {
                position: relative;
                max-width: 560px;
            }

            /* Ghost "03" */
            .mnd-ghost {
                position: absolute;
                top: -60px;
                right: -20px;
                font-family: var(--FS);
                font-size: 180px;
                font-weight: 900;
                color: rgba(246, 243, 238, .02);
                line-height: 1;
                pointer-events: none;
                z-index: 0;
                letter-spacing: -8px;
            }

            .mnd-img-box {
                position: relative;
                z-index: 1;
                border-radius: 0;
                padding: 12px;
                background: rgba(246, 243, 238, .02);
                border: 1px solid rgba(246, 243, 238, .08);
            }

            .mnd-img-box img {
                width: 100%;
                height: auto;
                display: block;
                filter: grayscale(80%) contrast(1.1);
                transition: filter .5s;
            }

            .mnd-img-box:hover img {
                filter: grayscale(0%) contrast(1);
            }

            /* Cyber corner accents */
            .mnd-img-box::before,
            .mnd-img-box::after {
                content: '';
                position: absolute;
                width: 30px;
                height: 30px;
                z-index: 2;
                border: 1px solid rgba(201, 255, 87, .5);
                transition: width .3s, height .3s;
            }

            .mnd-img-box::before {
                top: -4px;
                left: -4px;
                border-right: none;
                border-bottom: none;
            }

            .mnd-img-box::after {
                bottom: -4px;
                right: -4px;
                border-left: none;
                border-top: none;
            }

            .mnd-img-box:hover::before,
            .mnd-img-box:hover::after {
                width: 100%;
                height: 100%;
                border-color: rgba(201, 255, 87, .2);
                border-radius: 2px;
            }

            /* ── TEXT SIDE (RIGHT) ── */
            .mnd-text-col {
                display: flex;
                flex-direction: column;
                gap: 24px;
                position: relative;
            }

            .mnd-eyebrow {
                display: flex;
                align-items: center;
                gap: 12px;
                font-family: var(--FM);
                font-size: 9px;
                letter-spacing: .22em;
                text-transform: uppercase;
                color: rgba(246, 243, 238, .5);
            }

            .mnd-eyebrow::before {
                content: '';
                width: 4px;
                height: 4px;
                background: var(--acid);
                border-radius: 50%;
            }

            .mnd-h2 {
                font-family: var(--FS);
                font-size: clamp(28px, 3.5vw, 46px);
                font-weight: 800;
                color: var(--paper);
                line-height: 1.15;
                letter-spacing: -.5px;
                margin: 0;
            }

            .mnd-h2 em {
                font-family: var(--FD);
                font-style: italic;
                color: var(--acid);
                font-weight: 400;
                display: block;
                margin-top: 4px;
            }

            .mnd-body {
                font-size: 14px;
                color: rgba(246, 243, 238, .55);
                line-height: 1.8;
                margin: 0;
            }

            .mnd-body strong {
                color: var(--cream);
                font-weight: 600;
            }

            /* Soft Skills Grid */
            .mnd-skills {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                margin-top: 10px;
                padding-top: 24px;
                border-top: 1px solid rgba(246, 243, 238, .08);
            }

            .mnd-skill {
                display: flex;
                align-items: center;
                gap: 10px;
                font-family: var(--FM);
                font-size: 11.5px;
                font-weight: 600;
                color: rgba(246, 243, 238, .8);
                padding: 10px 0;
                transition: color .3s;
            }

            .mnd-skill i {
                font-size: 16px;
                color: var(--acid);
                opacity: 0.8;
                background: rgba(201, 255, 87, .08);
                padding: 6px;
                border-radius: 4px;
            }

            .mnd-skill:hover {
                color: var(--acid);
            }

            /* ── RESPONSIVE ── */
            @media (max-width: 900px) {
                #mindset {
                    padding: 60px 24px;
                }

                .mnd-inner {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }

                .mnd-ghost {
                    top: auto;
                    bottom: -20px;
                    left: -10px;
                    right: auto;
                    font-size: 120px;
                }
            }

            @media (max-width: 480px) {
                #mindset {
                    padding: 44px 16px;
                }

                .mnd-h2 {
                    font-size: 26px;
                }

                .mnd-skills {
                    grid-template-columns: 1fr;
                    gap: 4px;
                }
            }
        