*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --cyan: #00f5ff;
            --purple: #a855f7;
            --pink: #ec4899;
            --bg: #030507;
            --card-bg: rgba(255,255,255,0.03);
            --border: rgba(255,255,255,0.08);
            --text: #e2e8f0;
            --muted: #64748b;
        }

        html { 
            scroll-behavior: smooth; 
            scroll-padding-top: 95px; 
            overflow-x: hidden; 
        }

        section, [id] {
            scroll-margin-top: 95px;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            /* cursor: default; */
            position: relative;
            width: 100%;
        }

        /* Ambient background glow elements */
        .ambient-glow {
            position: fixed;
            border-radius: 50%;
            filter: blur(140px);
            pointer-events: none;
            z-index: 1;
            opacity: 0.14;
            will-change: transform, background;
        }
        .glow-1 {
            top: -10%; left: -10%;
            width: min(600px, 80vw);
            height: min(600px, 80vw);
            background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
        }
        .glow-2 {
            bottom: 10%; right: -10%;
            width: min(700px, 90vw);
            height: min(700px, 90vw);
            background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
        }

        /* ── CANVAS BACKGROUND ── */
        #particle-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* ── NOISE OVERLAY ── */
        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='1'/%3E%3C/svg%3E");
            opacity: 0.02;
            pointer-events: none;
            z-index: 1;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 20px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(3,5,7,0.7);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo {
            height: 44px;
            width: auto;
            object-fit: contain;
            filter: brightness(1.1);
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--muted);
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--cyan);
        }

        .nav-cta {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 10px 28px;
            border-radius: 100px;
            background: transparent;
            border: 1px solid var(--cyan);
            color: var(--cyan);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        .nav-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--cyan);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nav-cta:hover { color: black; }
        .nav-cta:hover::before { transform: scaleX(1); transform-origin: left; }
        .nav-cta span { position: relative; z-index: 1; }

        /* ── HERO SECTION ── */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            padding: 120px 48px 80px;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            position: relative;
        }

        /* EYEBROW PILL */
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 100px;
            border: 1px solid rgba(168, 85, 247, 0.4);
            background: rgba(168, 85, 247, 0.08);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--purple);
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
        }
        .eyebrow-dot {
            width: 6px; height: 6px;
            background: var(--purple);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.5); }
            50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(168, 85, 247, 0); }
        }

        /* MEGA HEADLINE */
        .hero-headline {
            font-family: 'Syne', sans-serif;
            font-size: clamp(52px, 9vw, 128px);
            font-weight: 800;
            line-height: 0.92;
            letter-spacing: -0.03em;
            margin-bottom: 36px;
            position: relative;
        }

        .word-line { display: block; overflow: hidden; }
        .word-inner { display: block; }

        .text-outline {
            -webkit-text-stroke: 2px var(--cyan);
            color: transparent;
        }

        .text-gradient-hero {
            background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--pink) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* 3D TILT TEXT EFFECT */
        .hero-headline {
            transform-style: preserve-3d;
            perspective: 800px;
        }

        /* FLOATING BADGE NUMBERS */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 48px;
            opacity: 0;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.72rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 6px;
        }

        /* HERO SUBTITLE */
        .hero-sub {
            font-size: clamp(1rem, 1.6vw, 1.25rem);
            font-weight: 300;
            color: var(--muted);
            max-width: 560px;
            margin: 0 auto 52px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
        }

        /* HERO BUTTONS */
        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
        }

        .btn-primary {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 16px 40px;
            border-radius: 100px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            color: white;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 0 40px rgba(0, 245, 255, 0.2);
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .btn-primary span { position: relative; z-index: 1; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,245,255,0.35); }
        .btn-primary:hover::before { opacity: 1; }

        .btn-ghost {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 15px 40px;
            border-radius: 100px;
            border: 1px solid var(--border);
            color: var(--text);
            transition: border-color 0.3s, background 0.3s, transform 0.3s;
        }
        .btn-ghost:hover {
            border-color: rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.05);
            transform: translateY(-3px);
        }

        /* SCROLL INDICATOR */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
        }
        .scroll-text {
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .scroll-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, var(--cyan), transparent);
            animation: scroll-drop 2s ease-in-out infinite;
        }
        @keyframes scroll-drop {
            0% { transform: scaleY(0); transform-origin: top; }
            50% { transform: scaleY(1); transform-origin: top; }
            51% { transform: scaleY(1); transform-origin: bottom; }
            100% { transform: scaleY(0); transform-origin: bottom; }
        }

        /* ── MARQUEE STRIP ── */
        .marquee-section {
            position: relative;
            z-index: 2;
            padding: 24px 0;
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: rgba(255,255,255,0.015);
        }
        .marquee-track {
            display: flex;
            gap: 0;
            animation: marquee-scroll 20s linear infinite;
            width: max-content;
        }
        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 20px;
            padding: 0 40px;
            font-family: 'Syne', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            white-space: nowrap;
        }
        .marquee-item i { color: var(--cyan); font-size: 0.5rem; }
        @keyframes marquee-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ── SERVICES SECTION ── */
        #services {
            position: relative;
            z-index: 2;
            padding: 120px 48px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--cyan);
            margin-bottom: 20px;
        }
        .section-label::before {
            content: '';
            width: 24px; height: 1px;
            background: var(--cyan);
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(36px, 5vw, 72px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.0;
            margin-bottom: 80px;
        }

        /* SERVICE CARDS GRID — BENTO STYLE */
        .services-bento {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: auto;
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1400px;
        }

        .s-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.4s, box-shadow 0.4s;
            cursor: pointer;
            transform-style: preserve-3d;
        }
        .s-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,245,255,0.07) 0%, transparent 65%);
            opacity: 0;
            transition: opacity 0.5s;
        }
        .s-card:hover::before { opacity: 1; }
        .s-card:hover {
            border-color: rgba(0,245,255,0.35);
            box-shadow: 0 20px 50px rgba(0,245,255,0.08);
        }

        .s-card-1 { grid-column: 1 / 6; }
        .s-card-2 { grid-column: 6 / 9; }
        .s-card-3 { grid-column: 9 / 13; }
        .s-card-4 { grid-column: 1 / 5; }
        .s-card-5 { grid-column: 5 / 9; }
        .s-card-6 { grid-column: 9 / 13; }
        .s-card-7 { grid-column: 1 / 5; }
        .s-card-8 { grid-column: 5 / 13; }

        .s-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(168,85,247,0.1));
            border: 1px solid rgba(0,245,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 24px;
            transition: transform 0.3s;
        }
        .s-card:hover .s-icon { transform: rotate(-6deg) scale(1.1); }

        .s-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .s-desc {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.7;
        }

        .s-arrow {
            position: absolute;
            bottom: 28px;
            right: 28px;
            width: 36px; height: 36px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--muted);
            transition: all 0.3s;
        }
        .s-card:hover .s-arrow {
            background: var(--cyan);
            border-color: var(--cyan);
            color: black;
            transform: rotate(45deg);
        }

        /* BIG CARD STYLE */
        .s-card-big {
            padding: 48px;
            display: flex;
            flex-direction: column;
        }
        .s-bg-number {
            position: absolute;
            right: 30px;
            top: 20px;
            font-family: 'Syne', sans-serif;
            font-size: 5rem;
            font-weight: 800;
            color: rgba(255,255,255,0.03);
            pointer-events: none;
            line-height: 1;
        }

        /* ── CLIENTS SECTION ── */
        #clients {
            position: relative;
            z-index: 2;
            padding: 100px 48px;
            background: linear-gradient(to bottom, transparent, rgba(168,85,247,0.04), transparent);
        }

        .clients-header {
            max-width: 1200px;
            margin: 0 auto 64px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .client-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .client-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(168,85,247,0.06), rgba(0,245,255,0.03));
            opacity: 0;
            transition: opacity 0.4s;
        }
        .client-card:hover::after { opacity: 1; }
        .client-card:hover {
            border-color: rgba(168,85,247,0.4);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(168,85,247,0.1);
        }
        .client-logo-wrap {
            width: 100%;
            background: white;
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 90px;
        }
        .client-logo-wrap img {
            max-height: 60px;
            max-width: 100%;
            object-fit: contain;
        }
        .client-name-tag {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
            transition: color 0.3s;
        }
        .client-card:hover .client-name-tag { color: var(--purple); }

        /* ── WORK SECTION — COMPACT MODERN SHOWCASE ── */
        #work {
            position: relative;
            z-index: 2;
            padding: 65px 5% 75px;
        }

        .work-mosaic {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 32px auto 0;
        }

        .w-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(13, 17, 23, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }

        .w-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 245, 255, 0.35);
            background: rgba(18, 24, 34, 0.85);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 245, 255, 0.1);
        }

        /* Top visual preview box */
        .w-thumb-box {
            height: 150px;
            width: 100%;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, rgba(3, 5, 7, 0.85) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 16px;
        }

        .w-thumb-box img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            transition: transform 0.4s ease, filter 0.4s ease;
            filter: brightness(0.95);
        }

        .w-thumb-box img.cover-fit {
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
        }

        .w-card:hover .w-thumb-box img {
            transform: scale(1.06);
            filter: brightness(1.1);
        }

        /* Card Content */
        .w-info {
            padding: 18px 20px 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .w-tag-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .w-tag {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .w-num-pill {
            font-size: 0.65rem;
            font-family: monospace;
            color: rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.05);
            padding: 2px 6px;
            border-radius: 4px;
        }

        .w-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.22rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }

        .w-desc {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.5;
            margin-bottom: 16px;
            flex-grow: 1;
        }

        .w-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.76rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: gap 0.25s ease;
            margin-top: auto;
        }

        .w-card:hover .w-link-btn {
            gap: 9px;
        }
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: all 0.3s;
            z-index: 5;
            white-space: nowrap;
        }
        .w-card:hover .w-interact {
            opacity: 1;
        }
        .w-interact.hidden { display: none; }

        .w-tag {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 6px;
            opacity: 0.85;
        }
        .w-name {
            font-family: 'Syne', sans-serif;
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 8px;
        }
        .w-desc {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.6;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .w-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--cyan);
            opacity: 0;
            transform: translateY(6px);
            transition: opacity 0.3s, transform 0.3s;
        }
        .w-card:hover .w-link {
            opacity: 1;
            transform: translateY(0);
        }
        .w-link:hover { text-decoration: underline; }

        /* Number badge */
        .w-num {
            position: absolute;
            top: 20px;
            left: 24px;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.2em;
            color: rgba(255,255,255,0.3);
            z-index: 4;
            background: rgba(0,0,0,0.4);
            padding: 4px 10px;
            border-radius: 100px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* ── CONTACT SECTION ── */
        #contact {
            position: relative;
            z-index: 2;
            padding: 120px 48px;
            text-align: center;
            overflow: hidden;
        }

        .contact-glow {
            position: absolute;
            top: 50%; left: 50%;
            width: 800px; height: 800px;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 65%);
            pointer-events: none;
        }

        .contact-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

        .contact-mega {
            font-family: 'Syne', sans-serif;
            font-size: clamp(48px, 8vw, 100px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 0.95;
            margin-bottom: 32px;
        }

        .contact-sub {
            font-size: 1.1rem;
            color: var(--muted);
            margin-bottom: 56px;
            line-height: 1.7;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            max-width: 520px;
            margin: 0 auto 60px;
        }

        .contact-chip {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 24px;
            border: 1px solid var(--border);
            border-radius: 16px;
            text-decoration: none;
            color: var(--text);
            background: var(--card-bg);
            transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
            font-size: 0.88rem;
        }
        .contact-chip i { font-size: 1.1rem; }
        .contact-chip:hover {
            border-color: rgba(0,245,255,0.4);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,245,255,0.08);
        }

        /* ── FOOTER ── */
        footer {
            position: relative;
            z-index: 2;
            padding: 40px 48px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 32px;
        }
        .footer-links a {
            font-size: 0.78rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--muted);
            text-decoration: none;
        }
        
        /* ── 3D ROLL-LINK TEXT EFFECT ── */
        .roll-link {
            display: inline-block;
            overflow: hidden;
            position: relative;
            vertical-align: middle;
            perspective: 80px;
        }
        .roll-wrapper {
            display: block;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
            transform-origin: 50% 50% -9px;
        }
        .roll-original {
            display: block;
            transform-origin: 50% 50% -9px;
            color: var(--muted);
            transition: color 0.4s;
        }
        .roll-hover {
            display: block;
            position: absolute;
            left: 0; top: 100%;
            width: 100%;
            transform-origin: 50% 50% -9px;
            transform: rotateX(-90deg);
            color: var(--cyan) !important;
            white-space: nowrap;
        }
        .roll-link:hover .roll-wrapper {
            transform: rotateX(90deg);
        }
        .roll-link:hover .roll-original {
            color: var(--cyan);
        }
        .footer-copy {
            font-size: 0.75rem;
            color: var(--muted);
        }

        /* ── ANIMATIONS UTILS ── */
        .reveal-up {
            opacity: 0;
            transform: translateY(40px);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
        }

        /* ── MOBILE NAV TOGGLE ── */
        .nav-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            z-index: 1100;
        }
        .nav-mobile-toggle span {
            width: 24px; height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s;
        }
        .nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ── MOBILE NAV DRAWER ── */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(3,5,7,0.7);
            z-index: 1050;
            backdrop-filter: blur(4px);
        }
        .mobile-nav-overlay.open { display: block; }

        .mobile-nav-drawer {
            position: fixed;
            top: 0; right: -100%;
            width: min(320px, 85vw);
            height: 100vh;
            background: #0a0b10;
            border-left: 1px solid var(--border);
            z-index: 1060;
            padding: 90px 32px 48px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
        }
        .mobile-nav-drawer.open { right: 0; }

        .mobile-nav-drawer a {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--muted);
            text-decoration: none;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            transition: color 0.3s;
            display: block;
        }
        .mobile-nav-drawer a:hover { color: var(--cyan); }
        .mobile-nav-drawer .mob-cta {
            margin-top: 32px;
            padding: 16px 32px;
            border-radius: 100px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            color: white;
            text-align: center;
            font-weight: 700;
            border: none;
            font-size: 0.9rem;
        }

        /* ── RESPONSIVE ── */

        /* Tablet: 768px – 1100px */
        @media (max-width: 1100px) {
            nav { padding: 18px 32px; }
            #hero { padding: 110px 32px 80px; }
            #services { padding: 100px 32px; }
            #clients { padding: 80px 32px; }
            #about { padding: 100px 32px !important; }
            #work { padding: 100px 32px; }
            #contact { padding: 100px 32px; }
            footer { padding: 36px 32px; }
            .services-bento { grid-template-columns: repeat(6, 1fr); }
            .s-card-1 { grid-column: 1 / 7; }
            .s-card-2 { grid-column: 1 / 4; }
            .s-card-3 { grid-column: 4 / 7; }
            .s-card-4 { grid-column: 1 / 4; }
            .s-card-5 { grid-column: 4 / 7; }
            .s-card-6 { grid-column: 1 / 4; }
            .s-card-7 { grid-column: 4 / 7; }
            .s-card-8 { grid-column: 1 / 7; flex-direction: column !important; gap: 20px !important; }
            .clients-grid { grid-template-columns: repeat(4, 1fr); }
            #about > div { grid-template-columns: 1fr 1fr !important; gap: 48px !important; }
        }

        /* Mobile: up to 768px */
        @media (max-width: 768px) {
            /* NAV */
            nav { padding: 14px 20px; }
            .nav-links { display: none; }
            .nav-mobile-toggle { display: flex; }
            .nav-cta { display: none; }

            /* HERO */
            #hero { padding: 100px 20px 80px; min-height: 100svh; }
            .hero-headline { font-size: clamp(34px, 10vw, 52px) !important; line-height: 1.15 !important; }
            .hero-sub { font-size: 0.95rem; max-width: 100%; }
            .hero-stats {
                flex-wrap: wrap;
                gap: 24px;
                justify-content: center;
            }
            .stat-item { min-width: 80px; }
            .stat-number { font-size: 1.8rem; }
            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .btn-primary, .btn-ghost {
                width: 100%;
                max-width: 320px;
                text-align: center;
                justify-content: center;
                display: flex;
            }
            .scroll-indicator { display: none; }

            /* MARQUEE */
            .marquee-section { padding: 16px 0; }

            /* SERVICES */
            #services { padding: 72px 20px; }
            .section-title { font-size: clamp(28px, 8vw, 52px); margin-bottom: 48px; }
            .services-bento { grid-template-columns: 1fr; gap: 12px; }
            .s-card-1, .s-card-2, .s-card-3,
            .s-card-4, .s-card-5, .s-card-6,
            .s-card-7, .s-card-8 { grid-column: 1 / -1; }
            .s-card-8 { flex-direction: column !important; gap: 20px !important; }
            .s-card { padding: 28px 24px; }
            .s-card-big { padding: 28px 24px; }

            /* PHILOSOPHY */
            #about { padding: 72px 20px !important; }
            #about > div {
                grid-template-columns: 1fr !important;
                gap: 40px !important;
            }
            #about .section-title { font-size: clamp(26px, 7vw, 48px) !important; }
            #about > div > div:first-child > div:last-child {
                flex-direction: column;
                gap: 24px;
            }

            /* CLIENTS */
            #clients { padding: 72px 20px; }
            .clients-header { flex-direction: column; align-items: flex-start; gap: 16px; }
            .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .client-card { padding: 20px 16px; }
            .client-logo-wrap { min-height: 70px; }

            /* WORK */
            #work { padding: 50px 20px 65px; }
            .work-mosaic {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-top: 24px;
            }
            .w-link {
                margin-top: 4px !important;
            }
            .w-interact {
                display: none !important;
            }

            /* CONTACT */
            #contact { padding: 72px 20px; }
            .contact-mega { font-size: clamp(36px, 11vw, 72px); }
            .contact-cards { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
            .contact-chip { padding: 16px 20px; }
            .contact-sub { font-size: 0.95rem; }

            /* FOOTER */
            footer { flex-direction: column; gap: 20px; text-align: center; padding: 28px 20px; }
            .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
            .footer-copy { font-size: 0.7rem; }

            /* CURSOR */
            #cursor-dot, #cursor-ring, .cursor-goo-container { display: none !important; }
            body { cursor: auto !important; }
        }

        /* Very small phones: up to 420px */
        @media (max-width: 420px) {
            #hero { padding: 90px 16px 72px; }
            .hero-headline { font-size: clamp(28px, 9vw, 42px) !important; line-height: 1.15 !important; }
            .hero-stats { gap: 16px; }
            .stat-number { font-size: 1.5rem; }
            .clients-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .section-title { font-size: clamp(24px, 9vw, 40px); }
            .contact-mega { font-size: clamp(32px, 12vw, 56px); }
            #services, #clients, #work, #contact, #about { padding-left: 16px !important; padding-right: 16px !important; }
            .s-card { padding: 22px 18px; }
        }

        /* ── GLITCH EFFECT on 3D text ── */
        @keyframes glitch1 {
            0%, 90%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
            20% { clip-path: inset(20% 0 60% 0); transform: translate(-4px, 2px); }
            40% { clip-path: inset(50% 0 30% 0); transform: translate(4px, -2px); }
            60% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, 1px); }
        }
        @keyframes glitch2 {
            0%, 90%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
            20% { clip-path: inset(70% 0 10% 0); transform: translate(4px, -2px); }
            40% { clip-path: inset(30% 0 50% 0); transform: translate(-4px, 2px); }
            60% { clip-path: inset(5% 0 80% 0); transform: translate(2px, -1px); }
        }

        .glitch-wrap {
            position: relative;
            display: inline-block;
        }
        .glitch-wrap::before,
        .glitch-wrap::after {
            content: attr(data-text);
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            font-family: inherit;
            font-size: inherit;
            font-weight: inherit;
            letter-spacing: inherit;
            line-height: inherit;
        }
        .glitch-wrap::before {
            color: var(--cyan);
            animation: glitch1 6s steps(1) infinite;
            animation-delay: 2s;
        }
        .glitch-wrap::after {
            color: var(--pink);
            animation: glitch2 6s steps(1) infinite;
            animation-delay: 2.1s;
        }

    

