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

      :root {
        /* Palette */
        --cream: #f7f3e8;
        --cream-2: #efeadc;
        --dark: #0a0908;
        --dark-2: #14130f;
        --accent: #3b82f6;
        --accent-h: #2563eb;

        /* On cream */
        --c-text: #0a0908;
        --c-muted: rgba(10, 9, 8, 0.58);
        --c-dim: rgba(10, 9, 8, 0.3);
        --c-border: rgba(5, 4, 3, 0.12);
        --c-border-2: rgba(10, 9, 8, 0.2);

        /* On dark */
        --d-text: #f7f3e8;
        --d-muted: rgba(247, 243, 232, 0.58);
        --d-dim: rgba(247, 243, 232, 0.3);
        --d-border: rgba(247, 243, 232, 0.1);
        --d-border-2: rgba(247, 243, 232, 0.2);

        /* Fonts */
        --ff: "Inter", system-ui, -apple-system, sans-serif;
        --fm: "Geist Mono", "IBM Plex Mono", monospace;

        /* Sizing */
        --container: 1440px;
        --pad-x: clamp(1.25rem, 4vw, 3rem);
      }

      html {
        scroll-behavior: auto;
      }

      body {
        font-family: var(--ff);
        font-size: 1rem; /* 16px base */
        line-height: 1.6;
        background: var(--cream);
        color: var(--c-text);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      /* Background modifier classes */
      .bg-cream {
        background: var(--cream);
        color: var(--c-text);
      }
      .bg-dark {
        background: var(--dark);
        color: var(--d-text);
      }

      .bg-cream .muted {
        color: var(--c-muted);
      }
      .bg-dark .muted {
        color: var(--d-muted);
      }
      .bg-cream .border {
        border-color: var(--c-border);
      }
      .bg-dark .border {
        border-color: var(--d-border);
      }

      /* Typography */
      .eyebrow {
        font-family: var(--fm);
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 0.625rem;
      }
      .eyebrow-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent);
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: var(--ff);
        font-weight: 800;
        line-height: 1.02;
        letter-spacing: -0.04em;
      }
      h1 {
        font-size: clamp(3rem, 8vw, 8rem);
      }
      h2 {
        font-size: clamp(2.25rem, 5.5vw, 5rem);
        letter-spacing: -0.035em;
      }
      h3 {
        font-size: clamp(1.5rem, 2.5vw, 2.25rem);
        letter-spacing: -0.025em;
        line-height: 1.1;
      }
      h4 {
        font-size: 1.125rem;
        letter-spacing: -0.015em;
        line-height: 1.3;
      }

      p {
        font-size: 1rem;
        line-height: 1.65;
      }
      .lead {
        font-size: 1.125rem;
        line-height: 1.65;
      }
      .small {
        font-size: 0.875rem;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      /* ═══════════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════════ */
      #loader {
        position: fixed;
        inset: 0;
        background: var(--dark);
        z-index: 10000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
      }
      .ld-mark {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--d-text);
        letter-spacing: -0.04em;
        clip-path: inset(0 100% 0 0);
      }
      .ld-mark span {
        color: var(--accent);
      }
      .ld-bar {
        width: 200px;
        height: 1px;
        background: var(--d-border);
        overflow: hidden;
      }
      .ld-bar-fill {
        height: 100%;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
      }
      .ld-label {
        font-family: var(--fm);
        font-size: 0.6875rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--d-dim);
      }

      /* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
      nav {
        position: fixed;
        inset: 0 0 auto;
        z-index: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.125rem var(--pad-x);
        background: rgba(10, 9, 8, 0);
        transition:
          background 0.4s,
          backdrop-filter 0.4s,
          border-color 0.4s,
          color 0.4s;
        border-bottom: 0.5px solid transparent;
        color: var(--d-text);
      }
      nav.scrolled {
        background: rgba(247, 243, 232, 0.9);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-color: var(--c-border);
        color: var(--c-text);
      }
      .nav-logo {
        font-weight: 800;
        font-size: 1.5rem;
        letter-spacing: -0.04em;
      }
      .nav-logo span {
        color: var(--accent);
      }

      .nav-center {
        display: flex;
        gap: 2rem;
        list-style: none;
        align-items: center;
      }
      .nav-center > li {
        position: relative;
      }
      .nav-center a {
        font-size: 0.9375rem;
        font-weight: 500;
        letter-spacing: -0.01em;
        opacity: 0.78;
        transition: opacity 0.2s;
      }
      .nav-center a:hover {
        opacity: 1;
      }
      /* Services dropdown */
      .nav-center > li {
        padding-bottom: 1rem;
        margin-bottom: -1rem;
      }
      .nav-dropdown {
        position: absolute;
        top: calc(100% + 1rem);
        left: 50%;
        transform: translateX(-50%);
        min-width: 240px;
        padding: 0.75rem 0;
        background: rgba(10, 9, 8, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(247, 243, 232, 0.08);
        box-shadow: 0 12px 32px rgba(0,0,0,0.3);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
        z-index: 600;
      }
      nav.scrolled .nav-dropdown {
        background: rgba(247, 243, 232, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid var(--c-border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }
      .nav-center > li:hover .nav-dropdown {
        opacity: 1;
        visibility: visible;
      }
      .nav-dropdown a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 1.25rem;
        font-size: 0.875rem;
        font-weight: 400;
        opacity: 0.75;
        color: var(--d-text);
        transition: opacity 0.2s, color 0.2s, padding-left 0.2s, background 0.2s;
        border-left: 2px solid transparent;
      }
      .nav-dropdown a::after {
        content: '→';
        font-size: 0.75rem;
        opacity: 0;
        transform: translateX(-6px);
        transition: opacity 0.2s, transform 0.2s;
      }
      .nav-dropdown a:hover {
        opacity: 1;
        color: var(--accent);
        padding-left: 1.5rem;
        border-left-color: var(--accent);
        background: rgba(59, 130, 246, 0.06);
      }
      .nav-dropdown a:hover::after {
        opacity: 1;
        transform: translateX(0);
      }
      nav.scrolled .nav-dropdown a {
        color: var(--c-text);
      }
      nav.scrolled .nav-dropdown a:hover {
        color: var(--accent);
      }

      /* Mobile hamburger */
      .nav-hamburger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        color: inherit;
      }
      .nav-hamburger svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
      }
      /* Mobile menu */
      .nav-mobile {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 499;
        background: var(--cream);
        color: var(--c-text);
        padding: 5rem var(--pad-x) 2rem;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
      }
      .nav-mobile.open {
        display: flex;
      }
      .nav-mobile a {
        display: block;
        font-size: 1.25rem;
        font-weight: 600;
        padding: 0.875rem 0;
        border-bottom: 1px solid var(--c-border);
        color: var(--c-text);
        letter-spacing: -0.02em;
      }
      .nav-mobile a:hover {
        color: var(--accent);
      }
      .nav-mobile-label {
        font-family: var(--fm);
        font-size: 0.6875rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--c-dim);
        margin-top: 2rem;
        margin-bottom: 0.5rem;
      }
      .nav-mobile-sub a {
        font-size: 1rem;
        font-weight: 400;
        padding: 0.625rem 0;
        padding-left: 1rem;
      }

      .nav-right {
        display: flex;
        align-items: center;
        gap: 1.25rem;
      }

      .lang-toggle {
        display: inline-flex;
        gap: 0;
        font-family: var(--fm);
        font-size: 0.6875rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .lang-toggle button {
        background: none;
        border: none;
        padding: 0.25rem 0.5rem;
        font: inherit;
        color: inherit;
        opacity: 0.5;
        cursor: pointer;
        transition:
          opacity 0.2s,
          color 0.2s;
      }
      .lang-toggle button.active {
        opacity: 1;
        color: var(--accent);
      }
      .lang-toggle .sep {
        opacity: 0.35;
        padding: 0 0.15rem;
      }

      .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--accent);
        color: #fff;
        padding: 0.625rem 1.125rem;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 0;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .nav-cta:hover {
        background: var(--accent-h);
        transform: translateY(-1px);
      }
      .nav-cta .arrow {
        transition: transform 0.2s;
      }
      .nav-cta:hover .arrow {
        transform: translate(2px, -2px);
      }

      @media (max-width: 900px) {
        .nav-center {
          display: none;
        }
        .nav-hamburger {
          display: block;
        }
      }
      @media (max-width: 640px) {
        .lang-toggle {
          display: none;
        }
        .nav-cta {
          padding: 0.5rem 0.875rem;
          font-size: 0.8125rem;
        }
      }

      /* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
      #hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
        background: var(--dark);
        color: var(--d-text);
        padding: 6rem var(--pad-x) 3rem;
      }
      #hero-canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }
      .hero-dots {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          rgba(59, 130, 246, 0.14) 1px,
          transparent 1px
        );
        background-size: 36px 36px;
        opacity: 0.6;
      }
      .hero-content {
        position: relative;
        z-index: 5;
        max-width: var(--container);
        margin: 0 auto;
        width: 100%;
      }
      .hero-eyebrow {
        color: var(--accent);
        margin-bottom: 2rem;
        opacity: 0;
      }
      .hero-eyebrow .eyebrow-dot {
        animation: pulse 2.4s ease-in-out infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
        }
        50% {
          opacity: 0.35;
          box-shadow: 0 0 0 6px rgba(59, 130, 246, 0);
        }
      }

      .hero-h1 {
        margin-bottom: 2rem;
      }
      .hline {
        display: block;
        overflow: hidden;
        padding-bottom: 0.06em;
      }
      .hword {
        display: inline-block;
        overflow: hidden;
        vertical-align: bottom;
      }
      .hword-in {
        display: inline-block;
        transform: translateY(110%);
      }
      .hword-in.accent {
        color: var(--accent);
      }

      .hero-sub {
        font-family: var(--fm);
        font-size: 0.9375rem;
        color: var(--d-muted);
        line-height: 1.85;
        max-width: 440px;
        margin-bottom: 2.5rem;
        opacity: 0;
      }

      .hero-actions {
        display: flex;
        gap: 0.875rem;
        align-items: center;
        opacity: 0;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9375rem;
        font-weight: 500;
        padding: 0.9rem 1.6rem;
        border-radius: 0;
        transition:
          background 0.2s,
          border-color 0.2s,
          color 0.2s,
          transform 0.2s;
      }
      .btn-primary {
        background: var(--accent);
        color: #fff;
        border: 1px solid var(--accent);
      }
      .btn-primary:hover {
        background: var(--accent-h);
        border-color: var(--accent-h);
        transform: translateY(-1px);
      }
      .btn-outline-dark {
        background: transparent;
        color: var(--d-text);
        border: 1px solid var(--d-border-2);
      }
      .btn-outline-dark:hover {
        border-color: var(--d-text);
        transform: translateY(-1px);
      }
      .btn-outline {
        background: transparent;
        color: var(--c-text);
        border: 1px solid var(--c-border-2);
      }
      .btn-outline:hover {
        border-color: var(--c-text);
        transform: translateY(-1px);
      }
      .btn .arrow {
        transition: transform 0.2s;
      }
      .btn:hover .arrow {
        transform: translate(2px, -2px);
      }

      .hero-coords {
        position: absolute;
        right: var(--pad-x);
        bottom: 2.5rem;
        z-index: 5;
        font-family: var(--fm);
        font-size: 0.6875rem;
        letter-spacing: 0.08em;
        color: var(--d-dim);
        text-align: right;
        line-height: 2;
        opacity: 0;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.2s;
      }
      .hero-coords:hover {
        color: var(--d-text);
      }
      .hero-coords .live {
        color: #00c896;
      }

      @media (max-width: 640px) {
        #hero {
          padding: 6rem 1.25rem 2rem;
        }
        .hero-coords {
          display: none;
        }
        .hero-sub {
          font-size: 0.875rem;
        }
        .hero-actions {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.625rem;
        }
        .btn {
          width: 100%;
          justify-content: center;
        }
      }

      /* ═══════════════════════════════════════════════════════════
   SERVICE CHAPTER (shared)
═══════════════════════════════════════════════════════════ */
      .chapter {
        padding: 7rem var(--pad-x);
        position: relative;
        overflow: hidden;
      }
      .ch-head {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        margin: 0 auto 2.75rem;
        max-width: var(--container);
      }
      .ch-num {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        opacity: 0.6;
        min-width: 2.5rem;
      }
      .ch-head-line {
        flex: 1;
        height: 0.5px;
        opacity: 0.35;
      }
      .bg-cream .ch-head-line {
        background: var(--c-text);
      }
      .bg-dark .ch-head-line {
        background: var(--d-text);
      }

      .ch-head-tag {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        opacity: 0.6;
      }

      .ch-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: var(--container);
        margin: 0 auto;
      }
      .ch-title {
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(24px);
      }
      .ch-desc {
        font-size: 1.0625rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        max-width: 500px;
        opacity: 0;
        transform: translateY(16px);
      }
      .ch-subs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 1.125rem;
        margin-bottom: 2.5rem;
        font-family: var(--fm);
        font-size: 0.8125rem;
        letter-spacing: 0.02em;
      }
      .ch-sub {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        opacity: 0;
        transform: translateY(10px);
      }
      .ch-sub::before {
        content: "";
        width: 4px;
        height: 4px;
        background: var(--accent);
        transform: rotate(45deg);
      }
      .ch-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9375rem;
        font-weight: 500;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid currentColor;
        opacity: 0;
        transform: translateY(10px);
        transition:
          color 0.2s,
          gap 0.2s;
      }
      .ch-link:hover {
        color: var(--accent);
        gap: 0.75rem;
      }

      .ch-visual {
        position: relative;
        aspect-ratio: 1 / 1;
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        opacity: 0;
      }
      .ch-visual svg {
        display: block;
        width: 100%;
        height: 100%;
      }
      .ch-visual .ch-overlay {
        position: absolute;
        right: -6%;
        bottom: -6%;
        width: 46%;
        aspect-ratio: 1 / 1;
        background: var(--cream-2);
        border: 1px solid rgba(10, 9, 8, 0.2);
        box-shadow: -10px 12px 24px rgba(10, 9, 8, 0.08);
        overflow: hidden;
      }
      .bg-dark .ch-visual .ch-overlay {
        background: var(--dark-2);
        border-color: rgba(247, 243, 232, 0.18);
        box-shadow: -10px 12px 24px rgba(0, 0, 0, 0.4);
      }
      .ch-visual .ch-overlay svg {
        width: 100%;
        height: 100%;
      }
      .scene-room {
        transform-origin: 100px 112px;
        animation: sceneTilt 10s ease-in-out infinite;
      }
      @keyframes sceneTilt {
        0%,
        100% {
          transform: scale(1) translateX(0);
        }
        50% {
          transform: scale(1.02) translateX(-2px);
        }
      }
      .scene-rotate {
        stroke-dasharray: 24;
        stroke-dashoffset: 24;
        animation: sceneRotateDraw 3s ease-in-out infinite;
        transform-origin: 0 0;
      }
      @keyframes sceneRotateDraw {
        0% {
          stroke-dashoffset: 24;
        }
        60% {
          stroke-dashoffset: 0;
        }
        100% {
          stroke-dashoffset: -24;
        }
      }
      @media (max-width: 640px) {
        .ch-visual .ch-overlay {
          right: 0;
          bottom: -10%;
          width: 52%;
        }
      }

      @media (max-width: 900px) {
        .chapter {
          padding: 5rem var(--pad-x);
        }
        .ch-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }
        .ch-visual {
          max-width: 420px;
          margin: 0 auto;
        }
      }
      @media (max-width: 640px) {
        .ch-desc {
          font-size: 1rem;
        }
      }

      /* ═══════════════════════════════════════════════════════════
   SPECIFIC CHAPTER VISUALS
═══════════════════════════════════════════════════════════ */

      /* GLOBE (AI & Engineering) */
      .globe-wrap {
        position: relative;
        width: 100%;
        height: 100%;
      }
      .globe {
        animation: rotateGlobe 60s linear infinite;
        transform-origin: center;
      }
      @keyframes rotateGlobe {
        to {
          transform: rotate(360deg);
        }
      }
      .globe-city {
        animation: cityPulse 2s ease-in-out infinite;
        transform-box: fill-box;
        transform-origin: center;
      }
      .globe-city:nth-child(2) {
        animation-delay: 0.4s;
      }
      .globe-city:nth-child(3) {
        animation-delay: 0.8s;
      }
      .globe-city:nth-child(4) {
        animation-delay: 1.2s;
      }
      .globe-city:nth-child(5) {
        animation-delay: 1.6s;
      }
      @keyframes cityPulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.5;
          transform: scale(1.35);
        }
      }
      .signal-path {
        stroke-dasharray: 60 400;
        animation: signalFlow 3s linear infinite;
      }
      .signal-path.p2 {
        animation-delay: 1s;
      }
      .signal-path.p3 {
        animation-delay: 2s;
      }
      @keyframes signalFlow {
        from {
          stroke-dashoffset: 460;
        }
        to {
          stroke-dashoffset: 0;
        }
      }

      /* GLOBE (Ch4) — canvas + meta labels */
      .ch-visual-globe {
        position: relative;
      }
      .globe-canvas {
        display: block;
        width: 100%;
        height: 100%;
      }
      .globe-meta {
        position: absolute;
        font-family: var(--fm);
        font-size: 0.6875rem;
        letter-spacing: 0.08em;
        color: var(--d-muted);
        pointer-events: none;
      }
      .globe-meta.accent {
        color: var(--accent);
        opacity: 0.9;
      }
      .globe-meta.tl {
        left: 4%;
        top: 4%;
      }
      .globe-meta.tr {
        right: 4%;
        top: 4%;
      }
      .globe-meta.bl {
        left: 4%;
        bottom: 4%;
      }
      .globe-meta.br {
        right: 4%;
        bottom: 4%;
      }

      /* MESH (Strategy) */
      .mesh-node {
        animation: meshBlink 3.5s ease-in-out infinite;
        transform-box: fill-box;
        transform-origin: center;
      }
      .mesh-node:nth-child(2) { animation-delay: 0.3s; }
      .mesh-node:nth-child(3) { animation-delay: 0.6s; }
      .mesh-node:nth-child(4) { animation-delay: 0.9s; }
      .mesh-node:nth-child(5) { animation-delay: 1.2s; }
      .mesh-node:nth-child(6) { animation-delay: 1.5s; }
      @keyframes meshBlink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
      }
      .mesh-node-slow {
        animation: meshBlink 6s ease-in-out infinite;
      }

      /* BRAND IDENTITY — construction + S lettermark */
      .letter-s {
        stroke-dasharray: 320;
        stroke-dashoffset: 320;
        animation: drawS 3s ease-in-out infinite alternate;
      }
      @keyframes drawS {
        0% {
          stroke-dashoffset: 320;
        }
        50% {
          stroke-dashoffset: 0;
        }
        100% {
          stroke-dashoffset: 0;
        }
      }
      .logo-lockup {
        opacity: 0.85;
        animation: lockupPulse 6s ease-in-out infinite;
      }
      .logo-lockup.lockup-d2 {
        animation-delay: 0.3s;
      }
      .logo-lockup.lockup-d3 {
        animation-delay: 0.6s;
      }
      .logo-lockup.lockup-d4 {
        animation-delay: 0.9s;
      }
      .logo-lockup.lockup-d5 {
        animation-delay: 1.2s;
      }
      @keyframes lockupPulse {
        0%,
        100% {
          opacity: 0.9;
        }
        50% {
          opacity: 0.55;
        }
      }

      .swatch {
        animation: swatchBlink 4s ease-in-out infinite;
      }
      .swatch:nth-child(2) {
        animation-delay: 0.2s;
      }
      .swatch:nth-child(3) {
        animation-delay: 0.4s;
      }
      .swatch:nth-child(4) {
        animation-delay: 0.6s;
      }
      .swatch:nth-child(5) {
        animation-delay: 0.8s;
      }
      @keyframes swatchBlink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.3;
        }
      }

      /* DIGITAL PRODUCTS — UI components assembling */
      .ui-el {
        animation: uiFloat 5s ease-in-out infinite;
      }
      .ui-el:nth-child(even) {
        animation-delay: -2.5s;
      }
      @keyframes uiFloat {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-3px);
        }
      }
      .ui-cursor {
        animation: cursorMove 6s ease-in-out infinite;
      }
      @keyframes cursorMove {
        0% {
          transform: translate(0, 0);
        }
        25% {
          transform: translate(60px, 40px);
        }
        50% {
          transform: translate(30px, 80px);
        }
        75% {
          transform: translate(90px, 20px);
        }
        100% {
          transform: translate(0, 0);
        }
      }

      /* GROWTH — chart climbing */
      .grid-line {
        opacity: 0;
        animation: gridFadeIn 4s ease-out infinite alternate;
      }
      .grid-line:nth-of-type(2) {
        animation-delay: 0.15s;
      }
      .grid-line:nth-of-type(3) {
        animation-delay: 0.3s;
      }
      @keyframes gridFadeIn {
        0% {
          opacity: 0;
        }
        30% {
          opacity: 0.08;
        }
        100% {
          opacity: 0.08;
        }
      }

      .chart-line {
        stroke-dasharray: 620;
        stroke-dashoffset: 620;
        animation: drawLine 4s ease-out infinite alternate;
      }
      @keyframes drawLine {
        0% {
          stroke-dashoffset: 620;
        }
        60% {
          stroke-dashoffset: 0;
        }
        100% {
          stroke-dashoffset: 0;
        }
      }
      .chart-bar {
        transform-origin: bottom;
        transform-box: fill-box;
      }
      .chart-bar.b1 {
        animation: barGrow 4s ease-out infinite alternate;
        animation-delay: 0.1s;
      }
      .chart-bar.b2 {
        animation: barGrow 4s ease-out infinite alternate;
        animation-delay: 0.25s;
      }
      .chart-bar.b3 {
        animation: barGrow 4s ease-out infinite alternate;
        animation-delay: 0.4s;
      }
      .chart-bar.b4 {
        animation: barGrow 4s ease-out infinite alternate;
        animation-delay: 0.55s;
      }
      .chart-bar.b5 {
        animation: barGrow 4s ease-out infinite alternate;
        animation-delay: 0.7s;
      }
      @keyframes barGrow {
        0% {
          transform: scaleY(0);
        }
        60% {
          transform: scaleY(1);
        }
        100% {
          transform: scaleY(1);
        }
      }
      .chart-point {
        animation: pointPop 4s ease-out infinite alternate;
      }
      .chart-point.pt2 {
        animation-delay: 0.4s;
      }
      .chart-point.pt3 {
        animation-delay: 0.8s;
      }
      .chart-point.pt4 {
        animation-delay: 1.2s;
      }
      .chart-point.pt5 {
        animation-delay: 1.6s;
      }
      @keyframes pointPop {
        0%,
        40% {
          opacity: 0;
        }
        70% {
          opacity: 1;
        }
      }

      /* SPATIAL — blueprint drawing */
      .bp-line {
        stroke-dasharray: 400;
        stroke-dashoffset: 400;
        animation: drawBP 4s ease-out infinite alternate;
      }
      .bp-line.l2 {
        animation-delay: 0.3s;
      }
      .bp-line.l3 {
        animation-delay: 0.6s;
      }
      .bp-line.l4 {
        animation-delay: 0.9s;
      }
      .bp-line.l5 {
        animation-delay: 1.2s;
      }
      @keyframes drawBP {
        0% {
          stroke-dashoffset: 400;
        }
        60% {
          stroke-dashoffset: 0;
        }
        100% {
          stroke-dashoffset: 0;
        }
      }

      /* ═══════════════════════════════════════════════════════════
   STUDIO SECTION
═══════════════════════════════════════════════════════════ */
      .studio-section {
        padding: 8rem var(--pad-x);
        position: relative;
        overflow: hidden;
      }
      .studio-inner {
        position: relative;
        z-index: 1;
        max-width: var(--container);
        margin: 0 auto;
      }
      /* Dotted background pattern */
      .studio-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        background-image: radial-gradient(circle, rgba(10, 9, 8, 0.09) 1px, transparent 1px);
        background-size: 24px 24px;
      }
      .studio-grid {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 5rem;
        align-items: start;
      }
      .studio-left h2 {
        margin-bottom: 1.5rem;
      }
      .studio-lede {
        font-size: 1.25rem;
        line-height: 1.55;
        margin-bottom: 2rem;
        max-width: 480px;
      }
      .studio-body {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--c-muted);
        margin-bottom: 2rem;
        max-width: 480px;
      }
      .studio-location {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-family: var(--fm);
        font-size: 0.8125rem;
        letter-spacing: 0.04em;
        padding: 1rem 0;
        border-top: 1px solid var(--c-border);
        max-width: 480px;
      }
      .location-badge {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--accent);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .studio-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border: 1px solid var(--c-border);
      }
      .value-card {
        padding: 2rem 1.75rem;
        border: 1px solid var(--c-border);
        margin: -1px -1px 0 0;
        background: var(--cream);
        transition: background 0.3s;
      }
      .value-card:hover {
        background: var(--cream-2);
      }
      .value-num {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        color: var(--accent);
        margin-bottom: 1.5rem;
        display: block;
      }
      .value-title {
        font-size: 1.125rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 0.5rem;
      }
      .value-desc {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: var(--c-muted);
      }

      @media (max-width: 900px) {
        .studio-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
      }
      @media (max-width: 500px) {
        .studio-right {
          grid-template-columns: 1fr;
        }
      }

      /* ═══════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════ */
      #cta {
        padding: 10rem var(--pad-x);
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      #cta::before,
      #cta::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 0.5px solid rgba(59, 130, 246, 0.12);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
      #cta::before {
        width: min(800px, 90vw);
        height: min(800px, 90vw);
      }
      #cta::after {
        width: min(560px, 70vw);
        height: min(560px, 70vw);
        border-color: rgba(59, 130, 246, 0.08);
      }

      .cta-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
      }
      .cta-eye {
        color: var(--accent);
        margin-bottom: 1.75rem;
        opacity: 0;
        justify-content: center;
      }
      .cta-title {
        font-size: clamp(2.25rem, 6vw, 5.5rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1;
        margin-bottom: 2.5rem;
        opacity: 0;
        transform: translateY(20px);
      }
      .cta-title em {
        font-style: normal;
        font-weight: 800;
        color: inherit;
      }
      .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: var(--accent);
        color: #fff;
        padding: 1.15rem 2.25rem;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 0;
        transition:
          background 0.2s,
          transform 0.2s;
        opacity: 0;
        transform: translateY(10px);
      }
      .cta-btn:hover {
        background: var(--accent-h);
        transform: translateY(-1px);
      }

      /* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
      footer {
        background: var(--dark-2);
        color: var(--d-text);
        padding: 5rem var(--pad-x) 2rem;
      }
      .ft-top {
        display: grid;
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 3rem;
        padding-bottom: 3.5rem;
        border-bottom: 1px solid var(--d-border);
        max-width: var(--container);
        margin: 0 auto;
      }
      .ft-brand-logo {
        font-size: 1.75rem;
        font-weight: 800;
        letter-spacing: -0.04em;
        margin-bottom: 1rem;
        display: inline-block;
      }
      .ft-brand-logo span {
        color: var(--accent);
      }
      .ft-tagline {
        font-size: 0.9375rem;
        line-height: 1.65;
        color: var(--d-muted);
        margin-bottom: 2rem;
        max-width: 320px;
      }
      .ft-contact {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-family: var(--fm);
        font-size: 0.8125rem;
        color: var(--d-muted);
      }
      .ft-contact a {
        transition: color 0.2s;
      }
      .ft-contact a:hover {
        color: var(--accent);
      }

      .ft-col-title {
        font-family: var(--fm);
        font-size: 0.6875rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--d-dim);
        margin-bottom: 1.25rem;
      }
      .ft-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }
      .ft-links a {
        font-size: 0.9375rem;
        color: var(--d-text);
        opacity: 0.78;
        transition:
          opacity 0.2s,
          color 0.2s;
      }
      .ft-links a:hover {
        color: var(--accent);
        opacity: 1;
      }

      .ft-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 2rem;
        flex-wrap: wrap;
        gap: 1.25rem;
        max-width: var(--container);
        margin: 0 auto;
      }
      .ft-copy {
        font-family: var(--fm);
        font-size: 0.75rem;
        color: var(--d-dim);
        letter-spacing: 0.04em;
      }
      .ft-social {
        display: flex;
        gap: 0.5rem;
        list-style: none;
      }
      .ft-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--d-border);
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
          border-color 0.2s,
          background 0.2s;
      }
      .ft-social a:hover {
        border-color: var(--accent);
        background: var(--accent);
      }
      .ft-social svg {
        width: 15px;
        height: 15px;
        fill: currentColor;
      }

      @media (max-width: 1024px) {
        .ft-top {
          grid-template-columns: 1fr 1fr 1fr;
        }
        .ft-brand {
          grid-column: 1 / -1;
          margin-bottom: 1rem;
        }
      }
      @media (max-width: 640px) {
        .ft-top {
          grid-template-columns: 1fr 1fr;
          gap: 2rem;
        }
        .ft-brand {
          grid-column: 1 / -1;
        }
        footer {
          padding: 3.5rem 1.25rem 2rem;
        }
      }

      /* ═══════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════ */
      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      /* Accent helpers — so SVGs repaint when --accent changes */
      .fill-accent {
        fill: var(--accent);
      }
      .stroke-accent {
        stroke: var(--accent);
      }

      /* Alternating service alignment — visual on the left, text on the right */
      @media (min-width: 901px) {
        .ch-grid.reverse .ch-text {
          order: 2;
        }
        .ch-grid.reverse .ch-visual {
          order: 1;
          margin-left: 0;
          margin-right: auto;
        }
      }


      /* === appended from cookies.html === */
