/* Site styles + overrides for index.html (was inline). */
      .profile-avatar {
        background-image: url("../images/01.webp");
        background-position: 0% 5%;
      }
      .project-item {
        opacity: 1;
      }
      .project-status {
        position: absolute;
        right: 0;
        bottom: 0;
        font-family: "JetBrains Mono", ui-monospace, monospace;
        font-size: 10px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--grey3);
        white-space: nowrap;
      }

      /* Hover preview image that follows the cursor */
      .hover-preview {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        pointer-events: none;
        will-change: transform;
      }
      .hover-preview__inner {
        width: 230px;
        height: 165px;
        border-radius: 0;
        overflow: hidden;
        background: var(--wash2);
        box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.92);
        transition:
          opacity 0.18s ease,
          transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.1);
      }
      .hover-preview[data-show="true"] .hover-preview__inner {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
      .hover-preview__inner img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
      }
      @media (prefers-reduced-motion: reduce) {
        .hover-preview__inner {
          transition: opacity 0.12s ease;
          transform: translate(-50%, -50%);
        }
      }

      /* Contact links: dashed underline on hover */
      .contact-item .chip-link__text {
        border-bottom: 1px dashed var(--grey3);
        transition: border-bottom-color 0.18s ease;
      }

      /* Hide the scrollbar everywhere (scrolling still works) */
      html,
      body {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* old Edge/IE */
        overflow-x: clip; /* the page-shell zoom scales the fixed top-gradient past the edge */
      }
      html::-webkit-scrollbar,
      body::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
        width: 0;
        height: 0;
      }

      /* Accessibility: skip link (visible only on keyboard focus) */
      .skip-link {
        position: absolute;
        left: 8px;
        top: 8px;
        z-index: 100;
        padding: 8px 12px;
        border-radius: 6px;
        background: var(--grey1);
        color: #fff;
        font-size: 13px;
        line-height: 1;
        text-decoration: none;
        transform: translateY(-56px);
        transition: transform 0.15s ease-out;
      }
      .skip-link:focus {
        transform: translateY(0);
        outline: 2px solid var(--focus-color);
        outline-offset: 2px;
      }
      [tabindex="-1"]:focus {
        outline: none;
      }

      /* Header role subtitle (replaces the misused <time>) */
      .profile-info .profile-role {
        margin: 0;
        color: var(--grey3);
        font-size: 15px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: -0.00563rem;
      }

      /* Footer becomes a contentinfo landmark outside <main> */
      .site-footer {
        margin-top: 64px;
        animation: staggerIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.55s;
      }
      @media (prefers-reduced-motion: reduce) {
        .site-footer {
          animation: none;
        }
      }

      /* Products: show first 3, reveal the rest via "View all" */
      .project-item.is-extra-hidden {
        display: none;
      }
      .show-more-btn {
        margin-top: 16px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-size: 14px;
        line-height: 1;
        letter-spacing: -0.00563rem;
        color: var(--grey3);
        transition: color 0.12s ease;
      }
      .show-more-btn:hover {
        color: var(--grey1);
      }
      .show-more-btn:focus-visible {
        outline: 2px solid var(--focus-color);
        outline-offset: 3px;
        border-radius: 3px;
      }
      .show-more-btn .chev {
        transition: transform 0.2s ease;
      }
      .show-more-btn[aria-expanded="true"] .chev {
        transform: rotate(180deg);
      }
      .show-more-label {
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 1px;
      }
      #opensource-list .project-body {
        gap: 12px;
      }
      .case-study-link {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: 8px;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 12px;
        font-weight: 500;
        width: fit-content;
        color: var(--accent);
        border-bottom: 1px dashed transparent;
        transition: border-bottom-color 0.18s ease;
      }
      .case-study-link:hover {
        border-bottom-color: var(--accent);
      }
      .case-study-link.is-soon {
        color: var(--grey3);
        font-weight: 400;
        pointer-events: none;
      }
      .os-links {
        position: relative;
        z-index: 1;
        display: flex;
        gap: 16px;
        margin-top: 4px;
        width: fit-content;
      }
      .project-description .chip-link {
        position: relative;
        z-index: 1;
      }

      /* Pixel clouds (static, top-right) */
      .cloud {
        position: absolute;
        top: 0;
        background-image: url("../images/cloud.png?v=3");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        image-rendering: pixelated;
        z-index: 11;
        pointer-events: none;
      }
      .cloud-1 {
        top: 22px;
        left: calc(50% + 210px);
        width: 100px;
        height: 56px;
      }
      .cloud-2 {
        top: 66px;
        left: calc(50% + 168px);
        width: 64px;
        height: 36px;
      }
      @media (max-width: 900px) {
        .cloud-1,
        .cloud-2 {
          display: none;
        }
      }

      /* Sparrow: flies in, perches, idles, flies off */
      .bird {
        position: fixed;
        left: 0;
        bottom: 8px;
        z-index: 40;
        pointer-events: none;
        transform: translateX(-70px);
        will-change: transform;
      }
      .bird-lift {
        transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        transform: translateY(0);
      }
      .bird-lift.is-up {
        transform: translateY(-30px);
      }
      .bird-sprite {
        width: 50px;
        height: 40px;
        background-image: url("../images/runner.png?v=4");
        background-repeat: no-repeat;
        background-size: 150px 40px;
        background-position-x: -100px;
        image-rendering: pixelated;
      }
      .bird-sprite.is-flying {
        animation:
          birdFlap 0.28s steps(2) infinite,
          birdBob 1.1s ease-in-out infinite;
      }
      @keyframes birdFlap {
        from {
          background-position-x: 0;
        }
        to {
          background-position-x: -100px;
        }
      }
      @keyframes birdBob {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-4px);
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .bird {
          display: none;
        }
      }
      /* Visuals tiles: white-matted framed card look */
      .photo-scroller img {
        width: 184px;
        height: 248px;
        border: 5px solid #fff;
        border-radius: 10px;
        background: #fff;
        box-shadow:
          0 0 0 1px rgba(0, 0, 0, 0.07),
          0 2px 5px rgba(0, 0, 0, 0.04);
      }
      .video-scroller {
        align-items: center;
      }
      .video-scroller .video-tile {
        flex: 0 0 auto;
        display: block;
        line-height: 0;
      }
      .video-scroller video {
        width: 300px;
        height: 169px;
        object-fit: cover;
        border: 5px solid #fff;
        border-radius: 10px;
        background: #000;
        box-shadow:
          0 0 0 1px rgba(0, 0, 0, 0.07),
          0 2px 5px rgba(0, 0, 0, 0.04);
        display: block;
      }
      /* "Seeing stars" effect while the bird is perched */
      .bird-stars {
        position: absolute;
        left: 34px;
        top: -3px;
        width: 0;
        height: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
      }
      .bird.is-sitting .bird-stars {
        opacity: 1;
      }
      .star {
        position: absolute;
        left: -4px;
        top: -4px;
        width: 9px;
        height: 9px;
        background: #f6c945;
        clip-path: polygon(
          50% 0%,
          61% 35%,
          98% 35%,
          68% 57%,
          79% 91%,
          50% 70%,
          21% 91%,
          32% 57%,
          2% 35%,
          39% 35%
        );
        animation: birdOrbit 1.8s linear infinite;
        animation-play-state: paused;
      }
      .bird.is-sitting .star {
        animation-play-state: running;
      }
      .star:nth-child(2) {
        animation-delay: -0.6s;
      }
      .star:nth-child(3) {
        animation-delay: -1.2s;
      }
      @keyframes birdOrbit {
        0% {
          transform: translate(15px, 0);
        }
        12.5% {
          transform: translate(10.6px, 3.5px);
        }
        25% {
          transform: translate(0, 5px);
        }
        37.5% {
          transform: translate(-10.6px, 3.5px);
        }
        50% {
          transform: translate(-15px, 0);
        }
        62.5% {
          transform: translate(-10.6px, -3.5px);
        }
        75% {
          transform: translate(0, -5px);
        }
        87.5% {
          transform: translate(10.6px, -3.5px);
        }
        100% {
          transform: translate(15px, 0);
        }
      }
      /* Pixel trees (bottom-right ground decoration) */
      body {
        position: relative;
      }
      .tree {
        position: absolute;
        bottom: 0;
        background-image: url("../images/tree.png?v=3");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        image-rendering: pixelated;
        z-index: 11;
        pointer-events: none;
      }
      .tree-1 {
        left: calc(50% + 162px);
        width: 70px;
        height: 111px;
      }
      .tree-2 {
        left: calc(50% + 132px);
        width: 50px;
        height: 80px;
      }
      @media (max-width: 900px) {
        .tree-1,
        .tree-2 {
          display: none;
        }
      }
      /* A butterfly fluttering around the trees (both modes) */
      .garden > * {
        position: absolute;
        bottom: 0;
        z-index: 12;
        image-rendering: pixelated;
        pointer-events: none;
      }
      .garden svg { width: 100%; height: 100%; display: block; shape-rendering: crispEdges; }
      .butterfly {
        left: calc(50% + 158px);
        bottom: 44px;
        width: 19px;
        height: 16px;
        z-index: 12;
        will-change: transform;
        animation: bfFlight 11s ease-in-out infinite;
      }
      .bf-inner { display: block; width: 100%; height: 100%; animation: bfBob 0.9s ease-in-out infinite; }
      .bf-wing { transform-box: fill-box; }
      .bf-wing-l { transform-origin: right center; }
      .bf-wing-r { transform-origin: left center; }
      .bf-wing-l, .bf-wing-r { animation: bfFlap 0.16s ease-in-out infinite alternate; }
      @keyframes bfFlap { from { transform: scaleX(1); } to { transform: scaleX(0.32); } }
      @keyframes bfBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1.5px); } }
      @keyframes bfFlight {
        0%   { transform: translate(0, 0) rotate(-5deg); }
        14%  { transform: translate(16px, -20px) rotate(7deg); }
        28%  { transform: translate(38px, -8px) rotate(-4deg); }
        42%  { transform: translate(22px, -34px) rotate(9deg); }
        58%  { transform: translate(-4px, -22px) rotate(-7deg); }
        72%  { transform: translate(10px, -42px) rotate(5deg); }
        86%  { transform: translate(30px, -16px) rotate(-3deg); }
        100% { transform: translate(0, 0) rotate(-5deg); }
      }
      @media (max-width: 900px) {
        /* Keep the butterfly on mobile (trees + clouds drop away). Tuck it into
           the empty top-right corner; the margins leave room for the full
           flight path so it never clips off-screen. */
        .butterfly {
          left: auto;
          right: 50px;
          top: 50px;
          bottom: auto;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .butterfly, .bf-inner, .bf-wing-l, .bf-wing-r { animation: none; }
        .butterfly { bottom: 70px; }
      }

      .project-year .metric-label {
        top: 16px;
        color: var(--grey3);
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 0;
      }
      .profile-info h1 {
        display: inline-flex;
        align-items: center;
        gap: 5px;
      }
      .verified-tick {
        width: 19px;
        height: 19px;
        flex-shrink: 0;
        position: relative;
        top: 1px;
      }
      .profile-avatar {
        width: 106px;
        height: 106px;
        border-radius: 12px;
        border: 4px solid #fff;
        box-shadow:
          0 0 0 1px rgba(0, 0, 0, 0.08),
          0 2px 7px rgba(0, 0, 0, 0.06);
      }
      /* Chat */
      .chat {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-top: 16px;
      }
      .cb {
        margin: 0;
        font-size: 14px;
        line-height: 1.4;
        padding: 9px 14px;
        border-radius: 18px;
        width: fit-content;
        max-width: 80%;
      }
      .cb-them {
        align-self: flex-start;
        background: #f0f1f3;
        color: var(--grey1);
        border-bottom-left-radius: 5px;
      }
      .cb-you {
        align-self: flex-end;
        background: var(--accent);
        color: #fff;
        border-bottom-right-radius: 5px;
      }
      .chat-panel {
        align-self: flex-start;
        width: min(82%, 320px);
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin: 2px 0;
      }
      .chat-line {
        background: #f0f1f3;
        color: var(--grey1);
        padding: 10px 14px;
        border-radius: 14px;
        font-size: 14px;
        word-break: break-all;
      }
      .chat-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        padding: 10px;
        border-radius: 12px;
        border: none;
        background: #fff;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        color: var(--grey1);
        font-family: inherit;
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
        transition:
          background 0.15s ease,
          box-shadow 0.15s ease;
      }
      .chat-btn:hover {
        background: #fafbfc;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
      }
      .chat-btn svg {
        flex-shrink: 0;
      }
      .kbd {
        font-family: "JetBrains Mono", ui-monospace, monospace;
        font-size: 10px;
        padding: 1px 5px;
        border-radius: 5px;
        background: #fff;
        color: var(--grey2);
        box-shadow:
          inset 0 0 0 1px rgba(0, 0, 0, 0.15),
          0 1px 0 rgba(0, 0, 0, 0.08);
      }
      .copy-toast {
        position: fixed;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: var(--grey1);
        color: #fff;
        font-size: 13px;
        padding: 8px 15px;
        border-radius: 999px;
        opacity: 0;
        pointer-events: none;
        z-index: 1000;
        transition:
          opacity 0.2s ease-out,
          transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .copy-toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
      /* === Premium type system (re-consolidated) + top nav === */
      :root {
        --accent: #3b5bff;
        color-scheme: light only;
      }
      .profile-info h1 {
        font-family: "Bricolage Grotesque", "Hanken Grotesk", sans-serif;
        font-weight: 600;
        letter-spacing: -0.03em;
      }
      .homepage .article > header {
        gap: 18px;
      }
      .homepage .article > header .profile-info h1 {
        font-size: 24px;
      }
      /* tiny uppercase-mono section labels (the editorial premium signal) */
      .post-list-title,
      .photo-scroller-label {
        font-family: "JetBrains Mono", ui-monospace, monospace;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        color: var(--grey3);
      }
      /* hero metrics: mono + cobalt */
      .project-year {
        font-family: "JetBrains Mono", ui-monospace, monospace;
        font-size: 13px;
      }
      .project-year > span:first-child {
        color: var(--accent);
        font-weight: 500;
        letter-spacing: -0.04em;
      }
      .project-year .metric-label {
        top: 16px;
        color: var(--grey3);
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 0;
      }
      #clock {
        font-family: "JetBrains Mono", ui-monospace, monospace;
        letter-spacing: -0.02em;
      }
      .chip-link:hover .chip-link__text {
        border-bottom-color: var(--accent);
      }
      .project-title-link:hover .project-title-text {
        border-bottom-color: var(--accent);
      }
      .show-more-btn:hover {
        color: var(--accent);
      }
      .homepage > article.article {
        gap: 13px;
      }
      .cb-them + .cb-you,
      .cb-you + .cb-them,
      .cb-you + .chat-panel,
      .chat-panel + .cb-you,
      .chat-panel + .cb-them {
        margin-top: 13px;
      }
      .contact-list {
        display: grid;
        grid-template-columns: repeat(4, max-content);
        gap: 15px 34px;
        margin-top: 16px;
      }
      .contact-item {
        display: block;
      }
      .photo-scroller {
        padding-top: 10px;
        padding-bottom: 10px;
      }
      @media (max-width: 900px) {
        .cloud-1 {
          display: block;
          left: auto;
          right: 8px;
          top: 14px;
          width: 72px;
          height: 40px;
        }
        .cloud-2 {
          display: block;
          left: auto;
          right: 64px;
          top: 48px;
          width: 46px;
          height: 26px;
        }
        .tree-1 {
          display: block;
          left: auto;
          right: 8px;
          width: 54px;
          height: 86px;
        }
        .tree-2 {
          display: block;
          left: auto;
          right: 48px;
          width: 38px;
          height: 60px;
        }
      }

      /* Feature badges (inline, glass) */
      .badge {
        --c: #888888;
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        padding: 1px 7px 1px 8px;
        border-radius: 100px;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 10.5px;
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: 0;
        white-space: nowrap;
        text-decoration: none;
        vertical-align: 1px;
        /* Darkened text so small badge labels clear WCAG AA on the light fill,
           while the border/background keep the bright category hue. */
        color: color-mix(in srgb, var(--c) 55%, #111);
        border: 1px solid var(--c);
        border-color: color-mix(in srgb, var(--c) 36%, transparent);
        background: rgba(255, 255, 255, 0.5);
        background:
          linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.12)
          ),
          color-mix(in srgb, var(--c) 14%, rgba(255, 255, 255, 0.5));
        -webkit-backdrop-filter: blur(8px) saturate(1.7);
        backdrop-filter: blur(8px) saturate(1.7);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.85),
          inset 0 -2px 3px color-mix(in srgb, var(--c) 9%, transparent),
          0 1px 3px color-mix(in srgb, var(--c) 16%, transparent);
        transition:
          transform 0.16s ease,
          box-shadow 0.16s ease,
          background 0.16s ease;
      }
      .badge:hover {
      }
      .badge-arrow {
        flex-shrink: 0;
        opacity: 0.85;
        transition: transform 0.16s ease;
      }
      .badge:hover .badge-arrow {
        transform: translate(1px, -1px);
      }
      .badge--pink {
        --c: #ec4899;
      }
      .badge--red {
        --c: #f43f5e;
      }
      .badge--blue {
        --c: #3b82f6;
      }
      .badge--orange {
        --c: #f97316;
      }
      .badge--green {
        --c: #10b981;
      }
      /* GitHub activity */
      .gh-activity {
        margin-top: 40px;
        position: relative;
      }
      /* Two pandas in the contribution wall (Minimal only):
         left one munches sugarcane, the shy one ducks in on hover. */
      .gh-peek {
        position: absolute;
        overflow: hidden;
        z-index: 2;
        pointer-events: none;
      }
      .gh-peek-eat { left: -15px; top: 56px; width: 18px; height: 24px; }
      .gh-peek-shy { left: 188px; top: 14px; width: 24px; height: 24px; }
      .gh-panda {
        display: block;
        width: 24px;
        height: 20px;
        image-rendering: pixelated;
        will-change: transform;
      }
      .gh-panda svg, .gh-cane svg { width: 100%; height: 100%; display: block; shape-rendering: crispEdges; }
      /* eating panda: sits still holding its cane; hides behind the wall on hover */
      .gh-cane {
        position: absolute;
        left: 5px;
        top: 1px;
        width: 7px;
        height: 23px;
        z-index: 3;
        image-rendering: pixelated;
        transform: rotate(6deg);
      }
      .gh-eat-inner {
        position: absolute;
        inset: 0;
        transition: transform 0.45s cubic-bezier(0.5, 0, 0.2, 1);
      }
      .gh-activity:hover .gh-eat-inner { transform: translateX(30px); }
      /* shy panda: peeked by default, ducks inside when the chart is hovered */
      .gh-shy-inner {
        display: block;
        transform: translateY(24%);
        transition: transform 0.45s cubic-bezier(0.5, 0, 0.2, 1);
      }
      .gh-activity:hover .gh-shy-inner { transform: translateY(125%); }
      @media (prefers-reduced-motion: reduce) {
        .gh-eat-inner, .gh-shy-inner { transition: none; }
      }

      .gh-head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 16px;
      }
      .gh-link {
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 13px;
        color: var(--grey2);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: color 0.18s ease;
      }
      .gh-link:hover {
        color: var(--accent);
      }
      .gh-link svg {
        transition: transform 0.18s ease;
      }
      .gh-link:hover svg {
        transform: translate(1px, -1px);
      }
      .gh-graph {
        display: grid;
        grid-template-rows: repeat(7, 8px);
        grid-auto-flow: column;
        grid-auto-columns: 8px;
        gap: 2px;
        overflow-x: auto;
        scrollbar-width: none;
        min-height: 68px;
      }
      .gh-graph::-webkit-scrollbar {
        display: none;
      }
      .gh-cell {
        border-radius: 2px;
        background: #eceef3;
      }
      .gh-pad {
        background: transparent;
      }
      .gh-l0 {
        background: #eceef3;
      }
      .gh-l1 {
        background: #c6d2ff;
      }
      .gh-l2 {
        background: #93a8ff;
      }
      .gh-l3 {
        background: #6079ff;
      }
      .gh-l4 {
        background: #3b5bff;
      }
      .gh-foot {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-top: 12px;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 10.5px;
        color: var(--grey3);
      }
      .gh-foot-label {
        margin: 0 3px;
      }
      .gh-key {
        width: 8px;
        height: 8px;
        border-radius: 2px;
        display: inline-block;
      }

      /* ============ MODE TOGGLE ============ */
      .page-shell {
        position: relative;
        z-index: 0;
        transition: opacity 0.25s ease;
      }
      .page-shell.is-switching {
        opacity: 0;
      }
      .mode-toggle {
        position: absolute;
        top: 22px;
        left: 16px;
        z-index: 30;
        display: inline-flex;
        align-items: center;
        padding: 2.5px;
        border-radius: 999px;
        background: #f1f1f3;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
        width: fit-content;
      }
      .mode-btn {
        position: relative;
        z-index: 1;
        border: none;
        background: none;
        cursor: pointer;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 11.5px;
        font-weight: 600;
        padding: 4px 14px;
        border-radius: 999px;
        color: var(--grey3);
        transition: color 0.25s ease;
      }
      .mode-btn.is-active {
        color: var(--grey1);
      }
      .mode-thumb {
        position: absolute;
        top: 3px;
        left: 3px;
        height: calc(100% - 6px);
        width: calc(50% - 3px);
        border-radius: 999px;
        background: #fff;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
        transition: transform 0.3s cubic-bezier(0.34, 1.1, 0.64, 1);
      }
      body.creative-mode .mode-thumb {
        transform: translateX(100%);
      }

      /* ============ MODE SWITCHING ============ */
      .creative-only {
        display: none;
      }
      body.creative-mode .article,
      body.creative-mode .post-list,
      body.creative-mode .photo-scroller-section,
      body.creative-mode .gh-activity,
      body.creative-mode .site-footer {
        display: none;
      }
      body.creative-mode .creative-only {
        display: block;
        /* Fade + rise the creative view in on switch, so it doesn't pop. */
        animation: fvIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      @media (prefers-reduced-motion: reduce) {
        body.creative-mode .creative-only {
          animation: none;
        }
      }
      body.creative-mode .page-shell {
        max-width: min(600px, 92vw);
        /* Width is intentionally not animated: layout sizing can't run on the
           GPU and a scale() would distort text. The content swap is instant,
           so the page snaps cleanly with it. */
      }

      /* ============ CREATIVE HERO ============ */
      .creative-hero {
        margin-top: -5px;
      }
      .ch-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
      }
      .ch-role {
        font-family: "JetBrains Mono", ui-monospace, monospace;
        font-size: 13px;
        line-height: 1.5;
        color: var(--grey2);
      }
      .ch-name {
        display: flex;
        flex-wrap: wrap;
        gap: 0 0.3em;
        margin: 40px 0 0;
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 700;
        font-size: clamp(40px, 9vw, 84px);
        line-height: 0.95;
        letter-spacing: -0.035em;
        color: var(--accent);
      }
      .ch-tag {
        margin-top: 16px;
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(16px, 2.4vw, 22px);
        font-weight: 500;
        color: var(--grey1);
      }

      /* ============ FOLDERS ============ */
      .folders {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
        margin-top: 80px;
        padding-top: 10px;
      }
      .folder {
        display: flex;
        flex-direction: column;
        gap: 14px;
        text-decoration: none;
        transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
      }
      .folder:hover {
        transform: translateY(-8px);
      }
      .folder-graphic {
        position: relative;
        aspect-ratio: 1.16;
      }
      .folder-back {
        position: absolute;
        inset: 0;
        top: 11px;
        border-radius: 3px 13px 13px 13px;
        background: linear-gradient(160deg, var(--fc-l), var(--fc-d));
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
        z-index: 0;
      }
      .folder-tab {
        position: absolute;
        top: 0;
        left: 0;
        width: 42%;
        height: 17px;
        border-radius: 7px 7px 0 0;
        background: var(--fc-l);
        z-index: 0;
      }
      .folder-card {
        position: absolute;
        left: 11%;
        right: 11%;
        top: 7%;
        height: 70%;
        border-radius: 6px;
        border: 2px solid #fff;
        background: #fff center / contain no-repeat;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.22);
        transform-origin: bottom center;
        transition: transform 0.42s cubic-bezier(0.34, 1.3, 0.64, 1);
      }
      .folder-card-1 { background-image: var(--img1); z-index: 1; transform: rotate(-6deg) translateY(2px); }
      .folder-card-2 { background-image: var(--img2); z-index: 2; transform: rotate(4deg) translateY(1px); }
      .folder-card-3 { background-image: var(--img3); z-index: 3; transform: rotate(-1deg); }
      .folder:hover .folder-card {
        animation: cardShuffle 4s cubic-bezier(0.66, 0, 0.34, 1) infinite;
      }
      .folder:hover .folder-card-1 { animation-delay: 0s; }
      .folder:hover .folder-card-2 { animation-delay: -1.33s; }
      .folder:hover .folder-card-3 { animation-delay: -2.66s; }
      @keyframes cardShuffle {
        0%, 10% { transform: rotate(-1deg) translateY(0) scale(1); z-index: 4; }
        25% { transform: rotate(-5deg) translateY(-34px) scale(1.04); z-index: 6; }
        40% { transform: rotate(7deg) translateY(-8px) scale(0.96); z-index: 1; }
        55%, 70% { transform: rotate(5deg) translateY(2px) scale(0.91); z-index: 1; }
        88% { transform: rotate(2deg) translateY(1px) scale(0.95); z-index: 2; }
        100% { transform: rotate(-1deg) translateY(0) scale(1); z-index: 4; }
      }
      @media (prefers-reduced-motion: reduce) {
        .folder:hover .folder-card { animation: none; }
      }
      .folder-front {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 44%;
        border-radius: 5px 5px 13px 13px;
        background: linear-gradient(170deg, var(--fc-l), var(--fc-d));
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.35),
          0 -2px 5px rgba(0, 0, 0, 0.07);
        z-index: 0;
      }
      .folder-label {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }
      .folder-name {
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: var(--grey1);
      }
      .folder-sub {
        font-size: 11.5px;
        color: var(--grey3);
      }
      .folder--pink {
        --fc-l: #ff8fcf;
        --fc-d: #e8177a;
      }
      .folder--blue {
        --fc-l: #5a9bff;
        --fc-d: #1a5fd0;
      }
      .folder--yellow {
        --fc-l: #ffd75e;
        --fc-d: #e8a800;
      }
      .folder--dark {
        --fc-l: #3c3c3c;
        --fc-d: #131313;
      }
      .folder--green {
        --fc-l: #34d399;
        --fc-d: #059669;
      }
      .folder--orange {
        --fc-l: #fb923c;
        --fc-d: #ea580c;
      }

      /* ============ CREATIVE FOOTER ============ */
      .creative-footer {
        margin-top: 88px;
      }
      .cf-status {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 13px;
        color: var(--grey2);
      }
      .cf-dot {
        position: relative;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
      }
      .cf-dot::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: rgba(34, 197, 94, 0.45);
        animation: nowPulse 2s ease-out infinite;
      }
      /* Ring expands via transform/opacity only (GPU)  no box-shadow paint. */
      @keyframes nowPulse {
        0% {
          transform: scale(1);
          opacity: 0.6;
        }
        70%,
        100% {
          transform: scale(2.6);
          opacity: 0;
        }
      }
      .cf-name {
        margin: 12px 0 18px;
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 700;
        font-size: clamp(34px, 7vw, 72px);
        letter-spacing: -0.03em;
        line-height: 1;
        color: var(--grey1);
      }
      .cf-links {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }
      .cf-links a {
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: var(--grey2);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition:
          color 0.18s ease,
          border-color 0.18s ease;
      }
      .cf-links a:hover {
        color: var(--accent);
        border-bottom-color: var(--accent);
      }
      @media (prefers-reduced-motion: reduce) {
        .cf-dot,
        .cf-dot::after,
        .mode-thumb,
        .folder {
          animation: none;
          transition: none;
        }
      }

      /* folder buttons + purple */
      .folder {
        -webkit-appearance: none;
        appearance: none;
        border: none;
        background: none;
        font: inherit;
        text-align: left;
        padding: 0;
        cursor: pointer;
      }
      .folder--purple {
        --fc-l: #a78bfa;
        --fc-d: #7c3aed;
      }
      .fv-videos {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        margin-top: 4px;
      }
      .folder--teal {
        --fc-l: #2dd4bf;
        --fc-d: #0d9488;
      }
      .ch-blurb {
        margin-top: 14px;
        max-width: 60ch;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 15px;
        line-height: 1.5;
        color: var(--grey2);
      }
      /* open-in-place views */
      .folders[hidden] {
        display: none;
      }
      .folder-views {
        margin-top: 8px;
      }
      .folder-view[hidden] {
        display: none;
      }
      .folder-view {
        margin-top: 64px;
        animation: fvIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .fv-card--nolink {
        cursor: default;
      }
      .fv-card--nolink:hover {
        transform: none;
        border-color: #e7e7ec;
        box-shadow: none;
      }
      @keyframes fvIn {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }
      .fv-back {
        -webkit-appearance: none;
        appearance: none;
        border: none;
        background: none;
        cursor: pointer;
        padding: 0;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--grey3);
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: color 0.18s ease;
      }
      .fv-back:hover {
        color: var(--accent);
      }
      .fv-head {
        margin: 22px 0 24px;
      }
      .fv-title {
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 700;
        font-size: 26px;
        letter-spacing: -0.02em;
        color: var(--grey1);
        outline: none;
      }
      .fv-desc {
        margin-top: 7px;
        font-size: 14px;
        color: var(--grey2);
        max-width: 56ch;
      }
      .fv-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .fv-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 13px 15px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        background: #fafafa;
        text-decoration: none;
        transition:
          transform 0.16s ease,
          border-color 0.16s ease,
          background 0.16s ease,
          box-shadow 0.16s ease;
      }
      .fv-card:hover {
        transform: translateY(-2px);
        border-color: color-mix(in srgb, var(--accent) 42%, transparent);
        background: #fff;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      }
      .fv-card-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 0;
        flex: 1;
      }
      .fv-card-name {
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 600;
        font-size: 14.5px;
        color: var(--grey1);
      }
      .fv-card-desc {
        font-size: 13px;
        line-height: 1.4;
        color: var(--grey2);
      }
      .fv-card-meta {
        margin-top: 3px;
        font-family: "JetBrains Mono", ui-monospace, monospace;
        font-size: 10.5px;
        letter-spacing: 0.02em;
        color: var(--grey3);
      }
      .fv-card-arrow {
        color: var(--grey3);
        flex-shrink: 0;
        transition:
          color 0.16s ease,
          transform 0.16s ease;
      }
      .fv-card:hover .fv-card-arrow {
        color: var(--accent);
        transform: translate(1px, -1px);
      }

      /* tech skills (badges) */
      .ch-skills {
        margin-top: 120px;
      }
      .ch-skills-label {
        display: block;
        font-family: "JetBrains Mono", ui-monospace, monospace;
        font-size: 11px;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: var(--grey3);
        margin-bottom: 16px;
      }
      .ch-skills-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }
      .sk-badge {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: #fff;
        border: 1px solid #e4e4e7;
        box-shadow:
          inset 0 2px 5px rgba(0, 0, 0, 0.07),
          inset 0 -1px 0 rgba(255, 255, 255, 0.7);
        transition:
          transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1),
          box-shadow 0.2s ease,
          border-color 0.2s ease;
      }
      .sk-badge svg {
        width: 24px;
        height: 24px;
        display: block;
      }
      .sk-badge .sk-img {
        height: 30px;
        width: auto;
        display: block;
      }

      /* Pixel birds' nest above the Stack label. The babies are the same
         sparrow sprite (runner.png) shrunk down, so they read as its chicks. */
      .birds-nest {
        position: relative;
        width: 84px;
        height: 46px;
        margin: 0 0 14px -10px;
      }
      .birds-nest > * {
        position: absolute;
        image-rendering: pixelated;
      }
      .bn-nest-back { left: 6px; bottom: 6px; width: 72px; z-index: 0; }
      .bn-nest-back svg {
        width: 100%;
        height: auto;
        display: block;
        shape-rendering: crispEdges;
      }
      /* Chicks = runner.png sparrow (3 frames, shown 72x19) shrunk to 24x19. */
      .bn-baby {
        width: 18px;
        height: 14px;
        z-index: 2;
        background: url("../images/runner.png?v=4") no-repeat;
        background-size: 54px 14px;
        background-position-x: -36px; /* calm resting frame */
      }
      /* left chick: leans forward-down, pecking the worm (eating from below) */
      .bn-baby-1 {
        left: 14px;
        bottom: 19px;
        transform-origin: 68% 90%;
        animation: bnPeck 2.5s ease-in-out infinite;
      }
      /* right chick: flipped, lifting off with wings going (trying to fly) */
      .bn-baby-2 {
        left: 41px;
        bottom: 20px;
        transform-origin: 50% 100%;
        animation:
          bnLift 2.6s ease-in-out infinite,
          bnFlap 0.26s steps(1) infinite;
      }
      .bn-worm {
        position: absolute;
        left: 30px;
        bottom: 11px;
        width: 7px;
        height: 9px;
        z-index: 4;
        image-rendering: pixelated;
        transform-origin: 50% 100%;
        animation: bnWiggle 2.5s ease-in-out infinite;
      }
      .bn-worm svg { width: 100%; height: 100%; display: block; shape-rendering: crispEdges; }
      @keyframes bnPeck {
        0%, 58%, 100% { transform: rotate(20deg); }
        72% { transform: rotate(40deg); }
        85% { transform: rotate(29deg); }
      }
      @keyframes bnLift {
        0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); }
        50% { transform: scaleX(-1) translateY(-6px) rotate(-7deg); }
      }
      @keyframes bnFlap {
        0% { background-position-x: 0; }
        50% { background-position-x: -18px; }
        100% { background-position-x: 0; }
      }
      @keyframes bnWiggle {
        0%, 58%, 100% { transform: rotate(0deg); }
        70% { transform: rotate(-20deg) translateY(1px); }
        80% { transform: rotate(14deg); }
        90% { transform: rotate(-6deg); }
      }
      @media (prefers-reduced-motion: reduce) {
        .bn-baby-1, .bn-baby-2, .bn-worm { animation: none; }
        .bn-baby-1 { background-position-x: -36px; }
      }
      @media (max-width: 560px) {
        .birds-nest { transform: scale(0.85); transform-origin: left bottom; }
      }

      /* Gold mine / Receipts */
      .gold-mine {
        margin-top: 80px;
      }
      .gm-head {
        margin-bottom: 20px;
      }
      .gm-title {
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 700;
        font-size: 26px;
        letter-spacing: -0.02em;
        color: var(--grey1);
      }
      .gm-sub {
        margin-top: 3px;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 13.5px;
        color: var(--grey3);
      }
      .gold-mine .chat {
        max-width: 460px;
      }
      .gold-mine .cb {
        opacity: 0;
        transform: translateY(10px);
      }
      .gold-mine.is-revealed .cb {
        animation: gmBubble 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        animation-delay: calc(var(--i) * 0.08s);
      }
      @keyframes gmBubble {
        to {
          opacity: 1;
          transform: none;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .gold-mine .cb {
          opacity: 1;
          transform: none;
        }
        .gold-mine.is-revealed .cb {
          animation: none;
        }
      }

      /* === Motion polish (Emil Kowalski audit) === */
      /* Flat buttons didn't transition transform  add it so :active scales
         smoothly. (folder/fv-card already transition transform natively, so
         they're intentionally left out to keep their own curves/timing.) */
      .chat-btn,
      .show-more-btn,
      .mode-btn,
      .fv-back,
      .gh-link,
      .case-study-link {
        transition-property:
          color, background, background-color, border-color, box-shadow,
          transform;
        transition-duration: 0.16s;
        transition-timing-function: cubic-bezier(0.34, 1.1, 0.64, 1);
      }
      /* Press feedback  the interface should feel like it hears the user. */
      .chat-btn:active,
      .show-more-btn:active,
      .mode-btn:active,
      .fv-back:active,
      .gh-link:active,
      .case-study-link:active {
        transform: scale(0.97);
      }
      /* Compress the existing hover-lift on press instead of fighting it. */
      .fv-card:active {
        transform: translateY(-1px) scale(0.985);
      }
      .folder:active {
        transform: translateY(-4px) scale(0.99);
      }

      /* Don't leave hover-lifts stuck on touch devices (where :hover sticks
         after a tap). Only fine-pointer devices keep the lift. */
      @media (hover: none) {
        .folder:hover,
        .fv-card:hover,
        .folder:hover .folder-card-1,
        .folder:hover .folder-card-2,
        .folder:hover .folder-card-3 {
          transform: none;
        }
      }

      /* signature reveal: name letters + tagline animate in on Creative */
      .ch-name > span {
        overflow: hidden;
        padding-bottom: 0.14em;
        margin-bottom: -0.14em;
      }
      .rv-char {
        display: inline-block;
        transform: translateY(115%);
        will-change: transform;
      }
      body.creative-mode .ch-name .rv-char {
        animation: rvUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: calc(var(--i) * 0.035s);
      }
      body.creative-mode .ch-tag {
        opacity: 0;
        animation: rvFade 0.6s ease 0.5s forwards;
      }
      body.creative-mode .ch-blurb {
        opacity: 0;
        animation: rvFade 0.6s ease 0.62s forwards;
      }
      @keyframes rvUp {
        to {
          transform: translateY(0);
        }
      }
      @keyframes rvFade {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        body.creative-mode .ch-name .rv-char,
        body.creative-mode .ch-tag,
        body.creative-mode .ch-blurb {
          animation: none;
          opacity: 1;
          transform: none;
        }
      }

      /* Folders cascade in on Creative */
      body.creative-mode .folders .folder {
        opacity: 0;
        animation: folderIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        animation-delay: calc(0.35s + var(--i, 0) * 0.07s);
      }
      @keyframes folderIn {
        from {
          opacity: 0;
          transform: translateY(18px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        body.creative-mode .folders .folder {
          animation: none;
          opacity: 1;
        }
      }

      /* favicon tile on each card */
      .fv-card-icon {
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        background: #fff;
        border: 1px solid #ececf0;
        overflow: hidden;
      }
      .fv-card-icon img,
      .fv-card-icon svg {
        width: 22px;
        height: 22px;
        object-fit: contain;
        display: block;
      }

      .fv-card-icon--mono {
        --h: 220; /* unique hue per tile (set inline); drives the gradient */
        background:
          radial-gradient(
            125% 125% at 22% 18%,
            hsl(calc(var(--h) - 20) 96% 74%) 0%,
            hsl(var(--h) 86% 58%) 46%,
            hsl(calc(var(--h) + 42) 82% 47%) 100%
          );
        border-color: transparent;
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.4),
          0 2px 6px hsl(var(--h) 70% 45% / 0.32);
      }
          @media (max-width: 600px) {
        .folders { grid-template-columns: repeat(2, 1fr); }
      }
      @media (max-width: 380px) {
        .folders { grid-template-columns: 1fr; }
      }

      /* Section mascots: a dog perched over Client works, a frog over Vibe coding */
      .has-mascot { position: relative; }
      .section-mascot {
        position: absolute;
        left: 0;
        bottom: calc(100% - 3px);
        width: 32px;
        z-index: 5;
        pointer-events: none;
        image-rendering: pixelated;
      }
      .section-mascot svg { width: 100%; height: auto; display: block; shape-rendering: crispEdges; }
      /* dog: shakes its head now and then, tail always wagging */
      .dog-head { transform-box: fill-box; transform-origin: 50% 92%; animation: dogShake 5s ease-in-out infinite; }
      .dog-tail { transform-box: fill-box; transform-origin: 12% 88%; animation: dogWag 0.45s ease-in-out infinite alternate; }
      @keyframes dogShake {
        0%, 68%, 100% { transform: rotate(0deg); }
        74% { transform: rotate(-10deg); }
        80% { transform: rotate(10deg); }
        86% { transform: rotate(-7deg); }
        92% { transform: rotate(4deg); }
      }
      @keyframes dogWag { from { transform: rotate(-12deg); } to { transform: rotate(16deg); } }
      /* frog: blinks now and then, throat gently puffs */
      .frog-eye { transform-box: fill-box; transform-origin: 50% 55%; animation: frogBlink 4.4s ease-in-out infinite; }
      .frog-throat { transform-box: fill-box; transform-origin: 50% 0%; animation: frogPuff 2.6s ease-in-out infinite; }
      @keyframes frogBlink {
        0%, 91%, 100% { transform: scaleY(1); }
        95% { transform: scaleY(0.1); }
      }
      @keyframes frogPuff {
        0%, 100% { transform: scaleY(1); }
        50% { transform: scaleY(1.5); }
      }
      @media (prefers-reduced-motion: reduce) {
        .dog-head, .dog-tail, .frog-eye, .frog-throat { animation: none; }
      }

      /* Scale the whole layout up on large desktops so the 540px column isn't
         lost in whitespace. zoom keeps proportions + line-length intact (vs just
         widening, which would make text lines too long to read comfortably). */
      @media (min-width: 1600px) { .page-shell, .cloud, .tree { zoom: 1.15; } }
      @media (min-width: 1920px) { .page-shell, .cloud, .tree { zoom: 1.3; } }
      @media (min-width: 2560px) { .page-shell, .cloud, .tree { zoom: 1.55; } }

      /* Lenis smooth scroll  while active, it owns scrolling, so turn off the
         native smooth-scroll to avoid double-easing. (Reduced-motion users get
         no Lenis, so native behaviour is untouched for them.) */
      html.lenis,
      html.lenis body {
        height: auto;
      }
      html.lenis {
        scroll-behavior: auto !important;
      }
      .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
      }
      .lenis.lenis-stopped {
        overflow: clip;
      }
      .lenis.lenis-smooth iframe {
        pointer-events: none;
      }
