  /* =========================================================
     Stripped-back project template
     Project · Client · Functionality · Outcomes
     ========================================================= */

  .pj { background: var(--paper); color: var(--ink); }

  /* ---------- breadcrumb ---------- */
  .pj-crumb {
    padding: 22px clamp(20px, 5vw, 88px) 0;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-light);
    display: flex; gap: 14px; align-items: center;
  }
  .pj-crumb a {
    color: inherit; text-decoration: none;
    border-bottom: 1px solid currentColor; padding-bottom: 1px;
  }
  .pj-crumb .sep { opacity: 0.4; }

  /* ---------- hero ---------- */
  .pj-hero {
    padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 88px) clamp(28px, 4vw, 56px);
    display: grid;
    gap: clamp(28px, 3.5vw, 56px);
    perspective: 1600px;
  }
  .pj-hero__meta {
    display: flex; gap: 12px; flex-wrap: wrap;
    align-items: center;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-light);
  }
  .pj-hero__meta .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
  }
  .pj-hero__title {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(28px, 4vw, 80px);
    align-items: end;
  }
  @media (max-width: 900px) { .pj-hero__title { grid-template-columns: 1fr; } }

  .pj-hero h1 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2.7rem, 5.8vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: -0.015em;
    margin: 0;
    color: var(--ink);
    text-wrap: balance;
  }
  .pj-hero h1 em { font-style: italic; color: var(--gold-deep); }
  .pj-hero__lede {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.55;
    color: var(--muted-light);
    margin: 0;
    max-width: 36ch;
  }

  /* tilting browser mock */
  .pj-stage {
    margin-top: clamp(24px, 3vw, 40px);
    transform-style: preserve-3d;
  }
  .pj-stage__tilt {
    position: relative;
    transition: transform 600ms var(--ease-smooth);
    transform-style: preserve-3d;
    will-change: transform;
  }
  .pj-browser {
    position: relative;
    border-radius: 22px;
    background: var(--bg-card);
    box-shadow:
      0 60px 90px -40px rgba(20,32,26,0.55),
      0 20px 40px -20px rgba(20,32,26,0.4),
      inset 0 0 0 1px rgba(255,255,255,0.06);
    overflow: hidden;
  }
  .pj-browser__bar {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.22);
  }
  .pj-browser__bar .dot {
    width: 11px; height: 11px; border-radius: 50%;
    background: rgba(243,238,221,0.18);
  }
  .pj-browser__bar .url {
    margin-left: 18px;
    font-family: var(--f-mono);
    font-size: 12px;
    color: rgba(243,238,221,0.55);
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(243,238,221,0.06);
  }
  .pj-browser__body {
    aspect-ratio: 16/9;
    background:
      repeating-linear-gradient(135deg,
        rgba(201,162,75,0.10) 0 1px,
        transparent 1px 18px),
      linear-gradient(180deg, #1c2a23, #14201a);
    position: relative;
    display: grid;
    place-items: center;
  }
  .pj-browser__caption {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(243,238,221,0.6);
    display: inline-flex; align-items: center; gap: 14px;
    padding: 10px 18px;
    background: rgba(20,32,26,0.55);
    border-radius: var(--r-pill);
  }
  .pj-browser__caption::before, .pj-browser__caption::after {
    content: ""; width: 18px; height: 1px; background: currentColor; opacity: 0.5;
  }

  /* corner sticker */
  .pj-sticker {
    position: absolute;
    top: -22px; right: -22px;
    width: 130px; height: 130px;
    background: var(--gold);
    color: #2a1f00;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.1;
    box-shadow: 0 12px 30px -10px rgba(201,162,75,0.5);
    transform: rotate(-8deg);
    z-index: 2;
    animation: pj-stick-bob 6s ease-in-out infinite;
  }
  @keyframes pj-stick-bob {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50%      { transform: rotate(-6deg) translateY(-4px); }
  }
  .pj-sticker span { display: block; font-style: normal; font-size: 0.75rem; font-family: var(--f-mono); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; opacity: 0.7; }

  /* meta strip below hero image */
  .pj-meta {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(0,0,0,0.18);
  }
  @media (max-width: 700px) { .pj-meta { grid-template-columns: 1fr 1fr; } }
  .pj-meta dt {
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-bottom: 6px;
  }
  .pj-meta dd {
    margin: 0;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
  }

  /* ---------- tech marquee ---------- */
  .pj-tech {
    background: var(--paper-deep);
    border-block: 1px solid rgba(0,0,0,0.10);
    overflow: hidden;
    padding: 18px 0;
    /* break out of the .page padding to span the full viewport width */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  /* Header & footer keep their light text on the paper-bodied case study */
  .pj .header,
  .pj .footer { color: var(--paper); }

  /* Case study imagery */
  .pj-shot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--r-20);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08), 0 24px 50px -30px rgba(20,32,26,0.5);
  }
  .pj-shots {
    margin-top: 28px;
    display: grid;
    gap: 16px;
  }
  .pj-compare-wrap {
    margin-top: 28px;
    display: grid;
    gap: 12px;
  }
  .pj-compare {
    --split: 54%;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-20);
    overflow: hidden;
    background: var(--paper-deep);
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,0.08),
      0 24px 50px -30px rgba(20,32,26,0.5);
    user-select: none;
    touch-action: pan-y;
  }
  .pj-compare::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(20,32,26,0.02), rgba(20,32,26,0.18)),
      radial-gradient(90% 60% at 50% 100%, rgba(91,148,166,0.08), transparent 60%);
    pointer-events: none;
  }
  .pj-compare__pane {
    position: absolute;
    inset: 0;
  }
  .pj-compare__pane img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .pj-compare__after {
    clip-path: inset(0 calc(100% - var(--split)) 0 0);
  }
  .pj-compare__range {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
  }
  .pj-compare__label {
    position: absolute;
    top: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: var(--r-pill);
    background: rgba(20,32,26,0.64);
    color: rgba(243,238,221,0.92);
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }
  .pj-compare__label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,162,75,0.12);
  }
  .pj-compare__label--before { left: 16px; }
  .pj-compare__label--after {
    right: 16px;
    background: rgba(91,148,166,0.68);
  }
  .pj-compare__label--after::before { background: rgba(243,238,221,0.92); box-shadow: 0 0 0 4px rgba(243,238,221,0.12); }
  .pj-compare__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split);
    z-index: 4;
    width: 0;
    pointer-events: none;
  }
  .pj-compare__divider::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    background: linear-gradient(180deg, rgba(243,238,221,0.28), rgba(243,238,221,0.96), rgba(243,238,221,0.28));
    box-shadow:
      0 0 0 1px rgba(20,32,26,0.08),
      0 0 24px rgba(243,238,221,0.32);
  }
  .pj-compare__handle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
      radial-gradient(circle at 35% 30%, rgba(243,238,221,0.88), rgba(243,238,221,0.22) 38%, transparent 39%),
      linear-gradient(180deg, #d2ae59 0%, #c9a24b 52%, #8f6a24 100%);
    color: #1a2219;
    box-shadow:
      0 16px 30px -14px rgba(20,32,26,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.28);
  }
  .pj-compare__handle::before {
    content: "\2194";
    font-family: var(--f-display);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
  .pj-compare__handle::after {
    content: "drag";
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-light);
  }
  .pj-compare:focus-within .pj-compare__handle {
    box-shadow:
      0 16px 30px -14px rgba(20,32,26,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.28),
      0 0 0 5px rgba(201,162,75,0.24);
  }
  .pj-compare__hint {
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-light);
  }
  @media (max-width: 640px) {
    .pj-compare__label {
      top: 12px;
      padding: 8px 10px;
      font-size: 9.5px;
      letter-spacing: 0.15em;
    }
    .pj-compare__label--before { left: 12px; }
    .pj-compare__label--after { right: 12px; }
    .pj-compare__handle {
      width: 48px;
      height: 48px;
    }
    .pj-compare__handle::after {
      bottom: -22px;
      font-size: 9px;
    }
  }
  .pj-browser__img,
  .pj-browser__vid {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  /* video used in the .pj-shots stack — sits at natural ratio like .pj-shot */
  video.pj-shot { height: auto; }
  .pj-tech__track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: pj-tech-scroll 36s linear infinite;
  }
  @keyframes pj-tech-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .pj-tech__item {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--muted-light);
    display: inline-flex; align-items: center; gap: 24px;
    white-space: nowrap;
  }
  .pj-tech__item::after {
    content: "✶";
    color: var(--gold);
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .pj-tech__item:last-child::after { content: none; }

  /* ---------- client + project two-col ---------- */
  .pj-split {
    padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 88px);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(36px, 5vw, 96px);
    align-items: start;
  }
  @media (max-width: 900px) { .pj-split { grid-template-columns: 1fr; } }
  .pj-split + .pj-split { padding-top: 0; }

  .pj-side h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.05;
    margin: 0 0 18px;
    color: var(--ink);
    text-wrap: balance;
  }
  .pj-side h2 em { font-style: italic; color: var(--gold-deep); }
  .pj-side .eyebrow { color: var(--muted-light); }
  .pj-side .ph {
    margin-top: 28px;
    background:
      repeating-linear-gradient(135deg,
        rgba(201,162,75,0.10) 0 1px,
        transparent 1px 16px),
      var(--paper-deep);
    border-radius: var(--r-20);
    aspect-ratio: 4/5;
    display: grid; place-items: center;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-light);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  }
  .pj-body p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink);
    margin: 0 0 18px;
    max-width: 56ch;
    text-wrap: pretty;
  }
  .pj-body p.lead {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .pj-body p strong { color: var(--gold-deep); font-weight: 500; }

  /* small facts list */
  .pj-facts {
    list-style: none; margin: 28px 0 0; padding: 0;
    display: grid; gap: 0;
    border-top: 1px solid rgba(0,0,0,0.18);
  }
  .pj-facts > div {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    align-items: baseline;
  }
  .pj-facts dt {
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-light);
  }
  .pj-facts dd {
    margin: 0;
    font-size: 0.98rem;
    color: var(--ink);
  }
  @media (max-width: 600px) {
    .pj-facts > div { grid-template-columns: 1fr; gap: 4px; }
  }

  /* ---------- functionality grid ---------- */
  .pj-func {
    background: var(--bg-deep);
    color: rgba(243,238,221,0.92);
    padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 88px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .pj-func__head {
    max-width: 64ch;
    margin-bottom: 56px;
  }
  .pj-func__head .eyebrow { color: rgba(243,238,221,0.55); }
  .pj-func__head h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 1;
    margin: 18px 0 0;
    color: #f3eedd;
    text-wrap: balance;
  }
  .pj-func__head h2 em { font-style: italic; color: var(--gold); }

  .pj-func__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  @media (max-width: 900px) { .pj-func__grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .pj-func__grid { grid-template-columns: 1fr; } }

  .pj-feat {
    position: relative;
    padding: 32px 30px 36px;
    background: var(--bg-card);
    border-radius: var(--r-20);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.04),
      inset 0 0 80px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 320ms var(--ease-pop), box-shadow 320ms ease;
  }
  .pj-feat:hover {
    transform: translateY(-3px);
    box-shadow:
      0 30px 50px -30px rgba(0,0,0,0.5),
      inset 0 0 0 1px rgba(201,162,75,0.25),
      inset 0 0 80px rgba(0,0,0,0.2);
  }
  .pj-feat__icon {
    width: 64px; height: 64px;
    margin-bottom: 20px;
    color: var(--gold);
  }
  .pj-feat__num {
    position: absolute;
    top: 22px; right: 26px;
    font-family: var(--f-display);
    font-style: italic;
    color: rgba(243,238,221,0.25);
    font-size: 1.1rem;
  }
  .pj-feat h3 {
    margin: 0 0 8px;
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.15;
    color: #f3eedd;
  }
  .pj-feat p {
    margin: 0;
    color: rgba(243,238,221,0.7);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* feature icon animations */
  .pj-feat__icon svg { width: 100%; height: 100%; }
  .pj-feat__icon path,
  .pj-feat__icon circle,
  .pj-feat__icon rect,
  .pj-feat__icon line { vector-effect: non-scaling-stroke; }

  /* 1. In-browser player — play button with expanding sound rings */
  @keyframes pj-ic-pulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
  }
  .pj-feat--player .pulse-a,
  .pj-feat--player .pulse-b {
    transform-origin: 32px 32px; transform-box: view-box;
    animation: pj-ic-pulse 2.6s ease-out infinite;
  }
  .pj-feat--player .pulse-b { animation-delay: 1.3s; }
  @keyframes pj-ic-play-beat {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.12); }
  }
  .pj-feat--player .play { animation: pj-ic-play-beat 2.6s ease-in-out infinite; transform-origin: 32px 32px; transform-box: view-box; }

  /* 2. Members' library — stacked tabs, play badge pulsing */
  @keyframes pj-ic-beat {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.25); }
  }
  .pj-feat--library .lib-play { animation: pj-ic-beat 2.4s ease-in-out infinite; transform-origin: 35px 47px; transform-box: view-box; }

  /* 3. Video courses — screen with a progress bar filling */
  @keyframes pj-ic-prog {
    0%        { stroke-dashoffset: 40; }
    70%, 100% { stroke-dashoffset: 0; }
  }
  .pj-feat--courses .prog { stroke-dasharray: 40; animation: pj-ic-prog 3.4s ease-in-out infinite; }

  /* 4. Store — shopping bag, gentle bob */
  @keyframes pj-ic-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
  }
  .pj-feat--store .bag { animation: pj-ic-bob 2.8s ease-in-out infinite; transform-box: fill-box; }

  /* 5. Editorial front page — text lines drawing in sequence */
  @keyframes pj-ic-line {
    0%, 100% { stroke-dashoffset: 32; opacity: 0.3; }
    45%, 70% { stroke-dashoffset: 0;  opacity: 1; }
  }
  .pj-feat--editorial .ed-l { stroke-dasharray: 32; animation: pj-ic-line 3s ease-in-out infinite; }
  .pj-feat--editorial .ed-l2 { animation-delay: 0.35s; }
  .pj-feat--editorial .ed-l3 { animation-delay: 0.7s; }

  /* 6. Performance — gauge needle sweeping to 100 */
  @keyframes pj-ic-sweep {
    0%, 100%  { transform: rotate(-52deg); }
    55%, 78%  { transform: rotate(52deg); }
  }
  .pj-feat--perf .needle { animation: pj-ic-sweep 3.6s ease-in-out infinite; transform-origin: 32px 44px; transform-box: view-box; }

  /* --- feature icons: designer-portfolio set --- */

  /* split-screen heroes — two inner panels nudge apart */
  @keyframes pj-ic-shift-l {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-2.5px); }
  }
  @keyframes pj-ic-shift-r {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(2.5px); }
  }
  .pj-feat--hero .hero-l { animation: pj-ic-shift-l 3s ease-in-out infinite; transform-box: fill-box; }
  .pj-feat--hero .hero-r { animation: pj-ic-shift-r 3s ease-in-out infinite; transform-box: fill-box; }

  /* slide-out navigation — panel slides in and out */
  @keyframes pj-ic-slide {
    0%, 100% { transform: translateX(22px); opacity: 0; }
    45%, 75% { transform: translateX(0);    opacity: 1; }
  }
  .pj-feat--nav .nav-panel { animation: pj-ic-slide 3.4s ease-in-out infinite; transform-box: fill-box; }

  /* works grid — tiles pop in sequence */
  @keyframes pj-ic-pop {
    0%, 70%, 100% { transform: scale(1); opacity: 1; }
    35%           { transform: scale(0.6); opacity: 0.25; }
  }
  .pj-feat--works .wk { animation: pj-ic-pop 3.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  .pj-feat--works .wk2 { animation-delay: 0.18s; }
  .pj-feat--works .wk3 { animation-delay: 0.36s; }
  .pj-feat--works .wk4 { animation-delay: 0.54s; }

  /* archive — filter-pill highlight slides between tabs */
  @keyframes pj-ic-pill {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(24px); }
  }
  .pj-feat--archive .arc-pill { animation: pj-ic-pill 3s ease-in-out infinite; transform-box: fill-box; }

  /* testimonials — rating dots, the last one pulses */
  @keyframes pj-ic-twinkle {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.4); }
  }
  .pj-feat--trust .trust-star3 { animation: pj-ic-twinkle 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

  /* bespoke editing system — a content block drops into place */
  @keyframes pj-ic-drop {
    0%        { transform: translateY(-14px); opacity: 0; }
    30%, 100% { transform: translateY(0);     opacity: 1; }
  }
  .pj-feat--cms .cms-block { animation: pj-ic-drop 3.2s ease-in-out infinite; transform-box: fill-box; }

  /* ---------- achievements / counters ---------- */
  .pj-achv {
    position: relative;
    padding: clamp(32px, 4vw, 56px) clamp(20px, 5vw, 88px) clamp(72px, 9vw, 140px);
    background: var(--paper);
    overflow: hidden;
  }
  .pj-achv__bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .pj-achv__bg path { fill: none; stroke: rgba(201,162,75,0.28); stroke-width: 1.6; }
  .pj-achv > * { position: relative; z-index: 1; }

  .pj-achv__head {
    max-width: 64ch;
    margin-bottom: clamp(40px, 5vw, 80px);
  }
  .pj-achv__head h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 0.96;
    margin: 18px 0 16px;
    color: var(--ink);
    text-wrap: balance;
  }
  .pj-achv__head h2 em { font-style: italic; color: var(--gold-deep); }
  .pj-achv__head p {
    color: var(--muted-light);
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0;
    max-width: 50ch;
  }

  .pj-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.18);
  }
  @media (max-width: 1000px) { .pj-stats { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .pj-stats { grid-template-columns: 1fr; } }

  .pj-stat {
    padding: 36px 22px 32px;
    border-bottom: 1px solid rgba(0,0,0,0.18);
    position: relative;
  }
  @media (min-width: 1001px) {
    .pj-stat:not(:nth-child(4n)) {
      box-shadow: inset -1px 0 0 0 rgba(0,0,0,0.10);
    }
  }
  /* inner wrapper keeps the text block centred while the cell borders
     stay full width to draw the grid */
  .pj-stat__inner {
    display: grid;
    gap: 12px;
    align-content: start;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
  .pj-stat__lbl {
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-light);
  }
  .pj-stat__v {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3.2rem, 6.2vw, 5.6rem);
    line-height: 0.9;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
  }
  .pj-stat__v .sign,
  .pj-stat__v .unit {
    font-style: normal;
    color: var(--gold-deep);
    font-size: 0.5em;
    line-height: 1;
    vertical-align: 0.45em;
  }
  .pj-stat__v .sign { margin-right: 2px; }
  .pj-stat__num { display: inline-block; min-width: 2ch; }
  .pj-stat__desc {
    color: var(--muted-light);
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }
  .pj-stat__from {
    margin-top: 4px;
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-light);
    opacity: 0.7;
  }

  /* tiny up-arrow on positive stats */
  .pj-stat[data-trend="up"]::before {
    content: "↑";
    position: absolute;
    top: 36px; right: 10px;
    font-family: var(--f-mono);
    font-size: 14px;
    color: var(--gold-deep);
    opacity: 0.5;
  }

  /* ---------- CTA band ---------- */
  .pj-band {
    background: var(--bg-deep);
    color: #f3eedd;
    padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 88px);
    text-align: center;
    display: grid;
    place-items: center;
    gap: 24px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .pj-band h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1;
    margin: 0;
    text-wrap: balance;
    max-width: 22ch;
  }
  .pj-band h2 em { font-style: italic; color: var(--gold); }
  .pj-band p {
    color: rgba(243,238,221,0.7);
    max-width: 48ch;
    line-height: 1.55;
    margin: 0;
  }

  /* reveal helpers (use scroll observer via inline JS) */
  .pj-rise {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms var(--ease-smooth), transform 700ms var(--ease-smooth);
    transition-delay: var(--d, 0ms);
  }
  .pj-rise.is-in { opacity: 1; transform: none; }

  @media (prefers-reduced-motion: reduce) {
    .pj-stage__tilt { transition: none !important; }
    .pj-tech__track { animation: none !important; }
    .pj-rise { opacity: 1; transform: none; transition: none; }
    .pj-feat__icon * { animation: none !important; }
    .pj-sticker { animation: none !important; }
  }