.hero {
        position: relative;
        
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 8rem var(--pad-x) 4rem;
        background: var(--dark);
        color: var(--d-text);
      }

.hero .eyebrow {
        color: var(--d-muted);
        margin-bottom: 2rem;
      }

.hero h1 {
        max-width: 14ch;
        margin-bottom: 2rem;
        font-size: clamp(2.5rem, 6vw, 5rem);
      }

.hero-desc {
        max-width: 640px;
        font-size: 1.125rem;
        line-height: 1.65;
        color: var(--d-muted);
      }

@media (max-width: 640px) {
        .hero {
          padding: 7rem 1.25rem 3.5rem;
        }
        .hero-desc {
          font-size: 1rem;
        }
      }

.cookie-wrap {
        padding: 5rem var(--pad-x) 7rem;
        max-width: var(--container);
        margin: 0 auto;
      }

.cookie-inner {
        max-width: 800px;
        margin: 0 auto;
      }

.cookie-intro {
        font-size: 1.125rem;
        line-height: 1.65;
        color: var(--c-muted);
        margin-bottom: 3.5rem;
        max-width: 720px;
      }

.cookie-card {
        display: grid;
        grid-template-columns: 64px 1fr auto;
        gap: 1.5rem;
        align-items: center;
        padding: 2rem 0;
        border-top: 1px solid var(--c-border);
        opacity: 0;
        transform: translateY(24px);
      }