/* ── EXTRACTED STYLES ── */


        .app-card:hover {
            border-color: rgba(255,255,255,0.2) !important;
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            background: rgba(255,255,255,0.015) !important;
        }
        .app-card:hover .app-glow {
            opacity: 1 !important;
        }
        .app-card:hover .app-img {
            transform: scale(1.05);
        }
        @media (max-width: 991px) {
            .apps-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
                padding: 0 20px;
            }
        }
        @media (max-width: 768px) {
            #apps {
                padding: 72px 20px 80px !important;
            }
            .apps-grid {
                padding: 0 !important;
                gap: 20px !important;
            }
        }
        @media (max-width: 576px) {
            .app-card {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                padding: 28px 24px !important;
                gap: 24px !important;
            }
            .app-card > div:first-child {
                width: 140px !important;
                height: 190px !important;
            }
            .app-card a {
                justify-content: center !important;
            }
        }
    

/* ── EXTRACTED STYLES ── */


        .ms-icon-wrap.ms-active { animation: msNodePulse 2s ease-in-out infinite; }
        @keyframes msNodePulse { 0%,100%{transform:scale(1);}50%{transform:scale(1.08);} }
        .ms-float-card.ms-card-visible { opacity:1!important; transform:translateY(0) scale(1)!important; }
        #pb-1.pb-active{background:rgba(0,245,255,0.9)!important;width:56px!important;}
        #pb-2.pb-active{background:rgba(168,85,247,0.9)!important;width:56px!important;}
        #pb-3.pb-active{background:rgba(34,197,94,0.9)!important;width:56px!important;}
        #pb-4.pb-active{background:rgba(236,72,153,0.9)!important;width:56px!important;}
        #pb-5.pb-active{background:rgba(251,191,36,0.9)!important;width:56px!important;}
        @media(max-width:768px){
            .timeline-track {
                left: 20px !important;
                transform: none !important;
            }
            #journey-progress-dot {
                left: 50% !important;
            }
            .timeline-row {
                flex-direction: column !important;
                align-items: flex-start !important;
                width: 100% !important;
                gap: 24px !important;
                padding-left: 45px !important;
                padding-right: 0 !important;
            }
            .timeline-row.reverse-row {
                flex-direction: column !important;
            }
            .timeline-col-text {
                width: 100% !important;
                text-align: left !important;
            }
            .timeline-row.reverse-row .timeline-col-text {
                text-align: left !important;
            }
            .timeline-col-card {
                width: 100% !important;
                justify-content: flex-start !important;
            }
            .timeline-row.reverse-row .timeline-col-card {
                justify-content: flex-start !important;
            }
            .ms-node-wrap {
                left: -22px !important;
                right: auto !important;
                top: 22px !important;
                transform: none !important;
            }
            .ms-float-card {
                max-width: 100% !important;
                width: 100% !important;
                opacity: 1 !important;
                transform: none !important;
            }
            .timeline-item.center-item {
                align-items: flex-start !important;
                padding-left: 45px !important;
                text-align: left !important;
            }
            .timeline-item.center-item .ms-node-wrap {
                left: -22px !important;
                right: auto !important;
                transform: none !important;
            }
            .timeline-item.center-item .timeline-content {
                align-items: flex-start !important;
                text-align: left !important;
                max-width: 100% !important;
                width: 100% !important;
            }
            .timeline-col-text p {
                margin-left: 0 !important;
                margin-right: auto !important;
                max-width: 100% !important;
            }
        }
    

/* ── EXTRACTED STYLES ── */


        .team-card:hover {
            border-color: rgba(255,255,255,0.2) !important;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            background: rgba(255,255,255,0.02) !important;
        }
        .team-card:hover .team-glow {
            opacity: 1 !important;
        }
        .team-card:hover .team-avatar {
            transform: scale(1.04);
            filter: grayscale(0%) !important;
        }
        @media (max-width: 991px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        @media (max-width: 767px) {
            .team-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }
            #team {
                padding: 80px 24px 60px !important;
            }
        }