﻿:root {
        --background: 0 0% 100%;
        --foreground: 0 0% 5%;
        --primary: 0 0% 5%;
        --primary-foreground: 0 0% 100%;
        --secondary: 0 0% 96%;
        --muted-foreground: 0 0% 40%;
        --accent: 0 78% 50%;
        --accent-glow: 0 78% 55%;
        --border: 0 0% 88%;
        --surface-chess: 0 0% 12%;
        --radius: 0.25rem;

        /* Typography — Counterplay (Montserrat + Inter) */
        --font-display: "Montserrat", "Inter", sans-serif;
        --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

        --fs-body: 1rem;
        --fw-display: 400;
        --ls-display: 0.045em;
        --ls-hero: 0.04em;
        --ls-brand: 0.1em;
        --ls-brand-nav: 0.06em;
        --ls-hero-title: 0.045em;
        --ls-nav: 0.1em;
        --ls-eyebrow: 0.3em;
        --ls-btn: 0.08em;
        --ls-phase-caps: 0.1em;
        --ls-piece-tag: 0.14em;
        --ls-piece-title: 0.02em;
        --ls-founder-label: 0.15em;
        --ls-result-h3: 0.06em;
        --ls-result-num: 0.04em;
        --ls-min-h4: 0.06em;
        --ls-client-cat: 0.06em;
        --ls-foot-links: 0.1em;
        --ls-body-loose: 0.01em;

        --fs-eyebrow: 0.75rem;
        --fs-section-title: clamp(2.15rem, 4.6vw, 3.35rem);
        --fs-hero-base: 2.85rem;
        --fs-hero-sm: 3.35rem;
        --fs-hero-md: 5.5rem;
        --fs-hero-lg: 7.75rem;
        --fs-hero-lead: clamp(1.05rem, 2.6vw, 1.35rem);
        --fs-hero-em: clamp(1.15rem, 2.9vw, 1.55rem);
        --fs-section-intro: 1.125rem;
        --fs-phase-num: clamp(2rem, 3.5vw, 2.65rem);
        --fs-phase-h3: clamp(1.12rem, 2vw, 1.42rem);
        --fs-phase-caps: 0.7rem;
        --fs-phase-body: 0.875rem;
        --fs-brand: 1.55rem;
        --fs-nav: 0.75rem;
        --fs-btn: 1.25rem;
        --fs-piece-title: clamp(0.95rem, 1.85vw, 1.25rem);
        --fs-piece-tag: 0.65rem;
        --fs-piece-desc: 0.8rem;
        --fs-client-cat: 0.7rem;
        --fs-result-num: clamp(2.15rem, 4.5vw, 3.35rem);
        --fs-result-h3: 1.65rem;
        --fs-result-p: 0.9rem;
        --fs-contact-h2: clamp(2.45rem, 7.5vw, 5.5rem);
        --fs-contact-blurb: 1.125rem;
        --fs-founder-label: 0.65rem;
        --fs-founder-name: 1.4rem;
        --fs-info-label: 0.65rem;
        --fs-info-value: 0.875rem;
        --fs-min-num: 1.85rem;
        --fs-min-h4: 1.05rem;
        --fs-min-p: 0.875rem;
        --fs-foot-brand: 1.55rem;
        --fs-foot-tag: 0.875rem;
        --fs-foot-links: 0.65rem;
        --fs-foot-bottom: 0.7rem;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: var(--font-body);
        font-size: var(--fs-body);
        background: hsl(var(--background));
        color: hsl(var(--foreground));
        line-height: 1.5;
        letter-spacing: var(--ls-body-loose);
      }
      h1,
      h2,
      h3,
      h4,
      h5,
      h6,
      .display {
        font-family: var(--font-display);
        font-weight: var(--fw-display);
        letter-spacing: var(--ls-display);
        line-height: 0.92;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 clamp(1.5rem, 4.5vw, 4rem);
      }
      .eyebrow {
        font-family: var(--font-body);
        font-size: var(--fs-eyebrow);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: var(--ls-eyebrow);
        color: hsl(var(--accent));
        margin: 0 0 1rem;
      }
      .text-gradient {
        background: linear-gradient(
          135deg,
          hsl(var(--accent)),
          hsl(var(--accent-glow))
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-family: var(--font-display);
        font-size: var(--fs-btn);
        font-weight: 500;
        letter-spacing: var(--ls-btn);
        text-align: center;
        transition: background 0.2s, border-color 0.2s, color 0.2s;
      }
      .btn-primary {
        background: hsl(var(--accent));
        color: hsl(var(--primary-foreground));
      }
      .btn-primary:hover {
        background: hsl(var(--accent) / 0.9);
      }
      .btn-outline {
        border: 1px solid hsl(var(--primary-foreground) / 0.3);
        color: hsl(var(--primary-foreground));
      }
      .btn-outline:hover {
        border-color: hsl(var(--accent));
        color: hsl(var(--accent));
      }

      /* Nav */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        background: hsl(var(--primary) / 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 78px;
      }
      .brand {
        font-family: var(--font-display);
        font-size: var(--fs-brand);
        font-weight: var(--fw-display);
        letter-spacing: var(--ls-brand-nav);
        color: hsl(var(--primary-foreground));
        text-transform: uppercase;
      }
      .nav-links {
        display: none;
        gap: 2rem;
      }
      .nav-links a {
        font-family: var(--font-body);
        font-size: var(--fs-nav);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: var(--ls-nav);
        color: hsl(var(--primary-foreground) / 0.7);
      }
      .nav-links a:hover {
        color: hsl(var(--accent));
      }
      .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        color: hsl(var(--primary-foreground));
        cursor: pointer;
        padding: 0;
      }
      .nav-drawer {
        display: none;
        border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
        background: hsl(var(--primary) / 0.98);
        backdrop-filter: blur(12px);
      }
      .nav-drawer a {
        display: block;
        padding: 0.75rem 0;
        font-family: var(--font-body);
        font-size: var(--fs-nav);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: var(--ls-nav);
        color: hsl(var(--primary-foreground) / 0.7);
        border-bottom: 1px solid hsl(var(--primary-foreground) / 0.06);
      }
      .nav-drawer a:hover {
        color: hsl(var(--accent));
      }
      #nav-open:checked ~ .nav .nav-drawer {
        display: block;
      }
      #nav-open:checked ~ .nav .icon-open {
        display: none;
      }
      #nav-open:checked ~ .nav .icon-close {
        display: block;
      }
      .icon-close {
        display: none;
      }
      @media (min-width: 768px) {
        .nav-links {
          display: flex;
        }
        .nav-toggle {
          display: none;
        }
        .nav-drawer {
          display: none !important;
        }
      }

      /* Hero */
      .hero {
        position: relative;
        min-height: 100vh;
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: hsl(var(--primary));
      }
      .hero-bg {
        position: absolute;
        inset: 0;
      }
      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
      }
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          hsl(var(--primary) / 0.6),
          hsl(var(--primary) / 0.4) 40%,
          hsl(var(--primary))
        );
      }
      .hero-inner {
        position: relative;
        z-index: 2;
        text-align: center;
        padding-top: 6rem;
        padding-bottom: 4rem;
        color: hsl(var(--primary-foreground));
      }
      .hero-inner.container {
        max-width: min(1680px, 96vw);
        padding-left: clamp(1rem, 4vw, 3.5rem);
        padding-right: clamp(1rem, 4vw, 3.5rem);
      }
      .hero h1 {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 0 clamp(0.25rem, 1.5vw, 1rem);
        box-sizing: border-box;
        font-family: var(--font-display);
        font-weight: var(--fw-display);
        font-size: var(--fs-hero-base);
        line-height: 0.9;
        letter-spacing: var(--ls-hero-title);
        min-height: 0.9em;
      }
      @media (min-width: 640px) {
        .hero h1 {
          font-size: var(--fs-hero-sm);
          min-height: 0.9em;
        }
      }
      @media (min-width: 768px) {
        .hero h1 {
          font-size: var(--fs-hero-md);
          min-height: 0.9em;
        }
      }
      @media (min-width: 1024px) {
        .hero h1 {
          font-size: var(--fs-hero-lg);
          min-height: 0.9em;
        }
      }
      .hero-lead {
        margin: 1.5rem auto 0;
        max-width: min(58rem, 92vw);
        font-family: var(--font-body);
        font-size: var(--fs-hero-lead);
        font-weight: 300;
        letter-spacing: 0.02em;
        color: hsl(var(--primary-foreground) / 0.7);
      }
      .hero-lead em {
        font-style: normal;
        font-weight: 600;
        color: hsl(var(--accent));
        font-size: var(--fs-hero-em);
        letter-spacing: var(--ls-body-loose);
        border-bottom: 2px solid hsl(var(--accent) / 0.6);
      }
      .hero-cta {
        margin-top: 2.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
      }
      .scroll-hint {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.5;
        animation: bounce 2s infinite;
      }
      @keyframes bounce {
        0%,
        100% {
          transform: translate(-50%, 0);
        }
        50% {
          transform: translate(-50%, 6px);
        }
      }

      /* Sections */
      section {
        padding: 3.5rem 0;
      }
      @media (min-width: 768px) {
        section {
          padding: 5rem 0;
        }
      }
      .section-title {
        margin: 0;
        max-width: none;
        font-size: var(--fs-section-title);
        letter-spacing: var(--ls-display);
      }
      .section-intro {
        margin-top: 1rem;
        max-width: 42rem;
        font-family: var(--font-body);
        color: hsl(var(--muted-foreground));
        font-size: var(--fs-section-intro);
        font-weight: 400;
        letter-spacing: var(--ls-body-loose);
        line-height: 1.65;
      }

      /* Approach */
      #approach {
        background: hsl(var(--background));
      }
      .phase-grid {
        margin-top: 3rem;
        display: grid;
        border: 1px solid hsl(var(--border));
      }
      @media (min-width: 768px) {
        .phase-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      .phase-card {
        padding: 2rem;
        border-bottom: 1px solid hsl(var(--border));
      }
      @media (min-width: 768px) {
        .phase-card {
          border-bottom: none;
          border-right: 1px solid hsl(var(--border));
        }
        .phase-card:last-child {
          border-right: none;
        }
      }
      .phase-card:nth-child(2) {
        background: hsl(var(--secondary) / 0.5);
      }
      .phase-num {
        font-family: var(--font-display);
        font-size: var(--fs-phase-num);
        font-weight: var(--fw-display);
        letter-spacing: var(--ls-display);
        color: hsl(var(--accent));
        line-height: 0.92;
      }
      .phase-time {
        font-family: var(--font-body);
        font-size: var(--fs-phase-caps);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: var(--ls-phase-caps);
        color: hsl(var(--muted-foreground));
      }
      .phase-card h3 {
        margin: 0.5rem 0 0.25rem;
        font-size: var(--fs-phase-h3);
        letter-spacing: var(--ls-display);
      }
      .phase-sub {
        font-family: var(--font-body);
        font-size: var(--fs-phase-caps);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: var(--ls-phase-caps);
        color: hsl(var(--accent));
        margin-bottom: 1rem;
      }
      .phase-desc {
        font-family: var(--font-body);
        font-size: var(--fs-phase-body);
        letter-spacing: var(--ls-body-loose);
        color: hsl(var(--muted-foreground));
        margin-bottom: 1.25rem;
      }
      .phase-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
      }
      .phase-card li {
        display: flex;
        gap: 0.5rem;
        font-family: var(--font-body);
        font-size: var(--fs-phase-body);
        letter-spacing: var(--ls-body-loose);
        color: hsl(var(--foreground) / 0.8);
        margin-bottom: 0.5rem;
      }
      .phase-card li span {
        color: hsl(var(--accent));
        flex-shrink: 0;
      }

      /* Services */
      #services {
        position: relative;
        overflow: hidden;
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
      }
      .chess-deco {
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.04;
      }
      .chess-deco img {
        position: absolute;
        object-fit: contain;
      }
      .services-pieces {
        position: relative;
        z-index: 2;
        margin-top: 2.5rem;
      }
      .pieces-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
        gap: clamp(0.5rem, 2vw, 1.25rem);
        padding: 0 0 1rem;
      }
      @media (min-width: 900px) {
        .pieces-row {
          flex-wrap: nowrap;
          gap: clamp(0.35rem, 1.8vw, 1.25rem);
          padding-top: clamp(8.5rem, 14vw, 12rem);
          min-height: 28rem;
        }
      }
      .piece-slot {
        position: relative;
        z-index: 1;
        flex: 1 1 140px;
        max-width: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 1rem 0.35rem 0;
        border: none;
        background: none;
        cursor: default;
        font: inherit;
        color: inherit;
        text-align: center;
        outline: none;
      }
      @media (min-width: 900px) {
        .piece-slot {
          flex: 1 1 0;
          min-width: 0;
          max-width: none;
          padding: 0 0.35rem;
        }
        .piece-slot--active {
          z-index: 5;
        }
      }
      .piece-slot:focus-visible {
        border-radius: 0.25rem;
        box-shadow: 0 0 0 2px hsl(var(--accent));
      }
      .piece-glow {
        position: absolute;
        left: 50%;
        bottom: clamp(0.1rem, 0.5vw, 0.4rem);
        width: clamp(120px, 13vw, 190px);
        height: clamp(120px, 13vw, 190px);
        transform: translateX(-50%) scale(0.88);
        border-radius: 50%;
        background: #421111;
        opacity: 0;
        transition: opacity 0.35s ease, transform 0.35s ease;
        pointer-events: none;
        z-index: 0;
      }
      .piece-copy {
        order: -1;
        width: 100%;
        max-width: 16rem;
        margin: 0 auto 0.75rem;
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
      @media (min-width: 900px) {
        .piece-copy {
          position: absolute;
          left: 50%;
          bottom: calc(100% + 0.85rem);
          transform: translateX(-50%) translateY(0.5rem);
          margin: 0;
          max-width: min(22rem, 36vw);
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
        }
      }
      .piece-copy h3 {
        margin: 0 0 0.4rem;
        font-family: var(--font-body);
        font-size: var(--fs-piece-title);
        font-weight: 500;
        text-transform: none;
        letter-spacing: var(--ls-piece-title);
        line-height: 1.2;
        color: hsl(var(--primary-foreground));
      }
      .piece-tag {
        font-family: var(--font-body);
        font-size: var(--fs-piece-tag);
        text-transform: uppercase;
        letter-spacing: var(--ls-piece-tag);
        color: hsl(var(--accent));
        font-weight: 600;
        margin: 0 0 0.55rem;
        line-height: 1.35;
      }
      .piece-desc {
        margin: 0;
        font-family: var(--font-body);
        font-size: var(--fs-piece-desc);
        letter-spacing: var(--ls-body-loose);
        line-height: 1.5;
        color: hsl(var(--primary-foreground) / 0.78);
      }
      .piece-figure {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: clamp(100px, 18vw, 140px);
        width: 100%;
      }
      .piece-figure img,
      .piece-figure svg {
        height: clamp(72px, 12vw, 100px);
        width: auto;
        max-width: 100%;
        object-fit: contain;
        filter: drop-shadow(0 6px 24px rgb(0 0 0 / 0.55));
        transform: scale(1);
        transform-origin: 50% 85%;
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, filter 0.35s ease;
      }
      @media (min-width: 900px) {
        .piece-figure {
          height: clamp(150px, 20vw, 210px);
        }
        .piece-figure img,
        .piece-figure svg {
          height: clamp(96px, 12.5vw, 138px);
        }
        .pieces-row .piece-slot:not(.piece-slot--active) .piece-figure img,
        .pieces-row .piece-slot:not(.piece-slot--active) .piece-figure svg {
          transform: scale(0.62);
          opacity: 0.4;
          filter: drop-shadow(0 4px 16px rgb(0 0 0 / 0.45)) brightness(0.92);
        }
        .piece-slot--active .piece-glow {
          opacity: 1;
          transform: translateX(-50%) scale(1);
        }
        .piece-slot--active .piece-copy {
          opacity: 1;
          visibility: visible;
          transform: translateX(-50%) translateY(0);
        }
        .piece-slot--active .piece-figure img,
        .piece-slot--active .piece-figure svg {
          transform: scale(1.78);
          opacity: 1;
          filter: drop-shadow(0 12px 40px rgb(0 0 0 / 0.65));
        }
      }
      @media (max-width: 899px) {
        .piece-slot {
          flex: 0 0 118px;
          max-width: 118px;
          min-width: 118px;
          padding: 0.65rem 0.35rem 0;
          border: none;
          background: none;
        }
        .pieces-row {
          flex-direction: row;
          flex-wrap: nowrap;
          align-items: flex-end;
          justify-content: flex-start;
          gap: 0.35rem;
          overflow-x: auto;
          overflow-y: visible;
          padding: 0.4rem 0.1rem 0.8rem;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: thin;
        }
        .piece-copy {
          order: -1;
          margin-bottom: 0.45rem;
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transform: translateY(0.35rem);
          transition: opacity 0.3s ease, transform 0.3s ease;
          min-height: 78px;
        }
        .piece-figure {
          height: 100px;
        }
        .piece-figure img,
        .piece-figure svg {
          height: 88px;
        }
        .pieces-row .piece-slot:not(.piece-slot--active) .piece-figure img,
        .pieces-row .piece-slot:not(.piece-slot--active) .piece-figure svg {
          transform: scale(0.7);
          opacity: 0.52;
          filter: drop-shadow(0 4px 12px rgb(0 0 0 / 0.45)) brightness(0.94);
        }
        .piece-slot--active .piece-glow {
          opacity: 1;
          transform: translateX(-50%) scale(1);
        }
        .piece-slot--active .piece-copy {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
        }
        .piece-slot--active .piece-figure img,
        .piece-slot--active .piece-figure svg {
          transform: scale(1.22);
          opacity: 1;
          filter: drop-shadow(0 10px 30px rgb(0 0 0 / 0.6));
        }
      }
      .services-cta {
        margin-top: 2rem;
        text-align: center;
      }
      .services-cta .btn {
        border: 1px solid hsl(var(--accent));
        color: hsl(var(--accent));
        background: transparent;
      }
      .services-cta .btn:hover {
        background: hsl(var(--accent));
        color: hsl(var(--primary-foreground));
      }

      /* Clients — horizontal marquee */
      #clients {
        background: hsl(var(--background));
        overflow: hidden;
      }
      .client-marquee {
        margin-top: 2rem;
        position: relative;
        width: 100vw;
        max-width: 100%;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
        padding: 0.35rem 1.25rem 1.25rem;
        mask-image: linear-gradient(
          90deg,
          transparent 0%,
          #000 3%,
          #000 97%,
          transparent 100%
        );
        -webkit-mask-image: linear-gradient(
          90deg,
          transparent 0%,
          #000 3%,
          #000 97%,
          transparent 100%
        );
      }
      .client-marquee-track {
        display: flex;
        width: max-content;
        flex-wrap: nowrap;
        animation: clientMarquee 55s linear infinite;
      }
      .client-marquee:hover .client-marquee-track,
      .client-marquee:focus-within .client-marquee-track {
        animation-play-state: paused;
      }
      @keyframes clientMarquee {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .client-marquee {
          overflow-x: auto;
          overflow-y: hidden;
          -webkit-overflow-scrolling: touch;
          mask-image: none;
          -webkit-mask-image: none;
          scrollbar-width: thin;
        }
        .client-marquee-track {
          animation: none;
          width: max-content;
          padding: 0 0 0.5rem;
        }
        .client-marquee-set[aria-hidden="true"] {
          display: none;
        }
      }
      .client-marquee-set {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1.25rem;
        flex-shrink: 0;
        align-items: flex-start;
      }
      /* Trailing space so the last logo does not touch the first logo of the duplicated set (marquee seam). */
      .client-marquee-set::after {
        content: '';
        flex: 0 0 1.25rem;
        width: 1.25rem;
        align-self: stretch;
        pointer-events: none;
      }
      .client-cell {
        flex: 0 0 auto;
        width: 158px;
        text-align: center;
      }
      .client-logo {
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid hsl(var(--accent) / 0.35);
        padding: 1rem;
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
      }
      .client-logo img {
        max-height: 5rem;
        max-width: 100%;
        object-fit: contain;
      }
      .client-cat {
        margin-top: 0.5rem;
        font-family: var(--font-body);
        font-size: var(--fs-client-cat);
        text-transform: uppercase;
        letter-spacing: var(--ls-client-cat);
        font-weight: 600;
        color: hsl(var(--accent) / 0.9);
      }

      /* Results */
      #results {
        position: relative;
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
        overflow: hidden;
      }
      .result-block {
        border-top: 1px solid hsl(var(--muted-foreground) / 0.2);
      }
      .result-block:last-child {
        border-bottom: 1px solid hsl(var(--muted-foreground) / 0.2);
      }
      .result-inner {
        display: grid;
      }
      @media (min-width: 768px) {
        .result-inner {
          grid-template-columns: 200px 1fr;
        }
      }
      .result-industry {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 2rem 0.5rem;
        border-bottom: 1px solid hsl(var(--muted-foreground) / 0.2);
      }
      @media (min-width: 768px) {
        .result-industry {
          border-bottom: none;
          border-right: 1px solid hsl(var(--muted-foreground) / 0.2);
        }
      }
      .result-icon {
        font-size: 2.5rem;
        color: hsl(var(--accent));
      }
      .result-industry h3 {
        margin: 0;
        font-size: var(--fs-result-h3);
        letter-spacing: var(--ls-result-h3);
      }
      .result-stats {
        display: flex;
        flex-wrap: wrap;
      }
      .result-stat {
        flex: 1 1 200px;
        padding: 2rem 1.5rem;
        border-bottom: 1px solid hsl(var(--muted-foreground) / 0.2);
      }
      @media (min-width: 768px) {
        .result-stat {
          border-bottom: none;
          border-right: 1px solid hsl(var(--muted-foreground) / 0.2);
        }
        .result-stat:last-child {
          border-right: none;
        }
      }
      .result-stat .num {
        font-family: var(--font-display);
        font-size: var(--fs-result-num);
        font-weight: var(--fw-display);
        letter-spacing: var(--ls-result-num);
        color: hsl(var(--accent));
        line-height: 0.92;
        display: block;
        margin-bottom: 0.75rem;
      }
      .result-stat p {
        margin: 0;
        font-family: var(--font-body);
        font-size: var(--fs-result-p);
        letter-spacing: var(--ls-body-loose);
        color: hsl(var(--primary-foreground) / 0.7);
        line-height: 1.6;
      }

      /* Contact — white panel, chess image barely visible (high-key) */
      #contact {
        position: relative;
        overflow: hidden;
        color: hsl(220 15% 12%);
        background: hsl(0 0% 100%);
      }
      .contact-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
      }
      .contact-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 55%;
        transform: scale(1.06);
        opacity: 0.22;
        filter: blur(10px) brightness(1.12) saturate(0.9);
      }
      .contact-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          100deg,
          hsl(0 0% 100% / 0.82) 0%,
          hsl(0 0% 100% / 0.76) 45%,
          hsl(220 20% 100% / 0.72) 100%
        );
      }
      .contact-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          hsl(0 0% 100% / 0.55) 0%,
          transparent 42%,
          hsl(0 0% 100% / 0.35) 100%
        );
      }
      .contact-accent-line {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(
          to right,
          transparent,
          hsl(var(--accent)),
          transparent
        );
        z-index: 2;
      }
      .contact-wrap {
        position: relative;
        z-index: 2;
        padding: 3.5rem 0;
      }
      @media (min-width: 768px) {
        .contact-wrap {
          padding: 5rem 0;
        }
      }
      .contact-grid {
        display: grid;
        gap: 2.5rem;
        align-items: start;
      }
      #contact .contact-wrap.container {
        max-width: min(1320px, 94vw);
        padding-left: clamp(1.75rem, 5.5vw, 5rem);
        padding-right: clamp(1.75rem, 5.5vw, 5rem);
      }
      @media (min-width: 1024px) {
        .contact-grid {
          grid-template-columns: 1fr 1fr;
          gap: 2.5rem;
        }
        #contact .contact-grid {
          column-gap: clamp(2.25rem, 4.5vw, 4rem);
        }
      }
      .contact-head .bar {
        width: 2.5rem;
        height: 2px;
        background: hsl(var(--accent));
        margin-bottom: 0.75rem;
      }
      .contact-title-row {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
      }
      .contact-head h2 {
        margin: 0 0 1.5rem;
        width: 100%;
        max-width: none;
        font-size: var(--fs-contact-h2);
        letter-spacing: var(--ls-hero-title);
        line-height: 0.85;
        color: hsl(0 0% 8%);
      }
      .contact-touch-btn {
        margin: 0 0 1.5rem;
        white-space: nowrap;
        font-size: clamp(0.9rem, 1.6vw, 1rem);
        padding: 0.7rem 1.2rem;
        line-height: 1;
        position: relative;
        z-index: 3;
        pointer-events: auto;
        background: hsl(var(--accent));
        border: 1px solid hsl(var(--accent));
        color: hsl(var(--primary-foreground));
        transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
      }
      .contact-touch-btn:hover,
      .contact-touch-btn:focus-visible {
        background: #421111;
        border-color: #421111;
        color: hsl(var(--primary-foreground));
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgb(66 17 17 / 0.35);
      }
      @media (max-width: 767px) {
        .contact-title-row {
          flex-direction: column;
          align-items: flex-start;
        }
        .contact-touch-btn {
          margin: 0 0 1.1rem;
        }
      }
      .contact-head h2 span {
        position: relative;
        display: inline-block;
      }
      .contact-head h2 span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.35rem;
        width: 100%;
        height: 4px;
        background: hsl(var(--accent));
      }
      .contact-head .blurb {
        max-width: min(38rem, 100%);
        font-family: var(--font-body);
        color: hsl(220 6% 42%);
        font-size: var(--fs-contact-blurb);
        font-weight: 400;
        letter-spacing: var(--ls-body-loose);
        line-height: 1.65;
      }
      #contact .contact-head .eyebrow {
        display: inline-block;
        margin: 0 0 1rem;
        padding: 0.4rem 0.75rem;
        color: hsl(220 15% 20%);
        background: transparent;
        border-radius: 2px;
        font-size: var(--fs-eyebrow);
        font-weight: 600;
        letter-spacing: var(--ls-eyebrow);
        text-transform: uppercase;
        box-shadow: none;
      }
      #contact.contact-clickable {
        cursor: pointer;
      }
      .founder-card {
        display: flex;
        gap: 1.25rem;
        padding: 1.5rem;
        border: 1px solid hsl(220 12% 90%);
        background: hsl(0 0% 100% / 0.82);
        backdrop-filter: blur(8px);
        box-shadow: 0 1px 3px hsl(220 20% 20% / 0.06);
        border-left: 4px solid hsl(var(--accent));
        margin-bottom: 1.25rem;
      }
      .founder-avatar {
        width: 3.5rem;
        height: 3.5rem;
        background: hsl(var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding: 0.4rem;
        border-radius: 2px;
      }
      .founder-avatar-img {
        max-height: 88%;
        width: auto;
        max-width: 88%;
        object-fit: contain;
      }
      .founder-avatar-img--silhouette {
        filter: brightness(0) invert(1);
      }
      .founder-label {
        font-family: var(--font-body);
        font-size: var(--fs-founder-label);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: var(--ls-founder-label);
        color: hsl(var(--accent));
        margin-bottom: 0.25rem;
      }
      .founder-name {
        font-family: var(--font-display);
        font-size: var(--fs-founder-name);
        font-weight: var(--fw-display);
        letter-spacing: var(--ls-brand);
        margin: 0;
        color: hsl(0 0% 8%);
      }
      .info-grid {
        display: grid;
        gap: 1rem;
      }
      @media (min-width: 640px) {
        .info-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      .info-card {
        padding: 1.25rem;
        border: 1px solid hsl(220 12% 90%);
        background: hsl(0 0% 100% / 0.82);
        backdrop-filter: blur(8px);
        box-shadow: 0 1px 3px hsl(220 20% 20% / 0.06);
        transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      }
      .info-card:hover {
        border-color: hsl(var(--accent) / 0.35);
        background: hsl(0 0% 100% / 0.94);
        box-shadow: 0 2px 8px hsl(220 20% 20% / 0.08);
      }
      .info-card .icon {
        width: 2.5rem;
        height: 2.5rem;
        background: hsl(220 12% 94% / 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.75rem;
        color: hsl(220 15% 28%);
      }
      .info-card:hover .icon {
        background: hsl(var(--accent) / 0.2);
      }
      .info-label {
        font-family: var(--font-body);
        font-size: var(--fs-info-label);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: var(--ls-founder-label);
        color: hsl(var(--muted-foreground));
        margin-bottom: 0.25rem;
      }
      .info-card a {
        font-family: var(--font-body);
        font-size: var(--fs-info-value);
        letter-spacing: var(--ls-body-loose);
      }
      .info-card a:hover {
        color: hsl(var(--accent));
      }
      .linkedin-row {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
        border: 1px solid hsl(220 12% 90%);
        background: hsl(0 0% 100% / 0.82);
        backdrop-filter: blur(8px);
        box-shadow: 0 1px 3px hsl(220 20% 20% / 0.06);
        margin-top: 1rem;
      }
      .linkedin-row:hover {
        border-color: hsl(var(--accent) / 0.5);
      }
      .min-engage {
        position: relative;
        padding: 1.5rem;
        border: 1px solid hsl(220 12% 90%);
        background: hsl(0 0% 100% / 0.82);
        backdrop-filter: blur(8px);
        box-shadow: 0 1px 3px hsl(220 20% 20% / 0.06);
        margin-top: 1rem;
        overflow: hidden;
      }
      .min-engage::before {
        content: "";
        position: absolute;
        top: -2rem;
        right: -2rem;
        width: 5rem;
        height: 5rem;
        background: hsl(var(--accent) / 0.05);
        transform: rotate(45deg);
      }
      .min-engage-inner {
        display: flex;
        gap: 1rem;
        position: relative;
      }
      .min-num {
        font-family: var(--font-display);
        font-size: var(--fs-min-num);
        font-weight: var(--fw-display);
        letter-spacing: var(--ls-display);
        color: hsl(var(--accent));
        line-height: 0.92;
      }
      .min-engage h4 {
        margin: 0 0 0.25rem;
        font-family: var(--font-display);
        font-size: var(--fs-min-h4);
        font-weight: var(--fw-display);
        letter-spacing: var(--ls-min-h4);
        color: hsl(0 0% 10%);
      }
      .min-engage p {
        margin: 0;
        font-family: var(--font-body);
        font-size: var(--fs-min-p);
        letter-spacing: var(--ls-body-loose);
        color: hsl(220 8% 40%);
        line-height: 1.6;
      }
      .contact-bottom-line {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          to right,
          transparent,
          hsl(var(--accent) / 0.5),
          transparent
        );
        z-index: 2;
      }

      /* Footer */
      footer {
        background: hsl(var(--foreground));
        color: hsl(var(--background));
        padding: 2rem 0;
      }
      .foot-top {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
      }
      @media (min-width: 768px) {
        .foot-top {
          flex-direction: row;
          justify-content: space-between;
          text-align: left;
        }
      }
      .foot-brand {
        font-family: var(--font-display);
        font-size: var(--fs-foot-brand);
        font-weight: var(--fw-display);
        letter-spacing: var(--ls-brand);
        margin: 0;
      }
      .foot-tag {
        font-family: var(--font-body);
        font-size: var(--fs-foot-tag);
        letter-spacing: var(--ls-body-loose);
        opacity: 0.5;
        margin: 0.25rem 0 0;
      }
      .foot-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
      }
      .foot-links a {
        font-family: var(--font-body);
        font-size: var(--fs-foot-links);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: var(--ls-foot-links);
        opacity: 0.5;
      }
      .foot-links a:hover {
        opacity: 1;
        color: hsl(var(--accent));
      }
      .foot-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid hsl(var(--background) / 0.1);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
        font-family: var(--font-body);
        font-size: var(--fs-foot-bottom);
        letter-spacing: var(--ls-body-loose);
        opacity: 0.35;
      }
      @media (min-width: 768px) {
        .foot-bottom {
          flex-direction: row;
          justify-content: space-between;
        }
      }

      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
      }

      /* Force theme typography if any later stylesheet overrides fonts */
      html body,
      body p,
      body li,
      body a,
      body span,
      body button,
      body input,
      body textarea,
      body select {
        font-family: var(--font-body) !important;
      }
      body h1,
      body h2,
      body h3,
      body h4,
      body h5,
      body h6,
      body .display,
      body .brand,
      body .section-title,
      body .btn,
      body .hero h1,
      body .result-stat .num,
      body .founder-name,
      body .min-num,
      body .foot-brand {
        font-family: var(--font-display) !important;
      }
      body h1,
      body h2,
      body h3,
      body h4,
      body h5,
      body h6,
      body .section-title,
      body .phase-card h3,
      body .piece-copy h3,
      body .result-industry h3,
      body .contact-head h2,
      body .min-engage h4 {
        letter-spacing: var(--ls-hero-title) !important;
      }