.cookie-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid var(--c-border-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--fm);
        font-size: 1rem;
        font-weight: 600;
        color: var(--c-text);
      }

.cookie-info h4 {
        margin-bottom: 0.5rem;
      }

.cookie-info p {
        color: var(--c-muted);
        line-height: 1.65;
        font-size: 0.9375rem;
      }

.cookie-badge {
        font-family: var(--fm);
        font-size: 0.6875rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.375rem 0.75rem;
        white-space: nowrap;
      }

.cookie-badge.active {
        background: var(--accent);
        color: #fff;
      }

.cookie-badge.optional {
        border: 1px solid var(--c-border-2);
        color: var(--c-muted);
      }

@media (max-width: 640px) {
        .cookie-card {
          grid-template-columns: 1fr;
          gap: 1rem;
        }
        .cookie-icon {
          justify-self: start;
        }
        .cookie-badge {
          justify-self: start;
        }
      }

.cookie-details {
        margin-top: 3.5rem;
        padding-top: 3rem;
        border-top: 1px solid var(--c-border);
      }

.cookie-details h3 {
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: 1.5rem;
      }

.cookie-table {
        border: 1px solid var(--c-border-2);
      }

.cookie-table-header,
      .cookie-table-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 2fr;
        gap: 0;
      }

.cookie-table-header {
        background: var(--cream-2);
        border-bottom: 1px solid var(--c-border-2);
      }

