/* home.css — extracted verbatim from the inline <style> blocks in pages/home.php
   (lines 109-2655 and 4075-4095). Pure CSS, no PHP interpolation. */

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

        /* ── TOKENS ────────────────────────────────────────────────────── */
        :root {
            --dark:          #0A0A0A;
            --dark-2:        #0D0D0D;
            --dark-3:        #111111;
            --light:         #FFFFFF;
            --amber:         #D97706;
            --amber-hover:   #B45309;
            --muted-dark:    #888888;
            --muted-light:   #666666;
            --border-dark:   rgba(255,255,255,0.08);
            --border-light:  rgba(0,0,0,0.10);
            --max-w:         1240px;
            --gutter:        2.5rem;
        }

        /* ── BASE ──────────────────────────────────────────────────────── */
        html {
            scroll-behavior: smooth;
            max-width: 100vw;
            overflow-x: hidden;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            line-height: 1.75;
            background: var(--dark);
            color: var(--light);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            max-width: 100vw;
            position: relative;
        }

        img { max-width: 100%; display: block; }

        /* ── LAYOUT ────────────────────────────────────────────────────── */
        .wrap {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 var(--gutter);
            width: 100%;
        }

        /* ── SECTION BACKGROUNDS ───────────────────────────────────────── */
        .section-dark   { background: var(--dark);   color: var(--light); }
        .section-dark-2 { background: var(--dark-2); color: var(--light); }
        .section-dark-3 { background: var(--dark-3); color: var(--light); }
        .section-light  { background: var(--light);  color: var(--dark);  }

        /* ── TYPOGRAPHY ────────────────────────────────────────────────── */
        h1, h2, h3, h4 {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.08;
        }

        .eyebrow {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }
        .section-dark .eyebrow,
        .section-dark-2 .eyebrow,
        .section-dark-3 .eyebrow { color: #666; }
        .section-light .eyebrow  { color: #888888; }

        /* Light-section button overrides: black bg, white text */
        .section-light .btn-dark {
            background: #0A0A0A;
            color: white;
        }
        .section-light .btn-dark:hover {
            background: #111;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        /* ── BUTTONS ───────────────────────────────────────────────────── */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.22s ease;
            white-space: nowrap;
        }

        .btn-amber {
            background: #D97706;
            color: #fff;
            padding: 0.9rem 1.85rem;
            border-radius: 2px;
        }
        .btn-amber:hover {
            background: #B45309;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(217,119,6,0.3);
        }

        .btn-glass {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 100px;
        }
        .btn-glass:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.5);
        }

        .btn-dark {
            background: white;
            color: #0A0A0A;
            padding: 0.75rem 2rem;
            border-radius: 100px;
        }
        .btn-dark:hover {
            background: #f0f0f0;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(255,255,255,0.15);
        }

        /* ── SCROLL ANIMATIONS ─────────────────────────────────────────── */
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-up.visible { opacity: 1; transform: translateY(0); }

        /* Per-section animation overrides (applied via data-section-anim) */
        [data-section-anim="fade-in"] .fade-up { transform: none; }
        [data-section-anim="fade-in"] .fade-up.visible { opacity: 1; transform: none; }
        [data-section-anim="slide-left"] .fade-up { transform: translateX(-32px); }
        [data-section-anim="slide-left"] .fade-up.visible { opacity: 1; transform: translateX(0); }
        [data-section-anim="slide-right"] .fade-up { transform: translateX(32px); }
        [data-section-anim="slide-right"] .fade-up.visible { opacity: 1; transform: translateX(0); }
        [data-section-anim="zoom-in"] .fade-up { transform: scale(0.94); }
        [data-section-anim="zoom-in"] .fade-up.visible { opacity: 1; transform: scale(1); }
        [data-section-anim="none"] .fade-up { opacity: 1; transform: none; transition: none; }

        /* ── NAV ───────────────────────────────────────────────────────── */

        @property --nav-hue {
            syntax: '<angle>';
            inherits: false;
            initial-value: 0deg;
        }
        @keyframes navDiffract { to { --nav-hue: 360deg; } }

        #nav {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 0;
            padding: 6px 6px 6px 20px;
            border-radius: 100px;
            width: max-content;
            max-width: calc(100vw - 32px);

            /* True liquid glass, translucent, lets background show through */
            background: rgba(255,255,255,0.09);
            backdrop-filter: blur(52px) saturate(200%) brightness(1.2);
            -webkit-backdrop-filter: blur(52px) saturate(200%) brightness(1.2);

            /* Specular shadow system */
            box-shadow:
                0 8px 40px rgba(0,0,0,0.4),
                0 2px 8px rgba(0,0,0,0.2),
                inset 0 1.5px 0 rgba(255,255,255,0.24),
                inset 0 -1px 0 rgba(0,0,0,0.12),
                0 0 0 0.5px rgba(255,255,255,0.12);

            /* Animated diffractive border, indigo/violet/white, no amber */
            --nav-hue: 0deg;
            animation: navDiffract 9s linear infinite;
            transition: transform 0.4s cubic-bezier(.22,1,.36,1),
                        box-shadow 0.35s ease,
                        background 0.3s ease;
        }

        /* Conic-gradient diffractive border via ::before mask trick */
        #nav::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            padding: 1px;
            background: conic-gradient(
                from var(--nav-hue),
                rgba(99,102,241,.85)    0%,
                rgba(139,92,246,.95)   14%,
                rgba(167,139,250,.65)  24%,
                rgba(255,255,255,.95)  29%,
                rgba(196,181,253,.55)  37%,
                rgba(99,102,241,.75)   50%,
                rgba(139,92,246,.85)   63%,
                rgba(255,255,255,.65)  70%,
                rgba(167,139,250,.75)  80%,
                rgba(99,102,241,.85)   92%,
                rgba(139,92,246,.95)  100%
            );
            -webkit-mask: linear-gradient(#fff 0 0) content-box,
                          linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: -1;
        }

        /* Over white/light section, swap to subtle neutral border */
        #nav.nav-light {
            background: rgba(0,0,0,0.05);
            backdrop-filter: blur(48px) saturate(160%) brightness(0.97);
            -webkit-backdrop-filter: blur(48px) saturate(160%) brightness(0.97);
            box-shadow:
                0 4px 24px rgba(0,0,0,0.1),
                0 1px 4px rgba(0,0,0,0.07),
                inset 0 1px 0 rgba(0,0,0,0.05),
                0 0 0 0.5px rgba(0,0,0,0.1);
            animation: none;
        }
        #nav.nav-light::before {
            background: rgba(0,0,0,0.14);
            animation: none;
        }
        #nav.nav-light .nav-item > a,
        #nav.nav-light .nav-item > button { color: rgba(0,0,0,0.6); }
        #nav.nav-light .nav-item > a:hover,
        #nav.nav-light .nav-item > button:hover { color: rgba(0,0,0,0.9); }
        #nav.nav-light .hamburger span { background: rgba(0,0,0,0.65); }

        /* Slide away on scroll-down (JS adds .nav-hidden on mobile only) */
        #nav.nav-hidden {
            transform: translateX(-50%) translateY(calc(-100% - 24px));
        }

        #nav.scrolled {
            box-shadow:
                0 16px 60px rgba(0,0,0,0.5),
                0 4px 16px rgba(0,0,0,0.3),
                inset 0 1.5px 0 rgba(255,255,255,0.22),
                inset 0 -1px 0 rgba(0,0,0,0.18),
                0 0 0 0.5px rgba(255,255,255,0.1);
        }

        .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #F9FAFB; }
        .logo-rect { fill: #ffffff; transition: fill 0.3s ease, stroke 0.3s ease; stroke: none; stroke-width: 2; }
        .logo-text { fill: #0A0A0A; transition: fill 0.3s ease; }
        .logo-wordmark { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; color: #ffffff; display: none; }
        .nav-scrolled .logo-rect { fill: #ffffff; stroke: none; }
        .nav-scrolled .logo-text { fill: #0A0A0A; }
        .nav-scrolled .logo-wordmark { color: #ffffff; }
        .nav-light .logo-rect { fill: #0A0A0A; }
        .nav-light .logo-text { fill: #ffffff; }
        .nav-light .logo-wordmark { color: #0A0A0A; }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
        }

        .nav-item { position: relative; }
        .nav-item > a,
        .nav-item > button {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.5rem 0.9rem;
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            font-family: 'DM Sans', sans-serif;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .nav-item > a:hover,
        .nav-item > button:hover { color: white; }
        .nav-item > button svg { transition: transform 0.2s; }
        .nav-item.open > button svg { transform: rotate(180deg); }

        .chevron-icon { width: 12px; height: 12px; opacity: 0.5; }

        .nav-right {
            display: flex;
            justify-content: flex-end;
        }
        .nav-pill {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1.25rem;
            border: none;
            border-radius: 100px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            background: linear-gradient(135deg, #92400E, #D97706, #F59E0B);
            font-family: 'DM Sans', sans-serif;
            transition: all 0.2s;
            box-shadow: 0 2px 12px rgba(217,119,6,.4);
            white-space: nowrap;
        }
        .nav-pill:hover {
            background: linear-gradient(135deg, #7c3209, #b45309, #d97706);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(217,119,6,.5);
        }

        /* Mega menu dropdown */
        .nav-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 1rem);
            left: 50%;
            transform: translateX(-50%);
            background: rgba(13,13,13,0.95);
            backdrop-filter: blur(24px) saturate(160%);
            -webkit-backdrop-filter: blur(24px) saturate(160%);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 4px;
            padding: 1.5rem;
            animation: slideDown 0.2s ease;
            z-index: 100;
            box-shadow: 0 24px 60px rgba(0,0,0,0.5);
        }
        .nav-item.open .nav-dropdown { display: block; }

        @keyframes slideDown {
            from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        .mega-menu { width: 1060px; }
        .mega-groups {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem 0;
        }
        .mega-group {
            padding: 0.25rem 1.25rem 0.25rem 0;
        }
        .mega-group + .mega-group {
            padding-left: 1.25rem;
            border-left: 1px solid rgba(255,255,255,0.07);
        }
        .mega-group-label {
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 0.65rem;
            display: block;
        }
        .mega-link {
            display: block;
            padding: 0.45rem 0.5rem;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.15s;
            margin: 0 -0.5rem;
        }
        .mega-link:hover { background: rgba(255,255,255,0.06); }
        .mega-link-name {
            display: block;
            font-family: 'Sora', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
        }
        .mega-link:hover .mega-link-name { color: white; }
        .mega-link-desc {
            display: block;
            font-size: 0.7rem;
            color: #555;
            margin-top: 0.1rem;
            line-height: 1.35;
        }
        .mega-link:hover .mega-link-desc { color: #777; }
        .mega-badge {
            display: inline-block;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: var(--amber);
            color: white;
            padding: 0.1rem 0.35rem;
            border-radius: 2px;
            margin-top: 0.2rem;
            width: fit-content;
        }

        /* Resources dropdown (small) */
        .small-menu {
            width: 220px;
            left: 0;
            transform: none;
            animation: slideDown2 0.2s ease;
        }
        @keyframes slideDown2 {
            from { opacity: 0; transform: translateY(-8px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .small-item {
            display: block;
            padding: 0.7rem 0.85rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            border-radius: 3px;
            transition: all 0.15s;
            font-family: 'DM Sans', sans-serif;
        }
        .small-item:hover {
            background: rgba(255,255,255,0.06);
            color: white;
        }
        .small-item-sub {
            font-size: 0.72rem;
            color: #555;
            margin-top: 0.15rem;
            display: block;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            margin-left: 4px;
        }
        .hamburger span {
            display: block;
            width: 22px;
            height: 1.5px;
            background: rgba(255,255,255,0.85);
            transition: all 0.3s cubic-bezier(.22,1,.36,1);
            transform-origin: center;
        }
        /* Hamburger → X morph */
        .hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

        /* ── Mobile nav overlay ── */
        .mob-overlay {
            display: none;
            position: fixed; inset: 0;
            background: rgba(0,0,0,.55);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 998;
            opacity: 0;
            transition: opacity .28s ease;
        }
        .mob-overlay.open { opacity: 1; }

        /* ── Mobile nav, slide-in drawer from right ── */
        .mobile-nav {
            display: block;
            position: fixed;
            top: 0; right: 0; bottom: 0;
            width: min(320px, 88vw);
            background: #0D0D0D;
            z-index: 999;
            transform: translateX(110%);
            transition: transform .35s cubic-bezier(.22,1,.36,1);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            border-left: 1px solid rgba(255,255,255,.07);
        }
        .mobile-nav.open { transform: translateX(0); }

        .mob-drawer-header {
            display: flex; align-items: center; justify-content: space-between;
            padding: 18px 22px;
            border-bottom: 1px solid rgba(255,255,255,.06);
        }
        .mob-drawer-logo {
            font-family: 'Sora', sans-serif;
            font-weight: 700; font-size: .9rem;
            letter-spacing: -.02em; color: #fff;
        }
        .mob-close-btn {
            background: none;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 8px; color: rgba(255,255,255,.45);
            width: 32px; height: 32px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: .9rem;
            transition: border-color .15s, color .15s;
            flex-shrink: 0;
        }
        .mob-close-btn:hover { border-color: rgba(255,255,255,.3); color: #fff; }

        .mob-section-label {
            display: block;
            padding: 14px 22px 5px;
            font-size: .6rem; font-weight: 700;
            letter-spacing: .13em; text-transform: uppercase;
            color: #3a3a3a;
        }
        .mobile-nav a {
            display: flex; align-items: center; gap: 10px;
            padding: 12px 22px;
            font-family: 'DM Sans', sans-serif;
            font-size: .975rem; font-weight: 500;
            color: rgba(255,255,255,.7);
            text-decoration: none;
            letter-spacing: 0;
            transition: color .15s, background .15s;
        }
        .mobile-nav a:hover { color: #fff; background: rgba(255,255,255,.04); }
        .mobile-nav a.mob-highlight { color: var(--amber); }
        .mobile-nav a.mob-highlight:hover { color: #f59e0b; }

        .mob-drawer-divider {
            height: 1px;
            background: rgba(255,255,255,.06);
            margin: 8px 0;
        }
        .mob-drawer-cta {
            padding: 16px 22px 24px;
        }
        .mobile-nav .mob-cta-btn {
            display: flex; align-items: center; justify-content: center;
            width: 100%; padding: 13px;
            background: var(--amber); color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: .9rem; font-weight: 600;
            border: none; border-radius: 2px;
            cursor: pointer;
            transition: background .15s;
            text-decoration: none;
        }
        .mobile-nav .mob-cta-btn:hover { background: #B45309; }

        /* ── HERO ──────────────────────────────────────────────────────── */
        #hero {
            padding: 7.5rem var(--gutter) 4rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at 50% 0%, rgba(217,119,6,0.12) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 100%, rgba(255,255,255,0.04) 0%, transparent 40%),
                        #0A0A0A;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        #hero::before {
            content: '';
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 600px;
            background: radial-gradient(ellipse at center, rgba(217,119,6,0.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-inner {
            width: 100%;
            max-width: 900px;
            position: relative;
            z-index: 1;
        }
        .hero-headline {
            font-size: clamp(2.5rem, 5vw, 5rem);
            line-height: 1.06;
            letter-spacing: -0.04em;
            margin-bottom: 1.25rem;
        }
        .hero-sub {
            font-size: 1rem;
            color: var(--muted-dark);
            max-width: 480px;
            margin: 0 auto 2rem;
            line-height: 1.7;
        }
        .hero-pills-outer {
            max-width: 760px;
            margin: 0 auto 2.5rem;
            overflow: hidden;
            border-radius: 16px;
        }
        .hero-pills {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            overflow: hidden;
        }
        /* Hide duplicate pills on desktop */
        .hero-pill-col[aria-hidden="true"] { display: none; }
        .hero-pill-col {
            padding: 1.2rem 1.8rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            transition: background 0.2s, transform 0.2s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }
        .hero-pill-col + .hero-pill-col {
            border-left: 1px solid rgba(255,255,255,0.1);
        }
        .hero-pill-col:hover {
            background: rgba(217,119,6,0.08);
        }
        .hero-pill-col:hover .hero-pill-name {
            color: var(--amber, #D97706);
        }
        .hero-pill-name {
            font-family: 'Sora', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            color: white;
            white-space: nowrap;
        }
        .hero-pill-desc {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.74rem;
            color: rgba(255,255,255,0.45);
            white-space: nowrap;
        }
        .hero-scroll-link {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--muted-dark);
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: color 0.2s;
        }
        .hero-scroll-link:hover { color: var(--light); }

        /* Hero ticker */
        .ticker-wrap {
            width: 100%;
            margin-top: 2rem;
            overflow: hidden;
            border-top: 1px solid var(--border-dark);
            border-bottom: 1px solid var(--border-dark);
            padding: 0.9rem 0;
            background: rgba(255,255,255,0.02);
        }
        .ticker-track {
            display: flex;
            white-space: nowrap;
            width: max-content;
            animation: ticker 40s linear infinite;
        }
        .ticker-track:hover { animation-play-state: paused; }
        .ticker-item {
            display: inline-block;
            padding: 0 2rem;
            font-family: 'Sora', sans-serif;
            font-size: 0.66rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #555;
        }
        .ticker-dot { color: var(--amber); margin-right: 2rem; }
        @keyframes ticker {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        /* ── SERVICES BENTO ────────────────────────────────────────────── */
        #services-bento {
            padding: 1.5rem var(--gutter) 4.5rem;
            background:
                radial-gradient(ellipse 90% 60% at 50% 0%, rgba(70, 75, 95, 0.18) 0%, transparent 65%),
                radial-gradient(ellipse 70% 50% at 5% 95%, rgba(217, 119, 6, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse 60% 40% at 95% 50%, rgba(40, 50, 80, 0.12) 0%, transparent 65%),
                #0A0A12;
            position: relative;
            overflow: hidden;
        }
        #services-bento::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, #000 40%, transparent 85%);
            -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, #000 40%, transparent 85%);
            pointer-events: none;
        }
        #services-bento::after {
            content: '';
            position: absolute;
            top: 20%; left: 50%;
            transform: translateX(-50%);
            width: 1000px; height: 600px;
            background: radial-gradient(ellipse at center, rgba(217, 119, 6, 0.05) 0%, transparent 65%);
            pointer-events: none;
        }
        /* Section header */
        .sb-header {
            max-width: 880px;
            margin: 0 auto 2.8rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .sb-eyebrow {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #D97706;
            margin-bottom: 1.4rem;
        }
        .sb-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2rem, 4.6vw, 3.6rem);
            font-weight: 500;
            letter-spacing: -0.04em;
            line-height: 1.05;
            color: #ffffff;
            margin-bottom: 1rem;
        }
        .sb-sub {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(.95rem, 1.4vw, 1.05rem);
            color: #888;
            line-height: 1.65;
            max-width: 620px;
            margin: 0 auto;
        }
        /* Grid layout (3 cols x 4 rows asymmetric bento) */
        .sb-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-auto-rows: minmax(0, auto);
            gap: 14px;
            max-width: 1560px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        /* Base tile */
        .sb-tile {
            background: linear-gradient(180deg, rgba(255,255,255,0.034) 0%, rgba(255,255,255,0.012) 100%);
            border: 1px solid rgba(255,255,255,0.065);
            border-radius: 16px;
            padding: 26px 26px 28px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: border-color .25s ease, transform .25s ease;
            text-decoration: none;
            color: inherit;
        }
        .sb-tile:hover {
            border-color: rgba(217,119,6,0.32);
            transform: translateY(-3px);
        }
        .sb-tile-h {
            font-family: 'Sora', sans-serif;
            font-size: clamp(1.35rem, 2vw, 1.8rem);
            font-weight: 500;
            color: #ffffff;
            letter-spacing: -0.025em;
            line-height: 1.1;
            margin-bottom: 0.7rem;
        }
        .sb-tile-d {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            color: #8a8a8a;
            line-height: 1.55;
            margin-bottom: 1.5rem;
            max-width: 38ch;
        }
        /* "Explore →" tile-level CTAs hidden, entire tile is clickable */
        .sb-tile-arrow { display: none; }
        /* Tile placements */
        .sb-tile-store        { grid-column: 1; grid-row: 1 / 3; }
        .sb-tile-shopify-dev  { grid-column: 2; grid-row: 1; }
        .sb-tile-cro          { grid-column: 3; grid-row: 1 / 3; }
        .sb-tile-support      { grid-column: 2; grid-row: 2; }
        .sb-tile-uiux         { grid-column: 1 / 3; grid-row: 3; }
        .sb-tile-pinterest    { grid-column: 3; grid-row: 3; }
        .sb-tile-ai           { grid-column: 1; grid-row: 4; }
        .sb-tile-email        { grid-column: 2 / 4; grid-row: 4; }

        /* ── Store Management mockup: admin dashboard ── */
        .sb-mock-dash {
            background: linear-gradient(170deg, #15151c 0%, #0c0c12 100%);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px;
            padding: 14px;
            box-shadow: 0 18px 44px rgba(0,0,0,0.4);
        }
        .sb-dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
        .sb-dash-title { font-family: 'Sora', sans-serif; font-size: 0.74rem; font-weight: 700; color: #ddd; letter-spacing: -0.01em; }
        .sb-dash-live { display: inline-flex; align-items: center; gap: 5px; font-family: 'DM Sans', sans-serif; font-size: 0.58rem; color: #22c55e; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
        .sb-dash-live::before { content: ''; width: 5px; height: 5px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 8px rgba(34,197,94,.7); }
        .sb-dash-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 10px; }
        .sb-dash-stat { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.04); border-radius: 6px; padding: 7px 8px; display: flex; flex-direction: column; gap: 1px; }
        .sb-dash-stat-l { font-family: 'DM Sans', sans-serif; font-size: 0.52rem; color: #555; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
        .sb-dash-stat-v { font-family: 'Sora', sans-serif; font-size: 0.82rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
        .sb-dash-stat-d { font-family: 'DM Sans', sans-serif; font-size: 0.5rem; color: #22c55e; margin-top: 1px; font-weight: 600; }
        .sb-dash-rows { display: flex; flex-direction: column; gap: 4px; }
        .sb-dash-row { display: grid; grid-template-columns: 36px 1fr auto; gap: 8px; padding: 5px 7px; background: rgba(255,255,255,0.02); border-radius: 5px; align-items: center; }
        .sb-dash-row-id { font-family: 'DM Sans', sans-serif; font-size: 0.58rem; color: #777; font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
        .sb-dash-row-name { font-family: 'DM Sans', sans-serif; font-size: 0.6rem; color: #ccc; }
        .sb-dash-row-amt { font-family: 'Sora', sans-serif; font-size: 0.64rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }

        /* ── CRO mockup: A/B variants ── */
        .sb-mock-ab { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 1.5rem; position: relative; }
        .sb-ab-card { background: linear-gradient(170deg, #15151c 0%, #0c0c12 100%); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 10px 11px 12px; box-shadow: 0 14px 32px rgba(0,0,0,0.32); }
        .sb-ab-label { font-family: 'DM Sans', sans-serif; font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.12em; color: #888; margin-bottom: 9px; display: inline-block; padding: 2px 6px; background: rgba(255,255,255,0.06); border-radius: 3px; font-weight: 600; }
        .sb-ab-card.winner .sb-ab-label { background: rgba(217,119,6,0.18); color: #D97706; }
        .sb-ab-line { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; margin-bottom: 5px; }
        .sb-ab-line.short { width: 60%; }
        .sb-ab-line.medium { width: 80%; }
        .sb-ab-cta { margin-top: 8px; height: 16px; background: rgba(255,255,255,0.06); border-radius: 3px; width: 55%; }
        .sb-ab-cta.amber { background: #D97706; box-shadow: 0 4px 14px rgba(217,119,6,0.35); }
        .sb-ab-uplift {
            position: absolute;
            bottom: -8px; right: 12px;
            background: #D97706; color: #fff;
            font-family: 'Sora', sans-serif;
            font-size: 0.64rem; font-weight: 700;
            padding: 4px 10px; border-radius: 100px;
            box-shadow: 0 8px 18px rgba(217,119,6,0.5);
            letter-spacing: 0.02em;
        }

        /* ── UI/UX mockup: browser product page ── */
        .sb-mock-browser { background: linear-gradient(170deg, #15151c 0%, #0c0c12 100%); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden; box-shadow: 0 16px 42px rgba(0,0,0,0.38); max-width: 480px; }
        .sb-bw-chrome { display: flex; align-items: center; gap: 5px; padding: 8px 12px; background: rgba(255,255,255,0.025); border-bottom: 1px solid rgba(255,255,255,0.05); }
        .sb-bw-dot { width: 7px; height: 7px; border-radius: 50%; }
        .sb-bw-dot.r { background: #ff5f57; }
        .sb-bw-dot.y { background: #ffbd2e; }
        .sb-bw-dot.g { background: #28c93f; }
        .sb-bw-body { display: grid; grid-template-columns: 1fr 1.2fr; gap: 14px; padding: 14px 16px; }
        .sb-bw-img { aspect-ratio: 1; background: linear-gradient(135deg, rgba(217,119,6,0.18) 0%, rgba(217,119,6,0.04) 100%); border: 1px solid rgba(217,119,6,0.15); border-radius: 6px; }
        .sb-bw-content { display: flex; flex-direction: column; gap: 7px; }
        .sb-bw-title { height: 11px; background: rgba(255,255,255,0.16); border-radius: 3px; width: 80%; }
        .sb-bw-price { height: 16px; background: rgba(255,255,255,0.1); border-radius: 3px; width: 40%; margin: 3px 0; }
        .sb-bw-line { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; }
        .sb-bw-cta { margin-top: auto; height: 18px; background: #D97706; border-radius: 4px; width: 75%; box-shadow: 0 4px 12px rgba(217,119,6,0.3); }

        /* ── Email & SMS mockup: lifecycle flow ── */
        .sb-mock-email { display: flex; align-items: center; gap: 8px; flex-wrap: nowrap; }
        .sb-email-stage { flex: 1; background: linear-gradient(170deg, #15151c 0%, #0c0c12 100%); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 11px 12px; min-width: 0; box-shadow: 0 10px 24px rgba(0,0,0,0.3); }
        .sb-email-stage-name { font-family: 'DM Sans', sans-serif; font-size: 0.58rem; font-weight: 700; color: #aaa; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
        .sb-email-stage-content { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-bottom: 3px; }
        .sb-email-stage-content.short { width: 60%; }
        .sb-email-stage-badge { display: inline-block; font-family: 'Sora', sans-serif; font-size: 0.55rem; font-weight: 700; color: #D97706; background: rgba(217,119,6,0.14); padding: 2px 6px; border-radius: 3px; margin-top: 4px; letter-spacing: 0.04em; }
        .sb-email-stars { color: #D97706; font-size: 0.62rem; margin-top: 4px; letter-spacing: 0.12em; }
        .sb-email-arrow { color: #444; font-size: 0.72rem; flex-shrink: 0; }

        /* Responsive */
        @media (max-width: 1024px) {
            .sb-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
            .sb-tile-store, .sb-tile-shopify-dev, .sb-tile-cro, .sb-tile-support,
            .sb-tile-uiux, .sb-tile-ai, .sb-tile-pinterest, .sb-tile-email {
                grid-column: auto; grid-row: auto;
            }
            .sb-tile-store, .sb-tile-cro, .sb-tile-uiux, .sb-tile-email { grid-column: 1 / 3; }
        }
        @media (max-width: 700px) {
            #services-bento { padding: 4.5rem var(--gutter) 5rem; }
            .sb-header { margin-bottom: 2.8rem; }
            .sb-grid { grid-template-columns: 1fr; }
            .sb-tile-store, .sb-tile-shopify-dev, .sb-tile-cro, .sb-tile-support,
            .sb-tile-uiux, .sb-tile-ai, .sb-tile-pinterest, .sb-tile-email { grid-column: 1; }
            .sb-tile { padding: 22px 22px 26px; min-height: 180px; }
            .sb-tile-h { font-size: 1.4rem; }
            .sb-mock-email { flex-direction: column; align-items: stretch; }
            .sb-email-arrow { display: none; }
        }

        /* ── OUR WORK CAROUSEL ──────────────────────────────────────────── */
        #work {
            padding: 7rem var(--gutter) 6rem;
            background: #ffffff;
            color: #0A0A0A;
            position: relative;
        }
        .ow-header {
            max-width: 1080px;
            margin: 0 auto 4rem;
            text-align: center;
        }
        .ow-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(1.9rem, 3.6vw, 3rem);
            font-weight: 600;
            letter-spacing: -0.025em;
            line-height: 1.15;
            color: #0A0A0A;
        }
        .ow-stage {
            position: relative;
            max-width: 1440px;
            margin: 0 auto;
        }
        .ow-track {
            display: flex;
            gap: 22px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 8px 4px 24px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .ow-track::-webkit-scrollbar { display: none; }
        .ow-card {
            flex: 0 0 auto;
            width: clamp(280px, 30vw, 380px);
            scroll-snap-align: start;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .ow-card-img {
            width: 100%;
            aspect-ratio: 4 / 5;
            background: #efefef;
            border-radius: 12px;
            overflow: hidden;
        }
        .ow-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .65s ease;
            display: block;
        }
        .ow-card:hover .ow-card-img img { transform: scale(1.04); }
        .ow-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 18px;
        }
        .ow-card-logo {
            width: 30px; height: 30px;
            border-radius: 7px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #0A0A0A;
        }
        .ow-card-logo img {
            max-width: 75%;
            max-height: 75%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }
        .ow-card-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
        .ow-card-name {
            font-family: 'Sora', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: #0A0A0A;
            letter-spacing: -0.015em;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ow-card-service {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.78rem;
            color: #666;
            margin-top: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ow-nav {
            position: absolute;
            top: calc(50% - 60px);
            transform: translateY(-50%);
            width: 48px; height: 48px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A0A0A;
            font-size: 1.4rem;
            box-shadow: 0 10px 28px rgba(0,0,0,0.10);
            transition: background .2s, color .2s, transform .2s;
            z-index: 2;
            line-height: 1;
            padding-bottom: 3px;
        }
        .ow-nav:hover { background: #0A0A0A; color: #fff; transform: translateY(-50%) scale(1.05); }
        .ow-nav-prev { left: -12px; }
        .ow-nav-next { right: -12px; }
        .ow-cta-wrap {
            text-align: center;
            margin-top: 2.8rem;
        }
        .ow-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: #0A0A0A;
            color: #fff;
            border-radius: 100px;
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            transition: background .2s;
        }
        .ow-cta:hover { background: #B45309; }
        @media (max-width: 900px) {
            .ow-nav { display: none; }
            .ow-card { width: 78vw; max-width: 360px; }
        }
        @media (max-width: 700px) {
            #work { padding: 4.5rem var(--gutter) 4rem; }
            .ow-header { margin-bottom: 2.4rem; }
        }

        /* ── STATS ─────────────────────────────────────────────────────── */
        #stats { padding: 4rem var(--gutter); background: radial-gradient(ellipse at 80% 50%, rgba(217,119,6,0.05) 0%, transparent 60%), #111111; }
        .stats-label {
            font-size: clamp(1rem, 2vw, 1.4rem);
            font-weight: 800;
            font-family: 'Sora', sans-serif;
            letter-spacing: -0.02em;
            color: #555;
            margin-bottom: 3rem;
        }
        .stats-label strong { color: white; }
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .stat-item {
            padding: 2rem 2rem 2rem 0;
            border-right: 1px solid rgba(255,255,255,0.08);
        }
        .stat-item:first-child { padding-left: 0; }
        .stat-item:last-child  { border-right: none; }
        .stat-num {
            display: block;
            font-family: 'Sora', sans-serif;
            font-size: clamp(3rem, 5vw, 5rem);
            font-weight: 800;
            letter-spacing: -0.05em;
            line-height: 1;
            color: white;
        }
        .stat-suf { font-size: 0.55em; color: var(--amber); }
        .stat-lbl {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            color: #555;
            margin-top: 0.6rem;
            letter-spacing: 0.02em;
        }

        /* ── ABOUT ─────────────────────────────────────────────────────── */
        #about { padding: 5rem var(--gutter); background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.02) 0%, transparent 60%), #0D0D0D; }
        .about-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }
        .about-photo { overflow: hidden; }
        .about-photo img {
            width: 100%;
            display: block;
            transition: transform 0.6s ease;
        }
        .about-photo:hover img { transform: scale(1.03); }
        .about-text h2 {
            font-size: clamp(1.75rem, 3vw, 2.75rem);
            margin-bottom: 2rem;
        }
        .about-text p {
            font-size: 0.92rem;
            color: #888;
            line-height: 1.85;
            margin-bottom: 1.25rem;
        }
        .about-text p:last-of-type { margin-bottom: 2rem; }
        .about-link {
            font-size: 0.88rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 2px;
            transition: border-color 0.2s;
        }
        .about-link:hover { border-color: white; }

        /* ── DIFFERENTIATORS ───────────────────────────────────────────── */
        #diff { padding: 5rem var(--gutter); }
        .diff-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }
        .diff-left h2 {
            font-size: clamp(1.75rem, 3vw, 2.75rem);
            position: sticky;
            top: 7rem;
        }
        .diff-list { list-style: none; padding-top: 0.25rem; }
        .diff-row {
            position: relative;
            padding: 2rem 0 2rem 3.5rem;
            border-left: 3px solid #D97706;
            border-top: 1px solid var(--border-light);
        }
        .diff-row:last-child { border-bottom: 1px solid var(--border-light); }
        .diff-num {
            position: absolute;
            left: -0.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Sora', sans-serif;
            font-size: 6rem;
            font-weight: 800;
            color: rgba(255,255,255,0.04);
            line-height: 1;
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }
        .diff-content { position: relative; z-index: 1; }
        .diff-title-el {
            font-size: 1.1rem;
            font-weight: 700;
            font-family: 'Sora', sans-serif;
            margin-bottom: 0.5rem;
            color: #0A0A0A;
            letter-spacing: -0.015em;
        }
        .diff-desc-el {
            font-size: 0.875rem;
            color: #444444;
            line-height: 1.7;
        }

        /* ── SERVICES ──────────────────────────────────────────────────── */
        #services { padding: 5rem var(--gutter); background: radial-gradient(ellipse at 50% 100%, rgba(217,119,6,0.04) 0%, transparent 50%), #0A0A0A; }
        .services-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }
        .services-left {
            position: sticky;
            top: 7rem;
        }
        .services-left h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
        .services-left p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.75;
            margin-top: 1.25rem;
        }
        .services-list { list-style: none; }
        .service-row {
            display: grid;
            grid-template-columns: 2.5rem 1fr;
            gap: 1rem;
            padding: 1.75rem 0;
            border-top: 1px solid rgba(255,255,255,0.07);
            align-items: start;
        }
        .service-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
        .svc-num {
            font-family: 'Sora', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: #444;
            letter-spacing: 0.04em;
            padding-top: 0.2rem;
        }
        .svc-body h3 {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.015em;
            color: white;
            margin-bottom: 0.3rem;
        }
        .svc-body p {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.65;
        }

        /* ── TARLY ─────────────────────────────────────────────────────── */
        #tarly {
            padding: 6rem var(--gutter);
            background: #080808;
            position: relative;
            overflow: hidden;
        }
        #tarly::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
            background-size: 56px 56px;
            pointer-events: none;
        }
        #tarly::after {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 500px; height: 500px;
            background: radial-gradient(ellipse at center, rgba(34,197,94,0.06) 0%, transparent 65%);
            pointer-events: none;
        }
        .tarly-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            max-width: none;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        .tarly-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: rgba(34,197,94,0.1);
            color: #22c55e;
            border: 1px solid rgba(34,197,94,0.22);
            padding: 0.35rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1.6rem;
        }
        .tarly-badge-dot {
            width: 6px; height: 6px;
            background: #22c55e;
            border-radius: 50%;
            animation: tpulse 2s ease-in-out infinite;
            flex-shrink: 0;
        }
        @keyframes tpulse {
            0%,100% { opacity:1; transform:scale(1); }
            50%      { opacity:.4; transform:scale(.7); }
        }
        .tarly-title {
            font-size: clamp(3.2rem, 6vw, 5.2rem);
            letter-spacing: -0.05em;
            line-height: 1;
            color: #fff;
            margin-bottom: 0.6rem;
        }
        .tarly-sub {
            font-size: 0.8rem;
            color: #444;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 600;
            margin-bottom: 1.6rem;
        }
        .tarly-desc {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.85;
            margin-bottom: 2.2rem;
            max-width: 430px;
        }
        .tarly-ctas { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
        .tarly-note { font-size:0.72rem; color:#333; margin-top:1.4rem; }
        .tarly-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .tarly-card {
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.055);
            border-radius: 10px;
            padding: 18px 18px 16px;
            transition: border-color .2s, background .2s;
        }
        .tarly-card:hover {
            background: rgba(255,255,255,0.045);
            border-color: rgba(217,119,6,0.22);
        }
        .tarly-card-icon { font-size:1.3rem; margin-bottom:9px; }
        .tarly-card-name {
            font-family:'Sora',sans-serif;
            font-size:0.8rem; font-weight:700;
            color:#e2e8f0; margin-bottom:5px;
        }
        .tarly-card-desc { font-size:0.74rem; color:#484848; line-height:1.6; }
        @media(max-width:900px) {
            .tarly-layout { grid-template-columns:1fr; gap:3rem; }
            .tarly-desc { max-width:100%; }
        }

        /* ── UI/UX SECTION (Inspect Mode) ──────────────────────────────── */
        #uiux {
            padding: 5rem var(--gutter) 5rem;
            background:
                radial-gradient(ellipse 70% 50% at 50% 0%, rgba(50, 60, 90, 0.22) 0%, transparent 75%),
                radial-gradient(ellipse 40% 30% at 50% 100%, rgba(217, 119, 6, 0.05) 0%, transparent 70%),
                #0A0A12;
            position: relative;
            overflow: hidden;
        }
        #uiux::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, #000 40%, transparent 85%);
            -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, #000 40%, transparent 85%);
            pointer-events: none;
        }
        /* Editorial header */
        .ux-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 3rem;
            position: relative;
            z-index: 2;
        }
        .ux-eyebrow {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #D97706;
            margin-bottom: 1.2rem;
        }
        .ux-statement {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2rem, 4.6vw, 3.6rem);
            font-weight: 500;
            letter-spacing: -0.04em;
            line-height: 1.05;
            color: #ffffff;
            margin-bottom: 1rem;
        }
        .ux-tagline {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.96rem;
            color: #8a8a8a;
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Inspect stage */
        .ux-stage {
            position: relative;
            max-width: 1300px;
            height: 720px;
            margin: 0 auto;
            z-index: 2;
        }

        /* Phone */
        .ux-phone-wrap {
            position: absolute;
            top: 50px;
            left: 50%;
            width: 280px;
            height: 600px;
            transform: translateX(-50%);
            z-index: 3;
            opacity: 0;
            animation: ux-rise 1s cubic-bezier(.16,1,.3,1) 0.2s forwards;
        }
        @keyframes ux-rise {
            from { opacity: 0; transform: translateX(-50%) translateY(16px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
        .ux-phone {
            width: 100%;
            height: 100%;
            background: linear-gradient(155deg, #1a1a1d 0%, #08080a 100%);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 36px;
            padding: 8px;
            position: relative;
            box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 14px 36px rgba(217,119,6,0.08), inset 0 0 0 1.5px rgba(255,255,255,0.04);
        }
        .ux-phone-notch {
            position: absolute;
            top: 16px; left: 50%;
            transform: translateX(-50%);
            width: 60px; height: 16px;
            background: #050507;
            border-radius: 12px;
            z-index: 2;
        }
        .ux-phone-screen {
            width: 100%; height: 100%;
            background: #fafaf7;
            border-radius: 28px;
            padding: 38px 18px 14px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 11px;
        }

        /* Product screen content */
        .ux-pscreen-status {
            display: flex; justify-content: space-between; align-items: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.62rem; font-weight: 700;
            color: #0A0A0A;
        }
        .ux-pscreen-statusicons {
            display: inline-block;
            width: 30px; height: 9px;
            background: linear-gradient(90deg, #0A0A0A 25%, transparent 25%, transparent 35%, #0A0A0A 35%, #0A0A0A 70%, transparent 70%, transparent 80%, #0A0A0A 80%);
            opacity: 0.7;
            border-radius: 2px;
        }
        .ux-pscreen-header {
            display: flex; justify-content: space-between; align-items: center;
        }
        .ux-pscreen-back, .ux-pscreen-cart {
            width: 32px; height: 32px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            font-size: 0.95rem;
            color: #0A0A0A;
            line-height: 1;
        }
        .ux-pscreen-brand {
            font-family: 'Sora', sans-serif;
            font-size: 0.78rem; font-weight: 700;
            letter-spacing: 0.1em;
            color: #0A0A0A;
        }
        .ux-pscreen-img {
            width: 100%;
            aspect-ratio: 1.15 / 1;
            background:
                radial-gradient(ellipse 50% 35% at 50% 35%, rgba(255,255,255,0.5) 0%, transparent 60%),
                linear-gradient(135deg, #f3e3cf 0%, #c89764 100%);
            border-radius: 16px;
            position: relative;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        .ux-pscreen-img::before {
            content: '';
            position: absolute;
            top: 22%; left: 50%;
            transform: translateX(-50%) rotate(-12deg);
            width: 42%; height: 58%;
            background:
                conic-gradient(from 30deg at 50% 50%, #b8893f, #e8c08a, #a37236, #d4a55c, #b8893f);
            border-radius: 50%;
            box-shadow: 0 12px 22px rgba(0,0,0,0.25);
            opacity: 0.9;
            mix-blend-mode: multiply;
        }
        .ux-pscreen-fav {
            position: absolute;
            top: 10px; right: 10px;
            width: 28px; height: 28px;
            background: rgba(255,255,255,0.92);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.85rem;
            color: #0A0A0A;
            z-index: 2;
        }
        .ux-pscreen-sale {
            position: absolute;
            bottom: 10px; left: 10px;
            background: #0A0A0A; color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.58rem; font-weight: 700;
            padding: 3px 7px;
            border-radius: 4px;
            letter-spacing: 0.02em;
            z-index: 2;
        }
        .ux-pscreen-colors {
            display: flex; gap: 7px;
        }
        .ux-pscreen-color {
            width: 18px; height: 18px;
            border-radius: 50%;
            border: 2px solid transparent;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
        }
        .ux-pscreen-color.active {
            border-color: #0A0A0A;
            transform: scale(1.05);
        }
        .ux-pscreen-title {
            font-family: 'Sora', sans-serif;
            font-size: 0.95rem; font-weight: 600;
            color: #0A0A0A;
            letter-spacing: -0.02em;
            line-height: 1.15;
        }
        .ux-pscreen-meta {
            display: flex; justify-content: space-between; align-items: center;
        }
        .ux-pscreen-price {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            color: #0A0A0A;
            font-size: 0.95rem;
            letter-spacing: -0.01em;
        }
        .ux-pscreen-rating {
            font-family: 'DM Sans', sans-serif;
            color: #777;
            font-size: 0.6rem;
            letter-spacing: 0.02em;
        }
        .ux-pscreen-sizes { display: flex; gap: 6px; }
        .ux-pscreen-size {
            flex: 1; height: 30px;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid rgba(0,0,0,0.12);
            border-radius: 7px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem; font-weight: 600;
            color: #0A0A0A;
            background: #fff;
        }
        .ux-pscreen-size.active {
            background: #0A0A0A; color: #fff;
            border-color: #0A0A0A;
        }
        .ux-pscreen-cta {
            width: 100%;
            background: #D97706;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 16px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem; font-weight: 700;
            letter-spacing: 0.01em;
            box-shadow: 0 8px 24px rgba(217,119,6,0.35);
            cursor: default;
            margin-top: auto;
        }
        .ux-pscreen-micro {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.58rem;
            color: #888;
            text-align: center;
            line-height: 1.4;
            letter-spacing: 0.01em;
        }

        /* Annotation lines (SVG) */
        .ux-lines {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: visible;
        }
        .ux-line, .ux-line-dot, .ux-line-origin {
            opacity: 0;
            animation: ux-fade-in 0.6s ease forwards;
        }
        .ux-line-1, .ux-line-dot-1, .ux-line-origin-1 { animation-delay: 0.7s; }
        .ux-line-2, .ux-line-dot-2, .ux-line-origin-2 { animation-delay: 0.9s; }
        .ux-line-3, .ux-line-dot-3, .ux-line-origin-3 { animation-delay: 1.1s; }
        .ux-line-4, .ux-line-dot-4, .ux-line-origin-4 { animation-delay: 0.8s; }
        .ux-line-5, .ux-line-dot-5, .ux-line-origin-5 { animation-delay: 1.0s; }
        .ux-line-6, .ux-line-dot-6, .ux-line-origin-6 { animation-delay: 1.2s; }
        @keyframes ux-fade-in { to { opacity: 1; } }

        /* Annotation labels */
        .ux-anno {
            position: absolute;
            font-family: 'JetBrains Mono', 'SF Mono', Monaco, Consolas, monospace;
            line-height: 1.4;
            z-index: 4;
            opacity: 0;
            transform: translateY(6px);
            animation: ux-anno-in 0.6s cubic-bezier(.16,1,.3,1) forwards;
            width: 180px;
        }
        @keyframes ux-anno-in {
            to { opacity: 1; transform: translateY(0); }
        }
        .ux-anno-key {
            display: block;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: rgba(255,255,255,0.45);
            margin-bottom: 4px;
        }
        .ux-anno-val {
            display: block;
            color: rgba(255,255,255,0.86);
            font-size: 0.74rem;
            letter-spacing: -0.005em;
            font-variant-numeric: tabular-nums;
        }
        .ux-anno-1 { top: 58px;  left: 40px;  animation-delay: 0.75s; }
        .ux-anno-2 { top: 242px; left: 40px;  animation-delay: 0.95s; }
        .ux-anno-3 { top: 410px; left: 40px;  animation-delay: 1.15s; }
        .ux-anno-4 { top: 98px;  right: 40px; text-align: right; animation-delay: 0.85s; }
        .ux-anno-5 { top: 475px; right: 40px; text-align: right; animation-delay: 1.05s; }
        .ux-anno-6 { top: 575px; right: 40px; text-align: right; animation-delay: 1.25s; }

        /* Footer CTAs */
        .ux-footer {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 1150px) {
            .ux-stage { transform: scale(0.82); transform-origin: center top; margin-bottom: -160px; }
        }
        @media (max-width: 900px) {
            .ux-stage {
                height: auto;
                transform: none;
                max-width: 320px;
                margin-bottom: 0;
            }
            .ux-lines, .ux-anno { display: none; }
            .ux-phone-wrap {
                position: relative;
                top: 0; left: 0;
                transform: none;
                width: 280px;
                height: 580px;
                margin: 0 auto;
                animation: none;
                opacity: 1;
            }
        }
        @media (max-width: 700px) {
            #uiux { padding: 3.5rem var(--gutter) 4rem; }
            .ux-header { margin-bottom: 2rem; }
        }

        /* ── SWAPIT ────────────────────────────────────────────────────── */
        #swapit {
            padding: 5rem var(--gutter);
            text-align: left;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at 50% 50%, rgba(217,119,6,0.08) 0%, transparent 60%), #111111;
        }
        #swapit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 500px;
            background: radial-gradient(ellipse at center, rgba(217,119,6,0.1) 0%, transparent 65%);
            pointer-events: none;
        }
        .swapit-inner {
            max-width: 760px;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        .swapit-badge {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: rgba(217,119,6,0.15);
            color: var(--amber);
            border: 1px solid rgba(217,119,6,0.3);
            padding: 0.35rem 0.85rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }
        .swapit-title {
            font-size: clamp(3rem, 7vw, 6rem);
            letter-spacing: -0.05em;
            line-height: 1;
            margin-bottom: 0.75rem;
        }
        .swapit-subtitle {
            font-size: 0.85rem;
            font-weight: 500;
            color: #555;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }
        .swapit-body {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }
        .swapit-clients-note {
            font-size: 0.75rem;
            color: #444;
            margin-top: 1rem;
        }

        /* ── PROCESS ───────────────────────────────────────────────────── */
        #process { padding: 5rem var(--gutter); }
        .process-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }
        .process-left h2 {
            font-size: clamp(1.75rem, 3vw, 2.75rem);
        }
        .process-sub {
            margin-top: 1.5rem;
            font-size: 0.92rem;
            color: #444444;
            line-height: 1.75;
            max-width: 300px;
        }
        .process-steps { padding-top: 0.25rem; }
        .process-step {
            display: grid;
            grid-template-columns: 3rem 1fr;
            gap: 1rem;
            padding: 1.75rem 0;
            border-top: 1px solid var(--border-light);
            align-items: start;
        }
        .process-step:last-child { border-bottom: 1px solid var(--border-light); }
        .pstep-num {
            font-family: 'Sora', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: #888888;
            letter-spacing: 0.04em;
            padding-top: 0.2rem;
        }
        .pstep-body h3 {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.015em;
            margin-bottom: 0.3rem;
            color: #0A0A0A;
        }
        .pstep-body p {
            font-size: 0.875rem;
            color: #444444;
            line-height: 1.65;
        }

        /* ── TESTIMONIALS ──────────────────────────────────────────────── */
        #testimonials { padding: 4rem var(--gutter) 2rem; background: linear-gradient(135deg, #0A0A0A 0%, #0f0f1a 50%, #0A0A0A 100%); }
        .testi-header { margin-bottom: 3.5rem; }
        .testi-header h2 { font-size: clamp(1.75rem, 3vw, 3rem); text-shadow: 0 0 40px rgba(150,150,255,0.15); }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .testi-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0;
            transition: background 0.25s;
        }
        .testi-card:hover { background: rgba(255,255,255,0.06); }
        .testi-quote {
            font-family: 'Sora', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--amber);
            line-height: 0.8;
            margin-bottom: 0.75rem;
            user-select: none;
        }
        .testi-text {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.72);
            line-height: 1.8;
            flex: 1;
            margin-bottom: 1.25rem;
        }
        .testi-author {
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.07);
        }
        .testi-name {
            font-family: 'Sora', sans-serif;
            font-size: 0.83rem;
            font-weight: 700;
            color: white;
            display: block;
        }
        .testi-role {
            font-size: 0.72rem;
            color: #555;
            display: block;
            margin-top: 0.15rem;
        }
@media (max-width: 900px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 560px) { .testi-grid { grid-template-columns: 1fr; } }

        /* ── CLIENTS TICKER ────────────────────────────────────────────── */
        #clients-ticker {
            padding: 2rem 0;
            overflow: hidden;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .clients-track {
            display: flex;
            white-space: nowrap;
            width: max-content;
            animation: cticker 30s linear infinite;
        }
        .clients-track:hover { animation-play-state: paused; }
        .clients-item {
            display: inline-block;
            padding: 0 2rem;
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: rgba(255,255,255,0.85);
            letter-spacing: 0.02em;
            transition: color 0.2s;
        }
        .clients-item:hover { color: var(--amber); }
        .clients-sep { color: #222; margin: 0 0.5rem; }
        @keyframes cticker {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        /* ── CTA ───────────────────────────────────────────────────────── */
        #cta {
            padding: 5.5rem var(--gutter);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        #cta::before { display: none; }
        .cta-inner {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .cta-headline {
            font-size: clamp(3rem, 6vw, 6rem);
            letter-spacing: -0.045em;
            line-height: 1.02;
            margin-bottom: 1.5rem;
        }
        .cta-sub {
            font-size: 1rem;
            color: #444444;
            line-height: 1.75;
            margin-bottom: 2.75rem;
            max-width: 460px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-text-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: #0A0A0A;
            background: none;
            border: none;
            border-bottom: 1px solid rgba(0,0,0,0.2);
            padding-bottom: 1px;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .cta-text-link:hover { opacity: 0.5; }

        /* ── FOOTER ────────────────────────────────────────────────────── */
        #footer {
            padding: 5.5rem var(--gutter) 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            background: radial-gradient(ellipse at 50% 100%, rgba(217,119,6,0.04) 0%, transparent 50%), #0A0A0A;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: end;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 3.5rem;
        }
        .footer-talk {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.1;
        }
        .footer-form-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #555;
            display: block;
            margin-bottom: 1rem;
        }
        .footer-form {
            display: flex;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 2px;
            overflow: hidden;
        }
        .footer-form input[type="email"] {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: white;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            padding: 0.9rem 1.25rem;
        }
        .footer-form input::placeholder { color: #444; }
        .footer-form button {
            background: var(--amber);
            color: #0A0A0A;
            border: none;
            padding: 0.9rem 1.5rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .footer-form button:hover { background: var(--amber-hover); }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3.5rem;
        }
        .footer-col h3 {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #444;
            margin-bottom: 1.5rem;
            font-family: 'DM Sans', sans-serif;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-col ul a,
        .footer-col ul button {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: color 0.2s;
            background: none;
            border: none;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            padding: 0;
            text-align: left;
        }
        .footer-col ul a:hover,
        .footer-col ul button:hover { color: white; }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-copy { font-size: 0.75rem; color: #444; }
        .footer-legal { display: flex; gap: 1.5rem; }
        .footer-legal a {
            font-size: 0.75rem;
            color: #444;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-legal a:hover { color: white; }

        /* ── RESPONSIVE ────────────────────────────────────────────────── */
        @media (max-width: 1024px) {
            .about-layout,
            .diff-layout,
            .services-layout,
            .process-layout { gap: 4rem; }
            .diff-left h2 { position: static; }
            .services-left { position: static; }
            .process-left h2 { position: static; }
        }

        @media (max-width: 900px) {
            :root { --gutter: 1.75rem; }
            /* #nav is display:flex. grid-template-columns, grid-column and
               justify-self were all inert here — written for a grid that this
               element has never been. Between 769 and 900px that left the pill
               as a bare SW square jammed against the burger at gap:0, with the
               wordmark still hidden because it only unhides at 768px. */
            #nav {
                width: calc(100vw - 32px);
                justify-content: space-between;
                gap: 12px;
                padding: 6px 6px 6px 16px;
            }
            .nav-center { display: none; }
            .nav-right { display: none; }
            .hamburger { display: flex; margin-left: auto; }
            .logo-wordmark { display: inline; }
            .work-grid { columns: 2; }
            .stats-row { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
            .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.08); }
            .about-layout,
            .diff-layout,
            .services-layout,
            .process-layout { grid-template-columns: 1fr; gap: 3rem; }
            .testi-grid { grid-template-columns: repeat(2,1fr); }
            .footer-top { grid-template-columns: 1fr; }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
        }

        /* ── VIDEO SECTION ─────────────────────────────────────────────── */
        #video-section {
            background: #0A0A0A;
            padding: 0 0 5rem;
            overflow: hidden;
            position: relative;
            clip-path: inset(0);
        }
        .video-outer {
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .video-side {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 18vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.75rem;
            opacity: 0;
            z-index: 2;
            pointer-events: none;
            will-change: opacity, transform;
        }
        .video-side-left { left: 1.5rem; transform: translateX(-100px); }
        .video-side-right { right: 1.5rem; transform: translateX(100px); }
        .video-side img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }
        .video-scaler {
            width: 100%;
            transform-origin: top center;
            transform: scale(1);
            will-change: transform;
            overflow: hidden;
            border-radius: 16px;
            position: relative;
            z-index: 1;
        }
        .video-scaler video {
            display: block;
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: cover;
            border-radius: 16px;
        }

        /* ═══════════════════════════════════════════════════════════════
           MOBILE REDESIGN V2, EDITORIAL LUXURY
           Full-viewport hero · Edge-to-edge photo · Editorial rows
           Amber timeline · Count-up stats · Floating CTA pill
        ═══════════════════════════════════════════════════════════════ */

        /* ── Floating CTA pill (hidden by default, shown on scroll) ── */
        .mob-float-cta {
            display: none;
            position: fixed;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%) translateY(90px);
            z-index: 990;
            /* Liquid glass with amber warmth */
            background: rgba(10,10,10,0.75);
            backdrop-filter: blur(44px) saturate(220%) brightness(1.1);
            -webkit-backdrop-filter: blur(44px) saturate(220%) brightness(1.1);
            border: 1px solid rgba(217,119,6,.5);
            border-radius: 100px;
            overflow: hidden;
            box-shadow:
                0 8px 32px rgba(217,119,6,.28),
                0 2px 8px rgba(0,0,0,.55),
                inset 0 1px 0 rgba(255,255,255,.1),
                inset 0 -1px 0 rgba(0,0,0,.2),
                0 0 40px rgba(217,119,6,.12);
            opacity: 0;
            transition: transform .42s cubic-bezier(.22,1,.36,1), opacity .42s ease;
            white-space: nowrap;
        }
        .mob-float-link {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            padding: .85rem 1.2rem .85rem 1.8rem;
            color: rgba(255,255,255,.95);
            font-family: 'DM Sans', sans-serif;
            font-size: .88rem;
            font-weight: 700;
            letter-spacing: .01em;
            text-decoration: none;
        }
        .mob-float-close {
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            color: rgba(255,255,255,.55);
            width: 42px;
            height: 42px;
            cursor: pointer;
            transition: color .15s;
            flex-shrink: 0;
            font-size: 0.95rem;
            line-height: 1;
            padding-right: 4px;
        }
        .mob-float-close:hover {
            color: rgba(255,255,255,.9);
        }
        .mob-float-cta.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* ── Mobile ≤768px ── */
        @media (max-width: 768px) {
            :root { --gutter: 1.25rem; }

            /* ─ Nav pill (mobile: logo + wordmark + hamburger) ─ */
            #nav { padding: 5px 5px 5px 14px; }
            .nav-center { display: none; }
            .nav-right { display: none; }
            .hamburger { display: flex; margin-left: 2px; }
            .logo-wordmark { display: inline; font-size: 0.95rem; }

            /* ─ Floating pill: show on mobile ─ */
            .mob-float-cta { display: flex; align-items: center; }

            /* ─ Hero: full viewport, content anchored to bottom ─ */
            #hero {
                min-height: 100svh;
                padding: 0;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                text-align: left;
                background: radial-gradient(ellipse at 30% 20%, rgba(217,119,6,0.14) 0%, transparent 55%),
                            radial-gradient(ellipse at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 40%),
                            #0A0A0A;
                position: relative;
            }
            .hero-inner {
                max-width: 100%;
                padding: 0 var(--gutter) 3.5rem;
                position: relative;
                z-index: 1;
            }
            .hero-headline {
                font-size: clamp(3rem, 11.5vw, 4.8rem);
                line-height: 1.04;
                letter-spacing: -.045em;
                margin-bottom: 1rem;
            }
            .hero-sub {
                font-size: .96rem;
                line-height: 1.72;
                margin-bottom: 1.75rem;
                margin-left: 0;
                max-width: 100%;
                color: #666;
            }
            /* Pills → auto-scroll marquee on mobile */
            .hero-pills-outer {
                max-width: 100%;
                margin: 0 0 1.75rem;
                overflow: hidden;
                border-radius: 0;
            }
            .hero-pills {
                display: flex;
                gap: 8px;
                width: max-content;
                border: none; border-radius: 0;
                background: transparent;
                padding: 0;
                margin: 0;
                animation: pill-scroll 10s linear infinite;
            }
            .hero-pills:hover { animation-play-state: paused; }
            /* Show aria-hidden duplicates on mobile for seamless loop */
            .hero-pill-col[aria-hidden="true"] { display: flex !important; }
            @keyframes pill-scroll {
                0%   { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }
            .hero-pill-col {
                flex-shrink: 0;
                padding: 7px 14px;
                background: rgba(255,255,255,.05);
                border: 1px solid rgba(255,255,255,.1) !important;
                border-radius: 8px;
                display: flex; flex-direction: column; gap: 2px;
                min-width: 120px;
            }
            .hero-pill-name { font-size: .75rem; white-space: nowrap; }
            .hero-pill-desc { font-size: .63rem; white-space: nowrap; color: rgba(255,255,255,.4); }
            .hero-scroll-link { display: none; }
            /* (hero-mob-cta removed, use floating pill instead) */

            /* ─ General sections ─ */
            section { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
            /* Compact connective sections, no big gaps between them */
            #testimonials { padding-bottom: 1.5rem !important; }
            #clients-ticker { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
            #cta { padding-top: 2.5rem !important; }
            .wrap { padding: 0 var(--gutter); }
            h2 { font-size: clamp(1.9rem, 6.5vw, 2.5rem) !important; }

            /* ─ Video ─ */
            .video-side { display: none !important; }
            #video-section { padding: 0 0 1.5rem; }

            /* ─ Work ─ */
            .work-grid { columns: 2; column-gap: .75rem; }
            .work-header { flex-direction: column; align-items: flex-start; gap: .75rem; }
            #work .wrap { padding-top: 0 !important; padding-bottom: 0 !important; }

            /* ─ Stats: bordered 2×2 grid container ─ */
            #stats .wrap { padding: 0 var(--gutter); }
            .stats-label { font-size: 1rem; margin-bottom: 2rem; padding: 0; }
            .stats-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                border: 1px solid rgba(255,255,255,.09);
                border-radius: 14px;
                overflow: hidden;
            }
            .stat-item {
                padding: 1.75rem 1.4rem;
                border-right: 1px solid rgba(255,255,255,.08);
                border-top: none;
            }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(3) {
                border-top: 1px solid rgba(255,255,255,.08);
            }
            .stat-item:nth-child(4) {
                border-right: none;
                border-top: 1px solid rgba(255,255,255,.08);
            }
            .stat-num {
                font-size: clamp(2.4rem, 9vw, 3.2rem);
                letter-spacing: -.055em;
            }
            .stat-lbl { font-size: .72rem; margin-top: .4rem; }

            /* ─ About: edge-to-edge photo ─ */
            #about { padding: 0 !important; overflow: hidden; }
            #about .wrap { padding: 0; max-width: 100%; }
            .about-layout { grid-template-columns: 1fr; gap: 0; }
            .about-photo {
                order: -1;
                overflow: hidden;
            }
            .about-photo img {
                border-radius: 0;
                width: 100%;
                max-height: 72vw;
                object-fit: cover;
                object-position: top center;
                display: block;
            }
            .about-text {
                padding: 2.5rem var(--gutter) 3.75rem;
            }
            .about-text h2 { margin-bottom: 1.25rem; }
            .about-text p { font-size: .92rem; }

            /* ─ Differentiators ─ */
            .diff-layout { grid-template-columns: 1fr; gap: 1.75rem; }
            .diff-left h2 { position: static !important; }
            .diff-row { padding: 1.4rem 0 1.4rem 2.25rem; }
            .diff-num { font-size: 3.5rem; }

            /* ─ Services: editorial full-width rows ─ */
            .services-layout { grid-template-columns: 1fr; gap: 0; }
            .services-left { position: static; margin-bottom: 2rem; }
            .services-left h2 { font-size: clamp(1.9rem, 6.5vw, 2.5rem) !important; }
            .services-list { padding-top: .25rem; }
            .service-row {
                display: grid;
                grid-template-columns: 2rem 1fr;
                gap: .85rem;
                padding: 1.35rem 0;
                border-top: 1px solid rgba(255,255,255,.07);
                border-radius: 0;
                background: transparent;
                flex-shrink: unset;
                min-width: unset;
                max-width: unset;
                flex-direction: unset;
                scroll-snap-align: unset;
            }
            .service-row:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
            .svc-num {
                font-size: .65rem;
                padding-top: .15rem;
                color: var(--amber);
                font-weight: 700;
                letter-spacing: .04em;
            }
            .svc-body h3 { font-size: .95rem; margin-bottom: .3rem; }
            .svc-body p { font-size: .83rem; line-height: 1.62; color: #555; }

            /* ─ Swapit ─ */
            #swapit { padding: 3.25rem var(--gutter); text-align: left; }
            .swapit-inner { margin: 0; }
            .swapit-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
            .swapit-body { font-size: .9rem; }

            /* ─ Tarly ─ */
            #tarly { padding: 3.75rem var(--gutter); }
            .tarly-layout { grid-template-columns: 1fr; gap: 2.5rem; }
            .tarly-title { font-size: clamp(2.6rem, 9.5vw, 4rem); }
            .tarly-desc { max-width: 100%; font-size: .92rem; }
            .tarly-ctas { flex-direction: column; }
            .tarly-ctas .btn { width: 100%; justify-content: center; }
            .tarly-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .tarly-card { padding: 15px 14px; }
            .tarly-card-icon { font-size: 1.1rem; margin-bottom: 6px; }
            .tarly-card-name { font-size: .82rem; }
            .tarly-card-desc { font-size: .74rem; line-height: 1.55; }

            /* ─ Process: amber numbered timeline ─ */
            .process-layout { grid-template-columns: 1fr; gap: 0; }
            .process-left { margin-bottom: 2rem; }
            .process-left h2 { position: static !important; font-size: clamp(1.9rem, 6.5vw, 2.5rem) !important; }
            .process-sub { font-size: .9rem; max-width: 100%; }
            .process-steps { padding-top: .5rem; }
            .process-step {
                display: grid;
                grid-template-columns: 2.5rem 1fr;
                gap: .85rem;
                padding: 1.35rem 0;
                border-top: 1px solid rgba(0,0,0,.08);
                border-radius: 0;
                background: transparent;
                align-items: start;
                flex-shrink: unset;
                min-width: unset;
                max-width: unset;
                flex-direction: unset;
            }
            .process-step:last-child { border-bottom: 1px solid rgba(0,0,0,.08); }
            .pstep-num {
                font-family: 'Sora', sans-serif;
                font-size: .68rem;
                font-weight: 700;
                color: var(--amber);
                letter-spacing: .04em;
                padding-top: .2rem;
                line-height: 1;
                margin-bottom: 0;
            }
            .pstep-body h3 { font-size: .95rem; margin-bottom: .3rem; color: #0A0A0A; }
            .pstep-body p { font-size: .83rem; color: #555; line-height: 1.62; }

            /* ─ Testimonials: swipeable ─ */
            .testi-grid {
                display: flex;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                touch-action: pan-x;
                gap: 14px;
                margin: 0 calc(-1 * var(--gutter));
                padding: 4px var(--gutter) 16px;
                grid-template-columns: unset;
            }
            .testi-grid::-webkit-scrollbar { display: none; }
            .testi-card {
                flex-shrink: 0;
                min-width: 82vw;
                max-width: 82vw;
                scroll-snap-align: start;
                scroll-snap-stop: always;
            }

            /* ─ CTA ─ */
            #cta { padding: 2.5rem var(--gutter); }
            .cta-headline { font-size: clamp(2rem, 7.5vw, 2.75rem) !important; }
            .cta-sub { font-size: .9rem; }
            .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
            .cta-actions .btn,
            .cta-actions button { width: 100%; justify-content: center; }
            .cta-text-link { text-align: center; display: block; }

            /* ─ Footer ─ */
            .footer-top { grid-template-columns: 1fr; gap: 2rem; }
            .footer-links { grid-template-columns: repeat(2,1fr); }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            .footer-form { flex-direction: column; gap: 8px; }
            .footer-form input,
            .footer-form button { width: 100%; }
        }

        /* ── Small mobile ≤480px ── */
        @media (max-width: 480px) {
            :root { --gutter: 1rem; }
            .hero-headline { font-size: clamp(2.6rem, 11vw, 3.6rem); }
            .stat-num { font-size: clamp(2.1rem, 8.5vw, 2.8rem); }
            .tarly-grid { grid-template-columns: 1fr; }
            .footer-links { grid-template-columns: 1fr; }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .work-grid { columns: 2; }
            .testi-grid { grid-template-columns: repeat(2, 1fr); }
            .services-layout { grid-template-columns: 1fr; }
        }

/* ── second style block (was lines 4075-4095) ── */
  #te-preview-bar{position:fixed;top:0;left:0;right:0;z-index:99999;background:#D97706;color:#fff;font-family:sans-serif;font-size:12px;font-weight:600;text-align:center;padding:6px;letter-spacing:.05em;pointer-events:none;}
  body{padding-top:32px;}
  /* Edit-mode cursor & hover states */
  body.te-editmode *{cursor:crosshair!important;}
  body.te-editmode a,body.te-editmode button{pointer-events:none;}
  /* Hover outline for editable regions */
  .te-hover-ring{
    position:fixed;pointer-events:none;z-index:99998;
    border:2px solid #D97706;border-radius:3px;
    box-shadow:0 0 0 4px rgba(217,119,6,.12);
    transition:top .07s,left .07s,width .07s,height .07s;
    display:none;
  }
  .te-hover-label{
    position:fixed;z-index:99999;
    background:#D97706;color:#fff;
    font-size:9px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
    padding:2px 6px;border-radius:2px;
    font-family:-apple-system,sans-serif;pointer-events:none;display:none;
    white-space:nowrap;
  }
/* ── Mega menu: it was being cut off, not failing to load ──────────
   Reported as "the mega menu doesn't fully load". It loads fine — the whole
   thing is in the DOM. It is TALLER THAN THE SPACE BELOW THE NAV.

   Six groups (Operations, Growth, Build, AI, Free, Marketplaces) in a
   4-column grid wrap onto a second row. .nav-dropdown is absolutely
   positioned with no max-height and no overflow, so that second row extends
   past the bottom of the window and is simply clipped — and because the
   panel has no scroller of its own, there is no way to reach it. Etsy and
   Amazon Management are unreachable from the nav on any laptop screen.

   The fix is a height budget and a scroller. 7.5rem covers the nav pill plus
   the 1rem offset plus breathing room at the bottom edge.

   overscroll-behavior: contain stops the scroll chaining to the page once
   the panel hits its end, which otherwise makes the menu feel like it is
   dragging the site around underneath it.
   ─────────────────────────────────────────────────────────────────── */
.nav-dropdown {
    max-height: calc(100vh - 7.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
}

/* A default scrollbar on a translucent dark panel reads as a system artifact
   sitting on top of the design. */
.nav-dropdown::-webkit-scrollbar { width: 10px; }
.nav-dropdown::-webkit-scrollbar-track { background: transparent; }
.nav-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.14);
    border-radius: 999px;
    border: 3px solid transparent;
    background-clip: content-box;
}
.nav-dropdown::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.26); background-clip: content-box; }
.nav-dropdown { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.18) transparent; }

/* On a short window the second row of groups is most of the panel, so give
   the columns somewhere to go before the scroller has to do all the work. */
@media (max-height: 860px) {
    .mega-menu { width: min(1180px, calc(100vw - 3rem)); }
    .mega-groups { grid-template-columns: repeat(6, 1fr); }
    .mega-group { padding-right: 0.9rem; }
    .mega-group + .mega-group { padding-left: 0.9rem; }
    .mega-link-desc { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES BENTO
   Rebuilt 2026-08-06, then stripped back the same day.

   THE FIRST VERSION WAS OVER-DECORATED AND ALWAZ WAS RIGHT ABOUT IT.
   Five accent hues, a coloured radial bloom in every tile, and a
   glow shadow tinted to each hue. Individually defensible, together a
   rainbow — it read as a startup template rather than an agency, which is
   the opposite of the brief.

   What replaced it: ONE accent. Amber is the brand; everything else is
   neutral. Surfaces separate by value, not by colour. No gradients inside
   tiles. No coloured shadows. Type runs on a single scale.

   The colour-per-service idea still lives on the blog covers, where the
   categories genuinely differ and the art is the content. Here the content
   is the words, and colour was decoration.
   ═══════════════════════════════════════════════════════════════════ */

#services-bento { padding-top: 5.5rem; }
.sb-header { margin-bottom: 3.4rem; }
.sb-title  { font-weight: 700; }

/* ── Surface ───────────────────────────────────────────────────────
   Flat, not gradient. The value step from the page (#0A0A12) to the tile
   is what separates them; a gradient inside the tile only muddies it. */
#services-bento .sb-tile {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 28px 28px 24px;
    transition:
        border-color .25s cubic-bezier(.2,.7,.3,1),
        background .25s cubic-bezier(.2,.7,.3,1),
        transform .25s cubic-bezier(.2,.7,.3,1);
}
#services-bento .sb-tile:hover {
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(255, 255, 255, 0.20);
    transform: translateY(-3px);
}

/* ── Type ──────────────────────────────────────────────────────────
   Two families, four sizes, and that is the whole system:
     Sora 700    tile heading, figures
     DM Sans 400 body and descriptions
     DM Sans 600 labels and the arrow
   The previous pass had headings at 500 and 700, figures at 800, labels in
   three sizes and two letter-spacings. That inconsistency is most of what
   reads as "unprofessional". */
#services-bento .sb-tile-h {
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.55rem;
}
#services-bento .sb-tile-d {
    max-width: 46ch;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.55);
}

#services-bento .sb-proof {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.4rem;
}

/* ── Figures ───────────────────────────────────────────────────────
   White, not amber. Two big amber numbers next to an amber arrow and an
   amber eyebrow was three uses of the accent in one tile; the accent stops
   meaning anything when everything is wearing it. */
#services-bento .sb-figures { display: flex; gap: 2.5rem; flex-wrap: wrap; }
#services-bento .sb-fig { display: flex; flex-direction: column; gap: 0.25rem; }
#services-bento .sb-fig-n {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}
#services-bento .sb-fig-l {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

/* ── Client roster ─────────────────────────────────────────────── */
#services-bento .sb-roster {
    list-style: none; margin: 0; padding: 0;
    max-width: 340px;
}
#services-bento .sb-roster li {
    display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}
#services-bento .sb-roster li span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.35); }
#services-bento .sb-roster-more {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.78rem !important;
    border-bottom: none !important;
}

/* ── Credit line ───────────────────────────────────────────────────
   The one place the accent is allowed, because it is the one thing on the
   tile that is a verifiable claim. */
#services-bento .sb-credit {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
}

/* ── Lists ─────────────────────────────────────────────────────── */
#services-bento .sb-stack {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 0.4rem;
}
#services-bento .sb-stack li,
#services-bento .sb-flow li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    padding: 0.35rem 0.6rem;
}
#services-bento .sb-flow {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
}
#services-bento .sb-flow li + li::before { content: none; }

#services-bento .sb-steps {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 0.65rem;
}
#services-bento .sb-steps li {
    display: flex; gap: 0.75rem; align-items: baseline;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
}
#services-bento .sb-step-n {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    font-variant-numeric: tabular-nums;
    flex: none;
}

/* ── Quote ─────────────────────────────────────────────────────── */
#services-bento .sb-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    border-left: 2px solid rgba(255, 255, 255, 0.18);
    padding-left: 1rem;
    margin: 0;
}
#services-bento .sb-quote-by {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding-left: calc(1rem + 2px);
}

/* ── Named work ────────────────────────────────────────────────── */
#services-bento .sb-workgrid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.25rem;
}
#services-bento .sb-workgrid li {
    display: flex; flex-direction: column; gap: 0.15rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
}
#services-bento .sb-workgrid strong {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}
#services-bento .sb-workgrid span { font-size: 0.74rem; color: rgba(255, 255, 255, 0.35); }

/* ── Certification ─────────────────────────────────────────────── */
#services-bento .sb-badge {
    align-self: flex-start;
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.65rem 1rem;
}

#services-bento .sb-note {
    font-size: 0.83rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.42);
    margin: 0;
    max-width: 52ch;
}
#services-bento .sb-note strong { color: rgba(255, 255, 255, 0.7); font-weight: 600; }

#services-bento .sb-mock-email { margin-top: 0.25rem; }

/* ── Arrow ─────────────────────────────────────────────────────── */
#services-bento .sb-tile-arrow {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
    transition: gap .25s ease;
}
#services-bento .sb-tile:hover .sb-tile-arrow { gap: 0.7rem; }

#services-bento .hp-field {
    position: absolute !important; left: -9999px !important;
    width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    #services-bento .sb-tile,
    #services-bento .sb-tile:hover,
    #services-bento .sb-tile-arrow,
    #services-bento .sb-tile:hover .sb-tile-arrow {
        transition: none; transform: none; gap: 0.4rem;
    }
}

@media (max-width: 1024px) {
    #services-bento .sb-workgrid { grid-template-columns: 1fr; }
    #services-bento .sb-figures { gap: 1.75rem; }
}
@media (max-width: 900px) {
    #services-bento { padding-top: 4rem; }
    .sb-header { margin-bottom: 2.4rem; }
}
@media (max-width: 768px) {
    /* home.css sets `section { padding: 2.75rem !important }` and
       `h2 { font-size: … !important }` under this breakpoint, written for the
       home page's own sections and reaching every section and h2 on the site.
       !important can only be beaten by !important. */
    #services-bento { padding-top: 6rem !important; padding-bottom: 3.5rem !important; }
    #services-bento .sb-tile { padding: 22px 20px 20px; }
    #services-bento .sb-roster { max-width: none; }
    .sb-title { font-size: clamp(1.7rem, 6.5vw, 2.2rem) !important; }
}

/* ── Mobile nav pill, continued ────────────────────────────────────
   The 768px block below the 900px one only tightened padding. With the pill
   now spanning the viewport it also needs the logo and burger anchored to
   opposite ends rather than sitting 2px apart in a max-content pill. */
@media (max-width: 768px) {
    #nav {
        width: calc(100vw - 24px);
        padding: 5px 5px 5px 14px;
        justify-content: space-between;
    }
    .logo-wordmark { display: inline; font-size: 0.95rem; }
    .hamburger { margin-left: auto; padding: 8px 6px; }
}

/* ── Mega menu typography ──────────────────────────────────────────
   The descriptions were a mix of noun phrases ("Custom theme and feature
   development"), imperatives ("Turn more visitors into buyers") and keyword
   lists ("Mobile apps, web apps, dashboards, websites"). Three grammars in
   one panel is most of what read as unprofessional; those are now one
   pattern in Nav.tsx.

   Typographically the descriptions were 0.7rem with default line-height,
   which at that size sets too tight and greys into mush. */
.mega-link-name {
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 0.82rem;
}
.mega-link-desc {
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 0.1rem;
}
.mega-link { padding: 0.5rem; }
/* Colour deliberately unchanged — the amber group labels are part of what
   Alwaz likes about this menu. Only the rhythm is adjusted. */
.mega-group-label {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.8rem;
}
