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

        body {
            font-family: 'Satoshi Variable', 'Satoshi', sans-serif;
            background: #ffffff;
            color: #0A0A0A;
            -webkit-font-smoothing: antialiased;
        }

        /* ── HEADER (matches portfolio) ── */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px max(80px, calc((100% - 1178px) / 2)) 16px max(131px, calc((100% - 1178px) / 2));
            width: 100%;
            box-sizing: border-box;
            background: transparent;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                        background 0.25s ease,
                        box-shadow 0.25s ease;
        }

        /* White bg only when scrolled up (JS adds this class) */
        .header--scrolled {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 1px 0 rgba(10, 24, 51, 0.08);
        }

        .header--hidden { transform: translateY(-110%); }

        .home-btn {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.2s ease;
        }

        .home-btn:hover {
            background-color: #F3F4F6;
        }

        .home-btn__icon {
            position: absolute;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.18s ease;
        }

        .home-btn__icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .home-btn__emoji {
            position: absolute;
            font-size: 22px;
            line-height: 1;
            opacity: 0;
            transition: opacity 0.18s ease;
            user-select: none;
        }

        .home-btn:hover .home-btn__icon { opacity: 0; }
        .home-btn:hover .home-btn__emoji { opacity: 1; }

        .site-nav {
            display: flex;
            align-items: center;
        }

        .site-nav a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 24px;
            font-family: 'Satoshi', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #0a1833;
            text-decoration: none;
            letter-spacing: 0.15px;
            text-transform: uppercase;
            position: relative;
        }

        .site-nav a::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 24px;
            right: 24px;
            height: 1.5px;
            background: #0a1833;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .site-nav a:hover::after {
            transform: scaleX(1);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 30;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: #0a1833;
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile nav overlay */
        .mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.97);
            z-index: 25;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            opacity: 0;
            transition: opacity 0.25s ease;
            pointer-events: none;
        }

        .mobile-nav.open {
            display: flex;
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav a {
            font-family: 'Satoshi', sans-serif;
            font-weight: 700;
            font-size: 32px;
            color: #0a1833;
            text-decoration: none;
            text-transform: uppercase;
            padding: 12px 40px;
            transition: background-color 0.2s ease;
        }

        .mobile-nav a:hover { background: rgba(10, 24, 51, 0.06); }

        /* Hero starts at top — header overlays it transparently */
        body { padding-top: 0; }

        /* ── FOOTER (matches portfolio) ── */
        .site-footer {
            padding: 120px max(131px, calc((100% - 1178px) / 2)) 24px;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            gap: 240px;
        }

        .footer-top {
            display: flex;
            align-items: flex-start;
            gap: 80px;
        }

        .footer-heading {
            font-family: 'Satoshi Variable', 'Satoshi', sans-serif;
            font-weight: 700;
            font-size: 40px;
            color: #0a1833;
            line-height: normal;
            flex-shrink: 0;
            width: 380px;
        }

        .footer-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .footer-desc {
            font-family: 'Satoshi Variable', 'Satoshi', sans-serif;
            font-weight: 400;
            font-size: 20px;
            line-height: 1.5;
            color: #0a1833;
        }

        .footer-ctas {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 24px;
            background: #0a1833;
            color: #fcfcfd;
            font-family: 'Satoshi Variable', 'Satoshi', sans-serif;
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 0.5px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .footer-btn:hover { background: #1a2d55; }

        .footer-link {
            font-family: 'Satoshi Variable', 'Satoshi', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: #0a1833;
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-thickness: 1px;
            white-space: nowrap;
            transition: opacity 0.2s;
        }

        .footer-link:hover { opacity: 0.6; }

        .footer-bottom {
            font-family: 'IBM Plex Mono', monospace;
            font-weight: 400;
            font-size: 14px;
            color: rgba(10, 24, 51, 0.48);
            letter-spacing: 0.02em;
            text-align: center;
            /* Cancel parent padding → full viewport width → always centred */
            margin-left:  min(-131px, calc((1178px - 100vw) / 2));
            margin-right: min(-131px, calc((1178px - 100vw) / 2));
            padding-left: 24px;
            padding-right: 24px;
            box-sizing: border-box;
        }

        @media (max-width: 768px) {
            .footer-bottom {
                margin-left:  -24px;
                margin-right: -24px;
            }
        }

        @media (max-width: 1140px) {
            .header { padding: 16px 40px 16px 60px; }
            .site-footer { padding-left: 60px; padding-right: 60px; }
            .footer-heading { width: 280px; font-size: 32px; }
            .footer-desc { font-size: 18px; }
        }

        @media (max-width: 768px) {
            .header { padding: 16px 24px; }
            .site-nav { display: none; }
            .hamburger { display: flex; }
            .site-footer { padding: 80px 24px 24px; gap: 160px; }
            .footer-top { flex-direction: column; gap: 32px; }
            .footer-heading { width: 100%; font-size: 28px; }
            .footer-desc { font-size: 16px; }
            .footer-link { font-size: 16px; }
        }

        /* ── STRIP REVEAL ── */
        .cs-reveal {
            position: relative;
            overflow: hidden;
        }

        .cs-reveal__strips {
            position: absolute;
            inset: 0;
            display: flex;
            z-index: 10;
            pointer-events: none;
        }

        .cs-reveal__strip {
            flex: 1;
            background: #ffffff;
            transform: translateY(0%);
            transform-origin: top center;
            transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
        }

        /* Once .is-revealed is added, strips slide down */
        .cs-reveal.is-revealed .cs-reveal__strip {
            transform: translateY(101%);
        }

        /* Stagger each strip — 11 strips matching portfolio hero */
        .cs-reveal__strip:nth-child(1)  { transition-delay: 0ms; }
        .cs-reveal__strip:nth-child(2)  { transition-delay: 40ms; }
        .cs-reveal__strip:nth-child(3)  { transition-delay: 80ms; }
        .cs-reveal__strip:nth-child(4)  { transition-delay: 120ms; }
        .cs-reveal__strip:nth-child(5)  { transition-delay: 160ms; }
        .cs-reveal__strip:nth-child(6)  { transition-delay: 200ms; }
        .cs-reveal__strip:nth-child(7)  { transition-delay: 240ms; }
        .cs-reveal__strip:nth-child(8)  { transition-delay: 280ms; }
        .cs-reveal__strip:nth-child(9)  { transition-delay: 320ms; }
        .cs-reveal__strip:nth-child(10) { transition-delay: 360ms; }
        .cs-reveal__strip:nth-child(11) { transition-delay: 400ms; }

        /* ── HERO ── */
        .cs-hero {
            position: relative;
            width: 100%;
            height: 840px;
            overflow: hidden;
            background: #F4F4F4;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .cs-hero--dark { background: #0A0A0A; }

        /* Upper text block — project title + tagline + tags */
        .cs-hero__text {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 184px 40px 48px;
            max-width: 760px;
            width: 100%;
        }

        .cs-hero__eyebrow {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(10,10,10,0.45);
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cs-hero__eyebrow span + span::before {
            content: '·';
            margin-right: 12px;
            opacity: 0.4;
        }

        .cs-hero--dark .cs-hero__eyebrow { color: rgba(255,255,255,0.5); }

        .cs-hero__title {
            font-size: clamp(32px, 4.5vw, 56px);
            font-weight: 900;
            letter-spacing: -0.035em;
            line-height: 1.06;
            color: #0A0A0A;
            margin-bottom: 16px;
        }

        .cs-hero--dark .cs-hero__title { color: #ffffff; }

        .cs-hero__tagline {
            font-size: clamp(15px, 1.4vw, 18px);
            font-weight: 400;
            color: rgba(10,10,10,0.55);
            line-height: 1.6;
        }

        .cs-hero--dark .cs-hero__tagline { color: rgba(255,255,255,0.55); }

        /* Lower media area — cover screenshot floats at the bottom */
        .cs-hero__media {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 76%;
            max-width: 960px;
            z-index: 1;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 -4px 48px rgba(0,0,0,0.10);
        }

        .cs-hero__media img {
            width: 100%;
            display: block;
            object-fit: cover;
            object-position: top;
            border-radius: 0;
        }

        .cs-hero__media-svg {
            width: 100%;
            display: block;
            border-radius: 0;
        }

        /* Responsive — tablet */
        @media (max-width: 1024px) {
            .cs-hero {
                height: auto;
                min-height: 600px;
                padding-bottom: 0;
            }
            .cs-hero__text { padding: 140px 40px 40px; }
            .cs-hero__media {
                position: relative;
                left: auto;
                transform: none;
                width: 90%;
                margin: 0 auto;
                border-radius: 0;
            }
        }

        /* Responsive — mobile */
        @media (max-width: 768px) {
            .cs-hero {
                height: auto;
                min-height: unset;
                padding-bottom: 0;
            }
            .cs-hero__text {
                padding: 100px 24px 32px;
                max-width: 100%;
            }
            .cs-hero__title { font-size: clamp(28px, 7vw, 40px); }
            .cs-hero__tagline { font-size: 15px; }
            .cs-hero__media {
                position: relative;
                left: auto;
                transform: none;
                width: 92%;
                margin: 0 auto;
                border-radius: 0;
            }
        }

        .cs-hero__svg {
            width: 100%;
            height: 100%;
        }

        /* ── LAYOUT WRAPPER ── */
        .cs-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Media container — same width as text */
        .cs-media-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ── PROJECT HEADER ── */
        .cs-header {
            padding: 64px 0 48px;
            border-bottom: 1px solid #E0E2EA;
        }

        .cs-header__eyebrow {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 16px;
        }

        .cs-header__title {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.08;
            color: #0A0A0A;
            margin-bottom: 16px;
        }

        .cs-header__tagline {
            font-size: 18px;
            font-weight: 400;
            color: #555;
            line-height: 1.6;
            max-width: 580px;
        }

        /* ── METADATA ── */
        .cs-meta {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 32px;
            padding: 40px 0;
            border-bottom: 1px solid #E0E2EA;
        }

        .cs-meta__item {}

        .cs-meta__label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 8px;
        }

        .cs-meta__value {
            font-size: 14px;
            font-weight: 500;
            color: #0A0A0A;
            line-height: 1.5;
        }

        /* ── SECTIONS ── */
        .cs-section {
            padding: 64px 0 0;
        }

        .cs-section-block {
            border-bottom: 1px solid #E0E2EA;
            padding-bottom: 64px;
        }

        .cs-section-block:last-of-type { border-bottom: none; }

        .cs-section__label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 20px;
        }

        .cs-section__heading {
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 700;
            letter-spacing: -0.025em;
            line-height: 1.2;
            color: #0A0A0A;
            margin-bottom: 20px;
        }

        .cs-section__body {
            font-size: 16px;
            font-weight: 400;
            color: #444;
            line-height: 1.75;
        }

        .cs-section__body p + p { margin-top: 16px; }

        /* ── CALLOUT / PULL QUOTE ── */
        .cs-callout {
            border-left: 3px solid #0A0A0A;
            padding: 20px 24px;
            margin: 40px 0;
            background: #F8F8F8;
        }

        .cs-callout p {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.6;
            color: #0A0A0A;
            font-style: italic;
        }

        /* ── MEDIA BLOCK (sits in .cs-media-wrap, wider than text) ── */
        .cs-media-block {
            padding: 40px 0 64px;
            border-bottom: 1px solid #E0E2EA;
        }

        .cs-media-block:last-of-type { border-bottom: none; }

        /* ── FULL-WIDTH IMAGE ── */
        .cs-img-full {
            width: 100%;
            border-radius: 0;
            overflow: hidden;
            background: #F4F4F4;
        }

        .cs-img-full img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        /* ── IMAGE GRID ── */
        .cs-img-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .cs-img-grid__item {
            border-radius: 0;
            overflow: hidden;
            background: #F4F4F4;
            aspect-ratio: 4/3;
        }

        .cs-img-grid__item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ── ASSET REVEAL ── */
        .cs-asset-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }

        .cs-asset-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── IMAGE CAPTION ── */
        .cs-img-caption {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: #999;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-top: 12px;
        }

        /* Stack multiple images in a section */
        .cs-img-full + .cs-img-full { margin-top: 16px; }

        /* ── PLACEHOLDER IMAGE ── */
        .cs-img-placeholder {
            width: 100%;
            aspect-ratio: 16/9;
            background: #F0F0F0;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px dashed #D0D0D0;
        }

        .cs-img-placeholder span {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: #BDBDBD;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        /* ── MORE WORK ── */
        .cs-more-work {
            padding: 80px 0 120px;
            border-top: 1px solid #E0E2EA;
        }

        .cs-more-work__label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 32px;
        }

        .cs-more-work__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        /* Reuse exact work-thumb card from home page */
        .cs-more-work .work-thumb {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .cs-more-work .work-thumb__img {
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #f5f5f5;
            position: relative;
            line-height: 0;
        }

        .cs-more-work .work-thumb__img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            transition: transform 0.5s ease;
        }

        .cs-more-work .work-thumb:hover .work-thumb__img img { transform: scale(1.03); }

        .cs-more-work .work-thumb__img-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: #BDBDBD;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .cs-more-work .work-thumb__info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cs-more-work .work-thumb__title {
            font-family: 'Satoshi', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: #0a1833;
            line-height: normal;
        }

        .cs-more-work .work-thumb__tags {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            color: rgba(10, 24, 51, 0.68);
            line-height: normal;
        }

        @media (max-width: 640px) {
            .cs-more-work__grid { grid-template-columns: 1fr; gap: 40px; }
            .cs-more-work { padding: 48px 0 0; }
        }

        /* ── TAGS / PILL LIST ── */
        .cs-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        .cs-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #555;
            background: #F0F0F0;
            border: 1px solid #E0E2EA;
            border-radius: 100px;
            padding: 4px 12px;
        }

        /* ── NOT FOUND ── */
        .cs-not-found {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: calc(100vh - 64px);
            gap: 16px;
            text-align: center;
        }

        .cs-not-found h2 {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .cs-not-found p {
            font-size: 15px;
            color: #888;
        }

        .cs-not-found a {
            margin-top: 8px;
            font-size: 14px;
            font-weight: 500;
            color: #0A0A0A;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 640px) {
            .cs-wrap { padding: 0 20px; }
            .cs-header { padding: 40px 0 32px; }
            .cs-meta { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 0; }
            .cs-section { padding: 48px 0; }
            .cs-img-grid { grid-template-columns: 1fr; }
        }