.cookie-table-header span {
        font-family: var(--fm);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 0.75rem 1rem;
        color: var(--c-muted);
      }

.cookie-table-row span {
        font-size: 0.9375rem;
        padding: 0.875rem 1rem;
        color: var(--c-muted);
        border-top: 1px solid var(--c-border);
      }

.cookie-table-row span:first-child {
        font-family: var(--fm);
        font-size: 0.8125rem;
        color: var(--c-text);
      }

@media (max-width: 640px) {
        .cookie-table-header,
        .cookie-table-row {
          grid-template-columns: 1fr 1fr;
        }
      }

.cookie-more {
        margin-top: 4rem;
        padding-top: 3rem;
        border-top: 1px solid var(--c-border);
        max-width: 720px;
      }

.cookie-more p {
        color: var(--c-muted);
        margin-bottom: 1.5rem;
        line-height: 1.65;
      }

      /* === appended from privacy.html === */
@media (max-width: 640px) {
        .hero {
                  padding: 7rem 1.25rem 3rem;
                  min-height: 35vh;
                }
      }

.legal-grid {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 4rem;
        max-width: var(--container);
        margin: 0 auto;
        padding: 5rem var(--pad-x) 7rem;
      }

.legal-sidebar {
        position: relative;
      }

.legal-toc {
        position: sticky;
        top: 6rem;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

.legal-toc a {
        font-family: var(--fm);
        font-size: 0.8125rem;
        letter-spacing: 0.02em;
        color: var(--c-muted);
        transition: color 0.2s;
        display: block;
        padding: 0.25rem 0;
      }

.legal-toc a:hover {
        color: var(--accent);
      }

.legal-content {
        max-width: 720px;
      }

.legal-section {
        margin-bottom: 3rem;
        opacity: 0;
        transform: translateY(16px);
      }

.legal-section:last-child {
        margin-bottom: 0;
      }

.legal-section h3 {
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: 1rem;
      }

.legal-section p {
        color: var(--c-muted);
        line-height: 1.7;
      }

.legal-section a {
        color: var(--accent);
        transition: color 0.2s;
      }

.legal-section a:hover {
        color: var(--accent-h);
      }

@media (max-width: 900px) {
        .legal-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
          padding: 3rem var(--pad-x) 5rem;
        }
        .legal-toc {
          position: static;
          flex-direction: row;
          flex-wrap: wrap;
          gap: 0.5rem 1.25rem;
          padding-bottom: 2rem;
          border-bottom: 1px solid var(--c-border);
        }
      }

      /* === appended from aviso-legal.html === */
