    .hero-headline,
    h1, h2, h3 {
      font-family: Montserrat, "DM Sans", system-ui, sans-serif;
    }

    .hero-headline {
      font-size: clamp(2.5rem, 8vw, 5.5rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .dual-message-stack {
      display: inline-grid;
      vertical-align: bottom;
    }
    .dual-message-stack > * {
      grid-area: 1 / 1;
    }
    .dual-text-default {
      transition: opacity 0.35s ease;
    }
    .dual-text-hover {
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .dual-message:hover .dual-text-default,
    .dual-message:focus-within .dual-text-default {
      opacity: 0;
    }
    .dual-message:hover .dual-text-hover,
    .dual-message:focus-within .dual-text-hover {
      opacity: 1;
    }

    .underline-grow {
      background: linear-gradient(currentColor, currentColor) left bottom / 0 1px no-repeat;
      transition: background-size 0.35s ease;
    }
    .group:hover .underline-grow,
    .group:focus-within .underline-grow {
      background-size: 100% 1px;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 40s linear infinite;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (prefers-reduced-motion: reduce) {
      .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
      html { scroll-behavior: auto; }
      .dual-text-default,
      .dual-text-hover,
      .underline-grow { transition: none; }
      .dual-message:hover .dual-text-default,
      .dual-message:focus-within .dual-text-default {
        opacity: 1;
      }
      .dual-message:hover .dual-text-hover,
      .dual-message:focus-within .dual-text-hover {
        opacity: 0;
      }
    }

    /* === Logo shrink on scroll === */
    :root {
      --logo-height: 2.75rem;
      --logo-height-scrolled: 1.75rem;
    }
    @media (min-width: 768px) {
      :root {
        --logo-height: 3.25rem;
        --logo-height-scrolled: 2rem;
      }
    }
    #site-logo {
      height: var(--logo-height);
      transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #site-header.is-scrolled #site-logo {
      height: var(--logo-height-scrolled);
    }

    /* === Mobile nav full-screen takeover === */
    body.mobile-nav-open {
      overflow: hidden;
    }

    #site-header.is-menu-open {
      border-color: transparent;
      background: transparent;
      backdrop-filter: none;
    }
    #site-header.is-menu-open .mobile-nav-header-cta {
      opacity: 0;
      pointer-events: none;
      transform: translateY(-2px);
    }

    .menu-toggle-bars {
      position: relative;
      display: block;
      width: 1.25rem;
      height: 1rem;
    }
    .menu-toggle-bar {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1.5px;
      border-radius: 1px;
      background: currentColor;
      transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease;
    }
    .menu-toggle-bar:nth-child(1) { top: 0; }
    .menu-toggle-bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .menu-toggle-bar:nth-child(3) { top: 100%; transform: translateY(-100%); }
    #site-header.is-menu-open .menu-toggle-bar:nth-child(1) {
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
    }
    #site-header.is-menu-open .menu-toggle-bar:nth-child(2) {
      opacity: 0;
    }
    #site-header.is-menu-open .menu-toggle-bar:nth-child(3) {
      top: 50%;
      transform: translateY(-50%) rotate(-45deg);
    }

    .mobile-nav-overlay {
      position: fixed;
      inset: 0;
      z-index: 49;
      visibility: hidden;
      pointer-events: none;
      clip-path: circle(0% at calc(100% - 2.75rem) 2.75rem);
      transition:
        clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.7s;
    }
    .mobile-nav-overlay.is-open {
      visibility: visible;
      pointer-events: auto;
      clip-path: circle(150% at calc(100% - 2.75rem) 2.75rem);
      transition:
        clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0s;
    }

    .mobile-nav-bg {
      position: absolute;
      inset: 0;
      background: #18191d;
      overflow: hidden;
    }
    .mobile-nav-orb-coral {
      width: min(320px, 70vw);
      height: min(320px, 70vw);
      top: -10%;
      right: -15%;
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.9s ease 0.15s, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
    }
    .mobile-nav-orb-teal {
      width: min(280px, 65vw);
      height: min(280px, 65vw);
      bottom: 5%;
      left: -18%;
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.9s ease 0.25s, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
    }
    .mobile-nav-overlay.is-open .mobile-nav-orb-coral,
    .mobile-nav-overlay.is-open .mobile-nav-orb-teal {
      opacity: 0.12;
      transform: scale(1);
    }
    .mobile-nav-dot-grid {
      position: absolute;
      inset: 0;
      opacity: 0.02;
      background-image: radial-gradient(circle, #e8ecf2 1px, transparent 1px);
      background-size: 32px 32px;
    }

    .mobile-nav-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100%;
      padding: calc(var(--logo-height) + 2.5rem) 1.5rem 2rem;
    }
    .mobile-nav-list ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .mobile-nav-link {
      padding: 0.5rem 0;
    }
    .mobile-nav-index {
      display: block;
      margin-bottom: 0.35rem;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.6875rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(154, 165, 181, 0.65);
    }
    .mobile-nav-label {
      display: block;
      font-family: Montserrat, "DM Sans", system-ui, sans-serif;
      font-size: clamp(2.25rem, 10vw, 3.5rem);
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: #e8ecf2;
      transition: color 0.35s ease;
    }
    .mobile-nav-link--active .mobile-nav-label {
      color: #ed3286;
    }
    .mobile-nav-link--active {
      position: relative;
      padding-left: 0.75rem;
    }
    .mobile-nav-link--active::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.65rem;
      bottom: 0.65rem;
      width: 2px;
      border-radius: 1px;
      background: #ed3286;
    }
    .mobile-nav-link:not(.mobile-nav-link--active):hover .mobile-nav-label,
    .mobile-nav-link:not(.mobile-nav-link--active):focus-visible .mobile-nav-label {
      color: #ed3286;
    }
    .mobile-nav-link .reveal-line-inner {
      opacity: 0;
      transform: translateY(110%);
      transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
      transition-delay: calc(var(--reveal-delay, 0) * 1ms + 200ms);
    }
    .mobile-nav-overlay.is-open .mobile-nav-link .reveal-line-inner {
      opacity: 1;
      transform: translateY(0);
    }
    .mobile-nav-overlay:not(.is-open) .mobile-nav-link .reveal-line-inner {
      transition-duration: 0s;
      transition-delay: 0s;
    }

    .mobile-nav-footer {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .mobile-nav-cta {
      opacity: 0;
      transform: translateY(0.75rem);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: 520ms;
    }
    .mobile-nav-overlay.is-open .mobile-nav-cta {
      opacity: 1;
      transform: translateY(0);
    }
    .mobile-nav-meta {
      opacity: 0;
      transition: opacity 0.5s ease 0.6s;
    }
    .mobile-nav-overlay.is-open .mobile-nav-meta {
      opacity: 1;
    }
    .mobile-nav-overlay:not(.is-open) .mobile-nav-cta,
    .mobile-nav-overlay:not(.is-open) .mobile-nav-meta {
      transition-duration: 0s;
      transition-delay: 0s;
    }

    .mobile-nav-header-cta {
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    @media (prefers-reduced-motion: reduce) {
      .mobile-nav-overlay {
        clip-path: none;
        transition: visibility 0s;
      }
      .mobile-nav-overlay.is-open {
        transition: visibility 0s;
      }
      .mobile-nav-orb-coral,
      .mobile-nav-orb-teal {
        transition: none;
        opacity: 0.12;
        transform: none;
      }
      .mobile-nav-link .reveal-line-inner,
      .mobile-nav-cta,
      .mobile-nav-meta {
        opacity: 1;
        transform: none;
        transition: none;
      }
      .menu-toggle-bar {
        transition: none;
      }
    }

    .nav-current {
      font-size: 0.875rem;
      font-weight: 500;
      color: #ed3286;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 1rem;
      z-index: 60;
      padding: 0.5rem 1rem;
      border-radius: 0.375rem;
      background: #252d3a;
      font-size: 0.875rem;
      font-weight: 500;
    }
    .skip-link:focus {
      left: 1.5rem;
      outline: 2px solid rgba(65, 159, 216, 0.5);
      outline-offset: 2px;
    }

    .project-card-visual {
      background: linear-gradient(135deg, var(--card-from) 0%, var(--card-to) 100%);
    }
    .project-card-visual img {
      transition: transform 0.5s ease, opacity 0.3s ease;
    }
    .project-card:hover .project-card-visual img {
      transform: scale(1.04);
    }
    .project-card:hover .project-arrow {
      transform: translateX(4px);
    }
    .project-card:hover .project-card-visual {
      opacity: 1;
    }

    .brand-item {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 7rem;
      padding: 0.875rem 2rem;
      transition: transform 0.3s ease;
    }
    .brand-item:hover {
      transform: translateY(-2px);
    }
    .brand-logo {
      width: 100%;
      height: 4rem;
      max-width: 100%;
      object-fit: contain;
      object-position: center;
      opacity: 0.38;
      filter: grayscale(100%) brightness(0) invert(1);
      transition: opacity 0.35s ease, filter 0.35s ease, transform 0.3s ease;
    }
    @media (min-width: 640px) {
      .brand-item {
        min-height: 8.5rem;
        padding: 1rem 2.25rem;
      }
      .brand-logo {
        height: 5rem;
      }
    }
    @media (min-width: 1024px) {
      .brand-item {
        min-height: 9.5rem;
        padding: 1rem 2.75rem;
      }
      .brand-logo {
        height: 5.5rem;
      }
    }
    .brand-logo--light-bg {
      mix-blend-mode: screen;
      filter: grayscale(100%);
      opacity: 0.42;
    }
    .brand-item:hover .brand-logo {
      opacity: 0.82;
      transform: scale(1.04);
    }
    .brand-item:hover .brand-logo--light-bg {
      opacity: 0.72;
    }

    /* Scroll & load reveals */
    .reveal {
      opacity: 0;
      transform: translateY(1.25rem);
      transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: calc(var(--reveal-delay, 0) * 1ms);
      will-change: opacity, transform;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-fade {
      transform: none;
    }
    .reveal-left {
      transform: translateX(-1.5rem);
    }
    .reveal-left.is-visible {
      transform: translateX(0);
    }
    .reveal-blur {
      filter: blur(6px);
      transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-blur.is-visible {
      filter: blur(0);
    }

    .hero-enter {
      opacity: 0;
      transform: translateY(1.5rem);
      animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: calc(var(--hero-delay, 0) * 1ms);
    }
    @keyframes heroFadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal-line {
      display: block;
      overflow: hidden;
    }
    .reveal-line-inner {
      display: block;
      opacity: 0;
      transform: translateY(110%);
      transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
      transition-delay: calc(var(--reveal-delay, 0) * 1ms);
    }
    .reveal-line.is-visible .reveal-line-inner {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-line .reveal-line-inner {
      animation: lineReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: calc(var(--reveal-delay, 0) * 1ms);
    }
    @keyframes lineReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal,
      .reveal-blur {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
      }
      .hero-enter {
        opacity: 1;
        transform: none;
        animation: none;
      }
      .reveal-line-inner {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
      }
      .hero-line .reveal-line-inner {
        animation: none;
      }
    }

    /* (Legacy topo-layer rules removed; see .topo-bg below.) */

    .color-orb {
      pointer-events: none;
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      z-index: 1;
    }
    .orb-coral { background: #ed3286; }
    .orb-teal { background: #5dc1a5; }
    .orb-blue { background: #419fd8; }
    .orb-gold { background: #ffc416; }

    .hero-orb-coral {
      width: min(420px, 55vw);
      height: min(420px, 55vw);
      top: -8%;
      right: -6%;
      opacity: 0.14;
    }
    .hero-orb-blue {
      width: min(380px, 50vw);
      height: min(380px, 50vw);
      bottom: 5%;
      left: -8%;
      opacity: 0.12;
    }
    .hero-orb-gold {
      width: min(280px, 40vw);
      height: min(280px, 40vw);
      top: 42%;
      left: 38%;
      opacity: 0.08;
    }

    .brands-gradient-band {
      pointer-events: none;
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(
        105deg,
        rgba(237, 50, 134, 0.08) 0%,
        rgba(93, 193, 165, 0.05) 45%,
        rgba(65, 159, 216, 0.09) 100%
      );
    }
    .brands-orb-pink {
      width: 320px;
      height: 320px;
      top: 10%;
      left: -5%;
      opacity: 0.1;
    }
    .brands-orb-blue {
      width: 360px;
      height: 360px;
      bottom: 0;
      right: -8%;
      opacity: 0.1;
    }

    .work-orb-teal {
      width: 400px;
      height: 400px;
      top: -5%;
      right: -10%;
      opacity: 0.11;
    }
    .work-orb-coral {
      width: 340px;
      height: 340px;
      bottom: 10%;
      left: -12%;
      opacity: 0.09;
    }

    .cta-orb-coral {
      width: min(480px, 70vw);
      height: min(480px, 70vw);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0.12;
    }
    .cta-gradient-wash {
      pointer-events: none;
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(
        ellipse 80% 60% at 50% 60%,
        rgba(237, 50, 134, 0.07) 0%,
        transparent 70%
      );
    }

    #hero-canvas {
      z-index: 2;
      opacity: 0.45;
      mix-blend-mode: screen;
    }
    .hero-canvas-static {
      display: none;
    }

    .section-content {
      position: relative;
      z-index: 10;
    }

    /* === Topographic contour layers === */
    .topo-bg {
      pointer-events: none;
      position: absolute;
      inset: 0;
      overflow: hidden;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      z-index: 1;
    }
    .topo-bg.topo-bg-dark {
      background-image: url('../topo-contours-mono-dark.svg');
      mix-blend-mode: screen;
      opacity: 0.45;
    }
    .topo-bg.topo-bg-light {
      background-image: url('../topo-contours-mono-light.svg');
      mix-blend-mode: multiply;
      opacity: 0.5;
    }
    .topo-bg.topo-bg-brand {
      background-image: url('../topo-contours-brand.svg');
      mix-blend-mode: screen;
      opacity: 0.55;
    }
    .topo-bg.topo-bg-faint { opacity: 0.18; }
    .topo-bg.topo-bg-soft { opacity: 0.3; }
    .topo-bg.topo-bg-drift {
      background-size: 130% auto;
      animation: topoBgDrift 90s linear infinite;
    }
    @keyframes topoBgDrift {
      0% { background-position: 0% 0%; }
      100% { background-position: -180px -120px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .topo-bg.topo-bg-drift { animation: none; }
    }

    /* === Status pill + live strip === */
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.3rem 0.85rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 196, 22, 0.25);
      background: rgba(255, 196, 22, 0.08);
      color: #ffc416;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .status-pill .pulse {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #ffc416;
      box-shadow: 0 0 0 0 rgba(255, 196, 22, 0.55);
      animation: pulsePill 2.2s ease-out infinite;
    }
    @keyframes pulsePill {
      0%   { box-shadow: 0 0 0 0 rgba(255, 196, 22, 0.55); }
      70%  { box-shadow: 0 0 0 10px rgba(255, 196, 22, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 196, 22, 0); }
    }
    .live-strip {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(154, 165, 181, 0.7);
    }
    .live-strip-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #5dc1a5;
      box-shadow: 0 0 12px rgba(93, 193, 165, 0.6);
    }
    @media (prefers-reduced-motion: reduce) {
      .status-pill .pulse { animation: none; }
    }

    /* === Custom cursor === */
    .cursor-dot, .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      will-change: transform, width, height;
    }
    .cursor-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #e8ecf2;
      mix-blend-mode: difference;
      transition: opacity 0.2s ease;
    }
    .cursor-ring {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(232, 236, 242, 0.5);
      mix-blend-mode: difference;
      transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                  height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                  border-color 0.3s ease,
                  opacity 0.25s ease;
    }
    .cursor-ring.is-hover {
      width: 64px;
      height: 64px;
      border-color: rgba(237, 50, 134, 0.85);
    }
    .cursor-dot.is-hidden, .cursor-ring.is-hidden { opacity: 0; }
    body.cursor-active,
    body.cursor-active a,
    body.cursor-active button,
    body.cursor-active [role="button"] {
      cursor: none;
    }
    body.cursor-active input,
    body.cursor-active textarea {
      cursor: text;
    }
    @media (pointer: coarse), (prefers-reduced-motion: reduce) {
      .cursor-dot, .cursor-ring { display: none !important; }
      body, body.cursor-active { cursor: auto !important; }
    }

    /* === Scroll progress + section index === */
    .scroll-progress {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 2px;
      z-index: 60;
      pointer-events: none;
      background: rgba(232, 236, 242, 0.04);
    }
    .scroll-progress-fill {
      width: 100%;
      height: 100%;
      transform-origin: top;
      transform: scaleY(0);
      background: linear-gradient(to bottom, #ed3286, #ffc416);
    }
    .section-index {
      position: fixed;
      right: 1.25rem;
      top: 50%;
      transform: translateY(-50%);
      z-index: 50;
      display: none;
      flex-direction: column;
      gap: 0.85rem;
    }
    @media (min-width: 1024px) {
      .section-index { display: flex; }
    }
    .section-index-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(232, 236, 242, 0.18);
      border: 0;
      padding: 0;
      cursor: pointer;
      position: relative;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .section-index-dot::after {
      content: attr(data-label);
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%) translateX(-6px);
      opacity: 0;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(232, 236, 242, 0.9);
      background: rgba(24, 25, 29, 0.85);
      padding: 3px 8px;
      border-radius: 4px;
      white-space: nowrap;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .section-index-dot:hover::after {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }
    .section-index-dot.is-active {
      background: #ed3286;
      transform: scale(1.5);
    }
    @media (prefers-reduced-motion: reduce) {
      .section-index-dot, .scroll-progress-fill { transition: none; }
    }

    /* === Magnetic === */
    .magnetic {
      display: inline-flex;
      transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
      will-change: transform;
    }
    @media (prefers-reduced-motion: reduce) {
      .magnetic { transition: none; transform: none !important; }
    }

    /* === Proof bar === */
    .proof-bar {
      background: rgba(31, 33, 40, 0.4);
      border-top: 1px solid rgba(232, 236, 242, 0.06);
      border-bottom: 1px solid rgba(232, 236, 242, 0.06);
    }
    .stat-number {
      font-family: Montserrat, sans-serif;
      font-weight: 600;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: -0.04em;
      line-height: 1;
      background: linear-gradient(135deg, #e8ecf2 0%, #9aa5b5 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* === Work card stat overlay === */
    .work-stat-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, rgba(24, 25, 29, 0.65) 0%, rgba(24, 25, 29, 0.95) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 5;
      padding: 1.5rem;
      text-align: center;
    }
    .project-card:hover .work-stat-overlay,
    .project-card:focus-visible .work-stat-overlay {
      opacity: 1;
    }
    .work-stat-big {
      font-family: Montserrat, sans-serif;
      font-weight: 600;
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: #e8ecf2;
    }
    @media (prefers-reduced-motion: reduce) {
      .work-stat-overlay { transition: none; }
    }

    /* === Capabilities kinetic list === */
    .capabilities-list {
      border-top: 1px solid rgba(232, 236, 242, 0.08);
    }
    .cap-row {
      border-bottom: 1px solid rgba(232, 236, 242, 0.08);
      transition: opacity 0.35s ease;
    }
    .cap-row-trigger {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.6rem 0;
      width: 100%;
      text-align: left;
      background: none;
      border: 0;
      color: inherit;
      cursor: pointer;
      font: inherit;
    }
    .cap-row-num {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      color: rgba(154, 165, 181, 0.6);
      width: 2.5rem;
      flex-shrink: 0;
    }
    .cap-row-title {
      font-family: Montserrat, sans-serif;
      font-weight: 600;
      font-size: clamp(1.75rem, 4vw, 3.25rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: #e8ecf2;
      flex: 1;
      transition: color 0.35s ease, transform 0.35s ease;
    }
    .cap-row-arrow {
      width: 1.75rem;
      height: 1.75rem;
      flex-shrink: 0;
      color: #ed3286;
      opacity: 0;
      transform: translateX(-12px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .cap-row:hover .cap-row-arrow,
    .cap-row.is-open .cap-row-arrow {
      opacity: 1;
      transform: translateX(0);
    }
    .cap-row:hover .cap-row-title,
    .cap-row.is-open .cap-row-title {
      color: #fff;
      transform: translateX(10px);
    }
    .cap-row-detail {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .cap-row.is-open .cap-row-detail {
      max-height: 18rem;
    }
    .cap-row-detail-inner {
      padding: 0 0 1.6rem 4rem;
      display: grid;
      gap: 1rem;
    }
    .cap-row-desc {
      max-width: 38rem;
      color: rgba(154, 165, 181, 0.95);
      line-height: 1.6;
    }
    .cap-row-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .cap-row-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      border: 1px solid rgba(232, 236, 242, 0.08);
      color: rgba(154, 165, 181, 0.85);
    }
    .capabilities-list.has-open .cap-row:not(.is-open) .cap-row-title {
      color: rgba(154, 165, 181, 0.35);
    }
    @media (prefers-reduced-motion: reduce) {
      .cap-row, .cap-row-title, .cap-row-arrow, .cap-row-detail {
        transition: none;
      }
      .cap-row-detail { max-height: none; }
      .cap-row-arrow { opacity: 1; transform: none; }
    }

    /* === Testimonial === */
    .testimonial-monogram {
      font-family: Georgia, 'Times New Roman', serif;
      font-style: italic;
      font-size: clamp(7rem, 14vw, 12rem);
      line-height: 1;
      background: linear-gradient(135deg, rgba(237, 50, 134, 0.65) 0%, rgba(65, 159, 216, 0.65) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .testimonial-quote {
      font-family: Georgia, 'Times New Roman', serif;
      font-style: italic;
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      line-height: 1.35;
      letter-spacing: -0.01em;
      color: #e8ecf2;
    }
    .testimonial-stage {
      position: relative;
      min-height: 14rem;
    }
    .testimonial-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.6s ease, transform 0.6s ease;
      pointer-events: none;
    }
    .testimonial-slide.is-active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .testimonial-dot {
      width: 24px;
      height: 3px;
      border-radius: 2px;
      background: rgba(232, 236, 242, 0.16);
      border: 0;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s ease, width 0.3s ease;
    }
    .testimonial-dot.is-active {
      background: #ed3286;
      width: 40px;
    }
    @media (prefers-reduced-motion: reduce) {
      .testimonial-slide, .testimonial-dot { transition: none; }
    }

    /* === Process sticky-step === */
    .process-step {
      display: grid;
      gap: 2.5rem;
      grid-template-columns: 1fr;
      padding: 4rem 0;
      border-bottom: 1px solid rgba(232, 236, 242, 0.06);
    }
    .process-step:last-child {
      border-bottom: 0;
    }
    @media (min-width: 1024px) {
      .process-step {
        grid-template-columns: 0.45fr 1fr;
        gap: 4rem;
      }
      .process-step-pin {
        position: sticky;
        top: 7rem;
        align-self: start;
      }
    }
    .process-step-num {
      font-family: Montserrat, sans-serif;
      font-weight: 600;
      font-size: clamp(4rem, 8vw, 6rem);
      line-height: 1;
      letter-spacing: -0.04em;
      background: linear-gradient(180deg, #ed3286 0%, #ffc416 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .process-step-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(154, 165, 181, 0.7);
      margin-top: 0.5rem;
    }

    /* === Engagement card carousel === */
    .engage-carousel-tabs {
      display: flex;
      gap: 0.5rem;
      overflow-x: auto;
      padding-bottom: 0.25rem;
      scrollbar-width: none;
    }
    .engage-carousel-tabs::-webkit-scrollbar { display: none; }
    .engage-tab {
      flex: 0 0 auto;
      min-width: 7.5rem;
      padding: 0.65rem 1rem;
      border-radius: 0.75rem;
      border: 1px solid rgba(232, 236, 242, 0.08);
      background: rgba(31, 33, 40, 0.45);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(154, 165, 181, 0.85);
      cursor: pointer;
      transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
    }
    .engage-tab:hover,
    .engage-tab:focus-visible {
      border-color: rgba(65, 159, 216, 0.35);
      color: #e8ecf2;
      outline: none;
    }
    .engage-tab.is-active {
      border-color: rgba(65, 159, 216, 0.45);
      background: rgba(65, 159, 216, 0.12);
      color: #419fd8;
    }
    .engage-tab-num {
      display: block;
      font-size: 0.6rem;
      color: rgba(154, 165, 181, 0.55);
      margin-bottom: 0.2rem;
    }
    .engage-tab.is-active .engage-tab-num { color: rgba(65, 159, 216, 0.7); }
    .engage-carousel-stage {
      position: relative;
      min-height: 18rem;
      margin-top: 1.25rem;
    }
    .engage-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 1.75rem;
      border-radius: 1rem;
      border: 1px solid rgba(232, 236, 242, 0.08);
      background: rgba(31, 33, 40, 0.55);
      transition: border-color 0.3s ease, opacity 0.45s ease, transform 0.45s ease;
    }
    .engage-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
    }
    .engage-card-num {
      font-family: Montserrat, sans-serif;
      font-weight: 600;
      font-size: 2.5rem;
      line-height: 1;
      letter-spacing: -0.04em;
      background: linear-gradient(180deg, #419fd8 0%, #5dc1a5 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .engage-card-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(154, 165, 181, 0.7);
    }
    .engage-card-title {
      margin-top: 1rem;
      font-size: 1.35rem;
      font-weight: 600;
      line-height: 1.25;
      color: #e8ecf2;
    }
    .engage-card-desc {
      margin-top: 0.75rem;
      font-size: 0.925rem;
      line-height: 1.6;
      color: rgba(154, 165, 181, 0.95);
      flex: 1;
    }
    .engage-card-list {
      margin-top: 1rem;
      display: grid;
      gap: 0.4rem;
      font-size: 0.8rem;
      color: rgba(154, 165, 181, 0.9);
    }
    .engage-carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.25rem;
    }
    .engage-carousel-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 999px;
      border: 1px solid rgba(232, 236, 242, 0.12);
      background: rgba(31, 33, 40, 0.5);
      color: #e8ecf2;
      cursor: pointer;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .engage-carousel-btn:hover,
    .engage-carousel-btn:focus-visible {
      border-color: rgba(65, 159, 216, 0.4);
      background: rgba(65, 159, 216, 0.1);
      outline: none;
    }
    .engage-dot {
      width: 24px;
      height: 3px;
      border-radius: 2px;
      background: rgba(232, 236, 242, 0.16);
      border: 0;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s ease, width 0.3s ease;
    }
    .engage-dot.is-active {
      background: #419fd8;
      width: 40px;
    }
    /* Carousel mode: one card at a time */
    .engage-carousel-panels .engage-card {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
    }
    .engage-carousel-panels .engage-card.is-active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    /* Carousel mode on small screens: natural height, scrollable tabs */
    @media (max-width: 1279px) {
      .engage-carousel-tabs {
        margin-inline: -1.5rem;
        padding-inline: 1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
      .engage-tab {
        scroll-snap-align: start;
      }
      .engage-carousel-stage {
        min-height: 0;
      }
      .engage-carousel-panels {
        position: relative;
      }
      .engage-carousel-panels .engage-card {
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: none;
      }
      .engage-carousel-panels .engage-card.is-active {
        display: flex;
        pointer-events: auto;
      }
    }
    /* Grid mode: all cards visible on wide screens */
    @media (min-width: 1280px) {
      .engage-carousel-tabs,
      .engage-carousel-nav {
        display: none;
      }
      .engage-carousel-stage {
        min-height: 0;
        margin-top: 0;
      }
      .engage-carousel-panels {
        display: grid;
        grid-template-columns: repeat(var(--engage-cols, 4), minmax(0, 1fr));
        gap: 1rem;
      }
      .engage-carousel-panels .engage-card {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .engage-card, .engage-dot, .engage-tab { transition: none; }
      .engage-carousel-panels .engage-card { transform: none; }
    }

    .process-timeline-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      border: 1px solid rgba(65, 159, 216, 0.3);
      background: rgba(65, 159, 216, 0.08);
      color: #419fd8;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* === FAQ === */
    .faq-list { border-top: 1px solid rgba(232, 236, 242, 0.08); }
    .faq-item { border-bottom: 1px solid rgba(232, 236, 242, 0.08); }
    .faq-trigger {
      display: flex;
      width: 100%;
      align-items: center;
      gap: 1.5rem;
      padding: 1.5rem 0;
      background: none;
      border: 0;
      cursor: pointer;
      text-align: left;
      color: inherit;
      font: inherit;
    }
    .faq-num {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      color: rgba(154, 165, 181, 0.5);
      width: 2.5rem;
      flex-shrink: 0;
    }
    .faq-question {
      font-family: Montserrat, sans-serif;
      font-weight: 500;
      font-size: clamp(1.125rem, 2vw, 1.5rem);
      flex: 1;
      color: #e8ecf2;
      transition: color 0.3s ease;
    }
    .faq-trigger:hover .faq-question {
      color: #ed3286;
    }
    .faq-icon {
      width: 1.25rem;
      height: 1.25rem;
      flex-shrink: 0;
      color: #9aa5b5;
      transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .faq-item.is-open .faq-icon {
      transform: rotate(45deg);
      color: #ed3286;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .faq-item.is-open .faq-answer {
      max-height: 18rem;
    }
    .faq-answer-inner {
      padding: 0 0 1.75rem 4rem;
      color: rgba(154, 165, 181, 0.95);
      line-height: 1.65;
      max-width: 48rem;
    }
    @media (prefers-reduced-motion: reduce) {
      .faq-answer, .faq-icon, .faq-question { transition: none; }
    }

    /* === Manifesto headline === */
    .manifesto {
      font-family: Montserrat, sans-serif;
      font-weight: 700;
      font-size: clamp(2.5rem, 8.5vw, 7rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      text-align: center;
      color: #e8ecf2;
      word-spacing: 0.05em;
    }
    .manifesto-word {
      display: inline-block;
      white-space: nowrap;
    }
    .manifesto .char {
      display: inline-block;
      opacity: 0;
      transform: translateY(60%);
      transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: calc(var(--char-delay, 0) * 1ms);
    }
    .manifesto.is-visible .char {
      opacity: 1;
      transform: translateY(0);
    }
    .manifesto .accent { color: #ed3286; }
    @media (prefers-reduced-motion: reduce) {
      .manifesto .char { opacity: 1; transform: none; transition: none; }
    }

    /* === Click to copy === */
    .copy-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      background: none;
      border: 0;
      padding: 0;
      color: inherit;
      font: inherit;
    }
    .copy-toast {
      position: absolute;
      top: -1.75rem;
      left: 0;
      padding: 0.25rem 0.55rem;
      background: #ed3286;
      color: #fff;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border-radius: 0.25rem;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.25s ease, transform 0.25s ease;
      pointer-events: none;
      white-space: nowrap;
    }
    .copy-link.is-copied .copy-toast {
      opacity: 1;
      transform: translateY(0);
    }

    /* === Image clip-path reveals === */
    .clip-reveal {
      clip-path: inset(0 100% 0 0);
      transition: clip-path 1s cubic-bezier(0.7, 0, 0.3, 1);
      transition-delay: calc(var(--clip-delay, 0) * 1ms);
    }
    .clip-reveal.is-visible {
      clip-path: inset(0 0 0 0);
    }
    @media (prefers-reduced-motion: reduce) {
      .clip-reveal { clip-path: none; transition: none; }
    }

    /* === Kinetic headline === */
    .kinetic-wrap {
      overflow: hidden;
      width: 100%;
    }
    .kinetic-line {
      display: inline-block;
      font-family: Montserrat, sans-serif;
      font-weight: 700;
      font-size: clamp(3rem, 12vw, 10rem);
      line-height: 1;
      letter-spacing: -0.04em;
      white-space: nowrap;
      will-change: transform;
    }
    .kinetic-line .accent {
      color: #ed3286;
      font-style: italic;
    }

    /* === Hero spotlight === */
    .hero-spotlight {
      pointer-events: none;
      position: absolute;
      inset: 0;
      z-index: 3;
      opacity: 0;
      background: radial-gradient(
        circle 320px at var(--mx, 50%) var(--my, 50%),
        rgba(237, 50, 134, 0.12),
        transparent 60%
      );
      transition: opacity 0.6s ease;
      mix-blend-mode: screen;
    }
    .hero-spotlight.is-active { opacity: 1; }
    @media (pointer: coarse), (prefers-reduced-motion: reduce) {
      .hero-spotlight { display: none; }
    }

    /* === Hero scroll hint === */
    .hero-scroll-hint-wrap {
      position: absolute;
      bottom: 1.25rem;
      left: 50%;
      z-index: 10;
      transform: translateX(-50%);
      pointer-events: none;
      transition: opacity 0.45s ease, transform 0.45s ease;
    }
    .hero-scroll-hint-wrap.is-scrolled {
      opacity: 0;
      transform: translateX(-50%) translateY(0.5rem);
    }
    .hero-scroll-hint {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      padding: 0.5rem 0.75rem;
      border: 0;
      background: transparent;
      color: rgba(232, 236, 242, 0.38);
      text-decoration: none;
      cursor: pointer;
      pointer-events: auto;
      transition: color 0.25s ease;
    }
    .hero-scroll-hint:hover,
    .hero-scroll-hint:focus-visible {
      color: rgba(93, 193, 165, 0.75);
      outline: none;
    }
    .hero-scroll-hint:focus-visible {
      border-radius: 9999px;
      box-shadow: 0 0 0 2px rgba(93, 193, 165, 0.45);
    }
    .hero-scroll-hint-track {
      display: block;
      position: relative;
      width: 1px;
      height: 2.25rem;
      background: linear-gradient(to bottom, transparent, rgba(232, 236, 242, 0.28));
      overflow: hidden;
    }
    .hero-scroll-hint-thumb {
      position: absolute;
      left: 50%;
      width: 3px;
      height: 3px;
      margin-left: -1.5px;
      border-radius: 50%;
      background: rgba(93, 193, 165, 0.65);
      animation: scrollHintTravel 2.4s ease-in-out infinite;
    }
    .hero-scroll-hint-chevron {
      opacity: 0.85;
      animation: scrollHintBounce 2.4s ease-in-out infinite;
    }
    @keyframes scrollHintTravel {
      0% { top: 0; opacity: 0; }
      12% { opacity: 1; }
      88% { opacity: 1; }
      100% { top: calc(100% - 3px); opacity: 0; }
    }
    @keyframes scrollHintBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(3px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-scroll-hint-thumb,
      .hero-scroll-hint-chevron {
        animation: none;
      }
      .hero-scroll-hint-thumb {
        top: 50%;
        opacity: 0.7;
      }
    }