.legal-block {
        padding: 2.5rem 0;
        border-top: 1px solid var(--c-border);
        opacity: 0;
        transform: translateY(16px);
      }

.legal-block h3 {
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: 1rem;
      }

.legal-block p {
        color: var(--c-muted);
        line-height: 1.7;
      }

.legal-block a {
        color: var(--accent);
        transition: color 0.2s;
      }

.legal-block a:hover {
        color: var(--accent-h);
      }

@media (max-width: 640px) {
        .legal-content {
          padding: 4rem var(--pad-x);
        }
      }

      /* aviso-legal: layout when .legal-content is used standalone (no .legal-grid) */
      .legal-simple .legal-content {
        margin: 0 auto;
        padding: 7rem var(--pad-x);
      }
      @media (max-width: 640px) {
        .legal-simple .legal-content {
          padding: 4rem var(--pad-x);
        }
      }

      /* === appended from careers.html === */
@media (max-width: 640px) {
        .hero {
                  padding: 7rem 1.25rem 3.5rem;
                  min-height: 45vh;
                }
      }

.culture-section {
        padding: 7rem var(--pad-x);
        max-width: var(--container);
        margin: 0 auto;
      }

.culture-intro {
        max-width: 760px;
        font-size: 1.25rem;
        line-height: 1.65;
        color: var(--c-muted);
        margin-bottom: 4rem;
        opacity: 0;
        transform: translateY(20px);
      }

.culture-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

.perk-card {
        border: 1px solid var(--c-border);
        padding: 2.25rem;
        opacity: 0;
        transform: translateY(24px);
      }

.perk-num {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        color: var(--accent);
        margin-bottom: 1rem;
        display: block;
      }

.perk-card h4 {
        margin-bottom: 0.75rem;
      }

.perk-card p {
        color: var(--c-muted);
        font-size: 0.9375rem;
        line-height: 1.6;
      }

@media (max-width: 900px) {
        .culture-grid {
          grid-template-columns: 1fr;
        }
      }

.positions-section {
        padding: 0 var(--pad-x) 7rem;
        max-width: var(--container);
        margin: 0 auto;
      }

.positions-section .eyebrow {
        color: var(--c-muted);
        margin-bottom: 2rem;
      }

.positions-empty {
        font-size: 1.125rem;
        line-height: 1.65;
        color: var(--c-muted);
        margin-bottom: 3rem;
      }

.speculative-card {
        border: 1px solid var(--c-border);
        padding: 3rem;
        max-width: 640px;
        opacity: 0;
        transform: translateY(24px);
      }

.speculative-card h3 {
        margin-bottom: 1rem;
      }

.speculative-card p {
        color: var(--c-muted);
        margin-bottom: 2rem;
        font-size: 0.9375rem;
        line-height: 1.6;
      }

.cta-section {
        padding: 8rem var(--pad-x);
        background: var(--dark);
        color: var(--d-text);
        text-align: center;
      }

.cta-inner {
        max-width: var(--container);
        margin: 0 auto;
      }

.cta-section .eyebrow {
        color: var(--d-muted);
        margin-bottom: 1.5rem;
      }

.cta-section h2 {
        margin-bottom: 2.5rem;
      }

      /* === appended from insights.html === */
.featured-section {
        padding: 5rem var(--pad-x) 0;
        max-width: var(--container);
        margin: 0 auto;
      }

.featured-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        border: 1px solid var(--c-border);
        padding: 2.5rem;
        opacity: 0;
        transform: translateX(-30px);
      }

.featured-card .article-img {
        background: var(--cream-2);
        border: 1px solid var(--c-border);
        aspect-ratio: 4 / 3;
        min-height: 400px;
      }

.featured-card .article-cat {
        font-family: var(--fm);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 1rem;
        display: block;
      }

.featured-card h2 {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        letter-spacing: -0.03em;
        line-height: 1.08;
        margin-bottom: 1.25rem;
      }

.featured-card p {
        color: var(--c-muted);
        margin-bottom: 1.5rem;
        line-height: 1.65;
      }

.featured-card .article-date {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.06em;
        color: var(--c-dim);
        display: block;
        margin-bottom: 1.5rem;
      }

.featured-card .read-link {
        font-size: 0.9375rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        transition: color 0.2s;
      }

.featured-card .read-link:hover {
        color: var(--accent);
      }

.featured-card .read-link .arrow {
        transition: transform 0.2s;
      }

.featured-card .read-link:hover .arrow {
        transform: translateX(4px);
      }

@media (max-width: 900px) {
        .featured-card {
          grid-template-columns: 1fr;
          padding: 1.5rem;
        }
        .featured-card .article-img {
          min-height: 240px;
        }
      }

.articles-section {
        padding: 4rem var(--pad-x) 7rem;
        max-width: var(--container);
        margin: 0 auto;
      }

.article-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }

.article-card {
        border: 1px solid var(--c-border);
        transition:
          border-color 0.3s,
          transform 0.3s;
        opacity: 0;
        transform: translateY(24px);
        cursor: pointer;
      }

.article-card:hover {
        border-color: var(--c-border-2);
        transform: translateY(-3px);
      }

.article-card .article-img {
        aspect-ratio: 16 / 10;
        background: var(--cream-2);
        border-bottom: 1px solid var(--c-border);
      }

.article-card-body {
        padding: 1.5rem;
      }

.article-card .article-cat {
        font-family: var(--fm);
        font-size: 0.6875rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 0.75rem;
        display: block;
      }

.article-card h4 {
        margin-bottom: 0.75rem;
      }

.article-card .article-date {
        font-family: var(--fm);
        font-size: 0.6875rem;
        letter-spacing: 0.06em;
        color: var(--c-dim);
      }

@media (max-width: 900px) {
        .article-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

@media (max-width: 640px) {
        .article-grid {
          grid-template-columns: 1fr;
        }
      }

      /* === appended from contact.html === */
.nav-cta.current {
        background: var(--accent-h);
      }

.contact-section {
        padding: 7rem var(--pad-x);
        max-width: var(--container);
        margin: 0 auto;
      }

.contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
        align-items: start;
      }

@media (max-width: 900px) {
        .contact-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
      }

.contact-block {
        margin-bottom: 2.5rem;
        opacity: 0;
        transform: translateY(24px);
      }

.contact-block h4 {
        font-family: var(--fm);
        font-size: 0.6875rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--c-dim);
        margin-bottom: 0.75rem;
      }

.contact-info {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: var(--c-text);
      }

.contact-info a {
        transition: color 0.2s;
      }

.contact-info a:hover {
        color: var(--accent);
      }

.contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

.form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

.form-group label {
        font-family: var(--fm);
        font-size: 0.6875rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--c-dim);
      }

.form-group input,
      .form-group textarea,
      .form-group select {
        font-family: var(--ff);
        font-size: 1rem;
        line-height: 1.6;
        padding: 0.875rem 1rem;
        border: 1px solid var(--c-border-2);
        background: transparent;
        color: var(--c-text);
        outline: none;
        transition: border-color 0.2s;
      }

.form-group input:focus,
      .form-group textarea:focus,
      .form-group select:focus {
        border-color: var(--accent);
      }

.form-group input::placeholder,
      .form-group textarea::placeholder {
        color: var(--c-dim);
      }

.form-group textarea {
        resize: vertical;
        min-height: 140px;
      }

.form-group select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230a0908' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
      }

.form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }

@media (max-width: 640px) {
        .form-row {
          grid-template-columns: 1fr;
        }
      }

.form-submit {
        align-self: flex-start;
      }

.contact-info-strip {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 2rem;
        margin-top: 4rem;
        padding-top: 3rem;
        border-top: 1px solid var(--c-border);
      }

.contact-info-strip .contact-block {
        margin-bottom: 0;
        opacity: 1;
        transform: none;
      }

@media (max-width: 900px) {
        .contact-info-strip {
          grid-template-columns: 1fr 1fr;
        }
      }

@media (max-width: 500px) {
        .contact-info-strip {
          grid-template-columns: 1fr;
        }
      }

.map-container {
        position: relative;
        border: 1px solid var(--c-border);
        overflow: hidden;
        opacity: 0;
        transform: translateY(24px);
      }

.map-container iframe {
        display: block;
        width: 100%;
        height: 500px;
        filter: grayscale(1) contrast(1.1) brightness(0.8);
        transition: filter 0.5s ease;
      }

.map-container:hover iframe {
        filter: grayscale(0) contrast(1) brightness(1);
      }

.map-label {
        position: absolute;
        bottom: 1.5rem;
        left: 1.5rem;
        background: var(--dark);
        color: var(--d-text);
        padding: 0.75rem 1.25rem;
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        z-index: 2;
      }

.map-pin {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -100%);
        z-index: 3;
        pointer-events: none;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
      }

.map-container::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 2;
      }

.cta-section h3 {
        margin-bottom: 2.5rem;
      }

.cta-section h3 a {
        transition: color 0.2s;
      }

.cta-section h3 a:hover {
        color: var(--accent);
      }

      /* === appended from about.html === */
.story-section {
        padding: 7rem var(--pad-x);
        max-width: var(--container);
        margin: 0 auto;
      }

.story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: start;
      }

.story-lead {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        line-height: 1.45;
        font-weight: 600;
        letter-spacing: -0.02em;
        color: var(--c-text);
      }

.story-body p {
        font-size: 1.0625rem;
        line-height: 1.75;
        color: var(--c-muted);
        margin-bottom: 1.5rem;
      }

.story-body p:last-child {
        margin-bottom: 0;
      }

.story-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
        padding-top: 3rem;
        border-top: 1px solid var(--c-border);
        text-align: center;
      }

.stat-num {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        color: var(--accent);
        line-height: 1;
        margin-bottom: 0.5rem;
      }

.stat-label {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--c-dim);
      }

@media (max-width: 900px) {
        .story-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }
      }

.team-bg {
        background: var(--cream-2);
        position: relative;
      }

.team-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10, 9, 8, 0.09) 1px, transparent 1px);
        background-size: 24px 24px;
      }

.team-section {
        position: relative;
        padding: 7rem var(--pad-x);
        max-width: var(--container);
        margin: 0 auto;
      }

.team-intro {
        max-width: 720px;
        font-size: 1.125rem;
        line-height: 1.65;
        color: var(--c-muted);
        margin-bottom: 4rem;
      }

.team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2.5rem;
      }

.team-card {
        opacity: 0;
        transform: translateY(24px);
        flex-shrink: 0;
      }

.team-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
      }

.team-name {
        font-size: 1.125rem;
        font-weight: 800;
        letter-spacing: -0.015em;
        line-height: 1.3;
      }

.team-role {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--accent);
      }

.team-bio {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: var(--c-muted);
      }

@media (max-width: 900px) {
        .team-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }
      }

@media (max-width: 640px) {
        .team-grid {
          grid-template-columns: 1fr;
        }
      }

.values-section {
        padding: 7rem var(--pad-x);
        background: var(--cream);
        color: var(--c-text);
      }

.values-inner {
        max-width: var(--container);
        margin: 0 auto;
      }

.values-section .eyebrow {
        color: var(--c-muted);
        margin-bottom: 3.5rem;
      }

.values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }

.value-item {
        opacity: 0;
        transform: translateY(24px);
      }

.value-item h4 {
        margin-bottom: 0.75rem;
        color: var(--c-text);
      }

.value-item p {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: var(--c-muted);
      }

@media (max-width: 900px) {
        .values-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }
      }

      /* Hero overrides for content/service pages
         (legal pages use the base .hero rule above) */
      .page-content .hero,
      .page-service .hero {
        padding: 8rem var(--pad-x) 5rem;
        min-height: 50vh;
      }
      .page-service .hero {
        min-height: 80vh;
      }
      @media (max-width: 640px) {
        .page-content .hero {
          padding: 7rem 1.25rem 3.5rem;
          min-height: 45vh;
        }
        .page-service .hero {
          padding: 7rem 1.25rem 3.5rem;
          min-height: 70vh;
        }
      }

      /* === appended from strategy.html === */
@media (max-width: 640px) {
        .hero {
                  padding: 7rem 1.25rem 3.5rem;
                  min-height: 70vh;
                }
      }

.overview {
        padding: 7rem var(--pad-x);
        max-width: var(--container);
        margin: 0 auto;
      }

.overview-intro {
        max-width: 720px;
        font-size: 1.125rem;
        line-height: 1.65;
        color: var(--c-muted);
        margin-bottom: 4rem;
      }

.diff-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }

.diff-card {
        border: 1px solid var(--c-border);
        padding: 2rem;
        opacity: 0;
        transform: translateY(24px);
      }

.diff-card .num {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        color: var(--accent);
        margin-bottom: 1rem;
        display: block;
      }

.diff-card h4 {
        margin-bottom: 0.75rem;
      }

.diff-card p {
        color: var(--c-muted);
        font-size: 0.9375rem;
        line-height: 1.6;
      }

@media (max-width: 900px) {
        .diff-grid {
          grid-template-columns: 1fr;
        }
      }

.capabilities {
        padding: 0 var(--pad-x) 7rem;
        max-width: var(--container);
        margin: 0 auto;
      }

.cap-card {
        border-top: 1px solid var(--c-border);
        padding: 3rem 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        opacity: 0;
        transform: translateY(24px);
      }

.cap-card:last-child {
        border-bottom: 1px solid var(--c-border);
      }

.cap-card h3 {
        margin-bottom: 0.5rem;
      }

.cap-desc {
        color: var(--c-muted);
        margin-bottom: 1.5rem;
        max-width: 520px;
      }

.cap-deliverables {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--c-dim);
        line-height: 2;
      }

@media (max-width: 900px) {
        .cap-card {
          grid-template-columns: 1fr;
          gap: 1rem;
          padding: 2rem 0;
        }
      }

.process {
        padding: 7rem var(--pad-x);
        background: var(--dark);
        color: var(--d-text);
      }

.process-inner {
        max-width: var(--container);
        margin: 0 auto;
      }

.process .eyebrow {
        color: var(--d-muted);
        margin-bottom: 4rem;
      }

.process-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
        position: relative;
      }

.process-grid::before {
        content: "";
        position: absolute;
        top: 1.25rem;
        left: 10%;
        right: 10%;
        height: 1px;
        background: var(--d-border-2);
      }

.process-step {
        opacity: 0;
        transform: translateY(24px);
      }

.process-step .num {
        font-family: var(--fm);
        font-size: 0.875rem;
        letter-spacing: 0.08em;
        color: var(--accent);
        margin-bottom: 1.25rem;
        display: block;
        position: relative;
      }

.process-step h4 {
        margin-bottom: 0.75rem;
        color: var(--d-text);
      }

.process-step p {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: var(--d-muted);
      }

@media (max-width: 900px) {
        .process-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }
        .process-grid::before {
          display: none;
        }
      }

.related {
        padding: 7rem var(--pad-x);
        max-width: var(--container);
        margin: 0 auto;
      }

.related .eyebrow {
        color: var(--c-muted);
        margin-bottom: 3rem;
      }

.related-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }

.related-card {
        border: 1px solid var(--c-border);
        padding: 2.5rem;
        transition:
          border-color 0.3s,
          transform 0.3s;
        opacity: 0;
        transform: translateY(24px);
      }

.related-card:hover {
        border-color: var(--c-border-2);
        transform: translateY(-2px);
      }

.related-card .num {
        font-family: var(--fm);
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        color: var(--accent);
        margin-bottom: 1rem;
        display: block;
      }

.related-card h3 {
        margin-bottom: 0.75rem;
      }

.related-card p {
        color: var(--c-muted);
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
      }

.related-card .link {
        font-size: 0.9375rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        transition: color 0.2s;
      }

.related-card .link:hover {
        color: var(--accent);
      }

.related-card .link .arrow {
        transition: transform 0.2s;
      }

.related-card .link:hover .arrow {
        transform: translate(2px, -2px);
      }

@media (max-width: 900px) {
        .related-grid {
          grid-template-columns: 1fr;
        }
      }

      /* === appended from brand-identity.html === */


      /* === appended from digital-products.html === */


      /* === appended from spatial-product.html === */


      /* === appended from ai-engineering.html === */


      /* === appended from growth.html === */

