/* ══════════════════════════════════════════════════════════
       DESIGN TOKENS — Nítido (faithful to design_system2)
    ══════════════════════════════════════════════════════════ */
    :root {
      --bg-primary:            #080808;
      --bg-secondary:          #111111;
      --bg-card:               #141414;
      --bg-glass:              rgba(255,255,255,0.04);
      --color-white:           #ffffff;
      --color-orange:          #ff6501;
      --color-blue:            #104385;
      --color-neutral:         #808080;
      --color-neutral-light:   #bbbbbb;
      --border-primary:        rgba(255,255,255,0.08);
      --border-secondary:      rgba(255,255,255,0.18);
      --gradient-hero:         linear-gradient(135deg, #104385, #ff6501);
      --font-primary:          "Inter Tight", Arial, sans-serif;
      --font-mono:             "JetBrains Mono", monospace;
      --ivory:                 #f8f7f3;
      --dark-gray:             #4d4d4d;
      --light-gray:            #e8e8e8;
      --silver-gray:           #c8c8c8;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    html, body { width: 100%; overflow-x: hidden; }
    body {
      font-family: var(--font-primary);
      background: var(--ivory);
      color: var(--bg-primary);
      cursor: none;
    }

    /* ── Custom Cursor ─────────────────────────────────────── */
    .cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--color-orange);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      top: 0; left: 0;
      transform: translate(-50%, -50%);
      transition: width .3s ease, height .3s ease, opacity .3s ease;
      will-change: left, top;
    }
    .cursor-follower {
      position: fixed;
      width: 34px; height: 34px;
      border: 1.5px solid rgba(255,101,1,.45);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99998;
      top: 0; left: 0;
      transform: translate(-50%, -50%);
      will-change: left, top;
    }
    body.cursor-link .cursor        { width: 18px; height: 18px; opacity: .5; }
    body.cursor-link .cursor-follower { width: 52px; height: 52px; border-color: rgba(255,101,1,.3); }

    /* ══════════════════════════════════════════════════════════
       NAV — from design_system3.html (ds2-nav)
    ══════════════════════════════════════════════════════════ */
    .ds2-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      background: rgba(8,8,8,.92);
      border-bottom: 1px solid var(--border-primary);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      height: 3.25rem;
      gap: 1.5rem;
    }

    .ds2-nav-brand {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .ds2-nav-logo {
      height: 1.75rem;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .ds2-nav-links {
      display: flex;
      align-items: center;
      gap: .125rem;
    }
    .ds2-nav-links a {
      font-family: var(--font-primary);
      font-size: .7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .05rem;
      color: rgba(255,255,255,.5);
      padding: .4rem .7rem;
      border-radius: .5rem;
      border: 1px solid transparent;
      transition: all .25s ease;
      white-space: nowrap;
      text-decoration: none;
    }
    .ds2-nav-links a:hover,
    .ds2-nav-links a.active {
      color: var(--color-white);
      border-color: var(--border-secondary);
    }
    .ds2-nav-links a.active {
      background: rgba(255,255,255,.06);
    }

    .ds2-nav-cta {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .5rem 1.25rem;
      border-radius: 999px;
      background: var(--gradient-hero);
      color: #fff;
      font-family: var(--font-primary);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .04rem;
      text-transform: uppercase;
      text-decoration: none;
      transition: filter .3s ease, transform .3s ease, box-shadow .3s ease;
    }
    .ds2-nav-cta:hover {
      filter: brightness(1.18);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(255,101,1,.3);
    }

    /* Mobile nav toggle */
    .ds2-nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: .5rem;
      background: none;
      border: none;
    }
    .ds2-nav-burger span {
      display: block;
      width: 22px; height: 1.5px;
      background: rgba(255,255,255,.7);
      border-radius: 999px;
      transition: all .3s ease;
    }

    /* ══════════════════════════════════════════════════════════
       HERO INTRO — Dark section
    ══════════════════════════════════════════════════════════ */
    .pf-hero {
      position: relative;
      background: var(--bg-primary);
      padding-top: 3.25rem; /* nav height */
      overflow: hidden;
      border-radius: 0 0 2.5rem 2.5rem;
    }

    /* Background layers */
    .pf-hero-grid {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
      background-size: 64px 64px;
    }
    .pf-hero-glow {
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 70% 60% at 20% 60%, rgba(16,67,133,.16) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(255,101,1,.08) 0%, transparent 55%);
    }
    .pf-hero-lines {
      position: absolute; inset: 0;
      display: flex;
      justify-content: space-between;
      padding: 0 4rem;
      pointer-events: none;
      z-index: 1;
    }
    .pf-hero-line {
      width: 1px;
      background: rgba(255,255,255,.035);
      height: 100%;
      transform: scaleY(0);
      transform-origin: top;
      animation: hero-line-in 1.5s cubic-bezier(.16,1,.3,1) both;
    }
    .pf-hero-line:nth-child(1) { animation-delay: .05s; }
    .pf-hero-line:nth-child(2) { animation-delay: .15s; }
    .pf-hero-line:nth-child(3) { animation-delay: .25s; }
    .pf-hero-line:nth-child(4) { animation-delay: .35s; }
    .pf-hero-line:nth-child(5) { animation-delay: .45s; }
    .pf-hero-line:nth-child(6) { animation-delay: .55s; }
    @keyframes hero-line-in {
      from { transform: scaleY(0); opacity: 0; }
      to   { transform: scaleY(1); opacity: 1; }
    }

    /* Hero inner layout */
    .pf-hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 4rem;
      max-width: 82.5rem;
      margin: 0 auto;
      padding: 6rem 3.5rem 5rem;
    }

    /* Left col */
    .pf-hero-left {}

    .pf-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-family: var(--font-mono);
      font-size: .56rem;
      font-weight: 700;
      letter-spacing: .2rem;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fade-up .8s cubic-bezier(.16,1,.3,1) .4s both;
    }
    .pf-hero-tag::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--color-orange);
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .45; transform: scale(.7); }
    }

    .pf-hero-title {
      font-family: var(--font-primary);
      font-size: clamp(4.5rem, 10vw, 9rem);
      font-weight: 900;
      line-height: .92;
      letter-spacing: -.05em;
      color: var(--color-white);
      text-transform: uppercase;
      opacity: 0;
      animation: fade-up .9s cubic-bezier(.16,1,.3,1) .55s both;
    }
    .pf-hero-title em {
      font-style: normal;
      background: var(--gradient-hero);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pf-hero-count {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 2.5rem;
      opacity: 0;
      animation: fade-up .8s cubic-bezier(.16,1,.3,1) .75s both;
    }
    .pf-hero-count-num {
      font-family: var(--font-mono);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-white);
      line-height: 1;
    }
    .pf-hero-count-label {
      font-family: var(--font-mono);
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .15rem;
      text-transform: uppercase;
      color: rgba(255,255,255,.3);
      line-height: 1.5;
    }

    /* Right col */
    .pf-hero-right {
      opacity: 0;
      animation: fade-left .9s cubic-bezier(.16,1,.3,1) .65s both;
    }

    .pf-hero-desc {
      font-family: var(--font-primary);
      font-size: 1.05rem;
      line-height: 1.72;
      color: rgba(255,255,255,.6);
      max-width: 26rem;
      margin-bottom: 2.5rem;
    }

    .pf-hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    .pf-stat {
      padding: 1.25rem;
      border: 1px solid var(--border-primary);
      border-radius: 1rem;
      background: rgba(255,255,255,.03);
      backdrop-filter: blur(10px);
    }
    .pf-stat-num {
      font-family: var(--font-mono);
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--color-white);
      line-height: 1;
      margin-bottom: .4rem;
      background: var(--gradient-hero);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .pf-stat-label {
      font-family: var(--font-mono);
      font-size: .52rem;
      font-weight: 700;
      letter-spacing: .12rem;
      text-transform: uppercase;
      color: rgba(255,255,255,.3);
    }

    /* Bottom bar */
    .pf-hero-bottom {
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255,255,255,.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      padding: 1.25rem 3.5rem;
      opacity: 0;
      animation: fade-up .8s cubic-bezier(.16,1,.3,1) .9s both;
    }
    .pf-hero-bottom-meta {
      font-family: var(--font-mono);
      font-size: .6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .15rem;
      color: rgba(255,255,255,.22);
    }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(2rem); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fade-left {
      from { opacity: 0; transform: translateX(2rem); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ══════════════════════════════════════════════════════════
       FILTER + GRID — Light Section
    ══════════════════════════════════════════════════════════ */
    .pf-section {
      position: relative;
      background: var(--ivory);
      overflow: hidden;
    }

    /* Subtle grain texture */
    .pf-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      pointer-events: none;
      z-index: 0;
    }

    .pf-glow {
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
      background:
        radial-gradient(ellipse 60% 40% at 10% 60%, rgba(255,101,1,.04) 0%, transparent 65%),
        radial-gradient(ellipse 50% 35% at 90% 20%, rgba(16,67,133,.04) 0%, transparent 60%);
    }

    .pf-container {
      position: relative;
      z-index: 1;
      max-width: 82.5rem;
      margin: 0 auto;
      padding: 5rem 3.5rem 7rem;
    }

    /* ── Filter Bar ─────────────────────────────────────── */
    .pf-filter-wrap {
      margin-bottom: 3.5rem;
    }

    .pf-filter-label {
      display: flex;
      align-items: center;
      gap: .75rem;
      font-family: var(--font-mono);
      font-size: .56rem;
      font-weight: 700;
      letter-spacing: .2rem;
      text-transform: uppercase;
      color: var(--color-orange);
      margin-bottom: 1.25rem;
    }
    .pf-filter-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--light-gray);
    }

    .pf-filter-pills {
      display: flex;
      align-items: center;
      gap: .5rem;
      flex-wrap: wrap;
    }

    .pf-filter-pill {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .55rem 1.1rem;
      border-radius: 999px;
      border: 1.5px solid var(--light-gray);
      background: transparent;
      color: var(--dark-gray);
      font-family: var(--font-primary);
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .02rem;
      cursor: pointer;
      transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        box-shadow .3s ease,
        transform .3s cubic-bezier(.16,1,.3,1);
      white-space: nowrap;
    }
    .pf-filter-pill:hover {
      border-color: var(--silver-gray);
      transform: translateY(-1px);
    }
    .pf-filter-pill.active {
      background: var(--gradient-hero);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 6px 24px rgba(255,101,1,.22);
    }
    .pf-filter-pill .pill-count {
      font-family: var(--font-mono);
      font-size: .5rem;
      font-weight: 700;
      letter-spacing: .08rem;
      opacity: .6;
    }
    .pf-filter-pill.active .pill-count { opacity: .8; }

    /* ── Counter strip ──────────────────────────────────── */
    .pf-count-strip {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .pf-count-num {
      font-family: var(--font-mono);
      font-size: .52rem;
      font-weight: 700;
      letter-spacing: .14rem;
      text-transform: uppercase;
      color: var(--silver-gray);
      white-space: nowrap;
    }
    .pf-count-line {
      flex: 1;
      height: 1px;
      background: var(--light-gray);
      position: relative;
      overflow: hidden;
    }
    .pf-count-line-fill {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 0%;
      background: var(--gradient-hero);
      transition: width 1.2s cubic-bezier(.16,1,.3,1);
    }

    /* ── Grid ──────────────────────────────────────────── */
    .pf-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 3.5rem;
    }

    /* ── Card ──────────────────────────────────────────── */
    .pf-card {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      background: var(--light-gray);
      aspect-ratio: 4 / 3;
      cursor: pointer;
      text-decoration: none;
      display: block;
      will-change: transform, filter, opacity;
      transition:
        box-shadow .55s cubic-bezier(.16,1,.3,1),
        border-color .55s ease;
      border: 1px solid rgba(0,0,0,.06);
    }
    .pf-card:hover {
      box-shadow:
        0 40px 80px rgba(0,0,0,.18),
        0 8px 24px rgba(0,0,0,.1);
      border-color: rgba(0,0,0,.1);
    }

    /* Hidden state — managed by JS + GSAP */
    .pf-card.is-hidden {
      display: none;
    }

    /* Video fill */
    .pf-card video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
      transition: transform .75s cubic-bezier(.16,1,.3,1);
    }
    .pf-card:hover video { transform: scale(1.065); }

    /* Overlay */
    .pf-card-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        165deg,
        rgba(8,8,8,.1) 0%,
        rgba(8,8,8,.18) 35%,
        rgba(8,8,8,.7) 75%,
        rgba(8,8,8,.93) 100%
      );
      transition: background .55s ease;
    }
    .pf-card:hover .pf-card-overlay {
      background: linear-gradient(
        165deg,
        rgba(8,8,8,.04) 0%,
        rgba(8,8,8,.1) 35%,
        rgba(8,8,8,.6) 75%,
        rgba(8,8,8,.88) 100%
      );
    }

    /* Gradient glow line at bottom */
    .pf-card-glow-line {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gradient-hero);
      z-index: 4;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .65s cubic-bezier(.16,1,.3,1);
    }
    .pf-card:hover .pf-card-glow-line { transform: scaleX(1); }

    /* Card content */
    .pf-card-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.75rem 2rem;
    }

    /* Category badge */
    .pf-card-category {
      align-self: flex-start;
      font-family: var(--font-mono);
      font-size: .48rem;
      font-weight: 700;
      letter-spacing: .16rem;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      padding: .35rem .9rem;
      border-radius: 999px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: background .35s ease, color .35s ease, border-color .35s ease;
    }
    .pf-card:hover .pf-card-category {
      background: rgba(255,101,1,.2);
      color: #ff8533;
      border-color: rgba(255,101,1,.35);
    }

    /* Card bottom row */
    .pf-card-bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
    }
    .pf-card-title {
      font-family: var(--font-primary);
      font-size: clamp(1rem, 1.8vw, 1.45rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.025em;
      color: var(--color-white);
      text-transform: uppercase;
    }
    .pf-card-year {
      font-family: var(--font-mono);
      font-size: .55rem;
      font-weight: 700;
      color: rgba(255,255,255,.32);
      letter-spacing: .1rem;
      white-space: nowrap;
      flex-shrink: 0;
      padding-bottom: .15rem;
    }

    /* Arrow icon */
    .pf-card-arrow {
      position: absolute;
      top: 1.75rem; right: 2rem;
      width: 2.25rem; height: 2.25rem;
      border: 1.5px solid rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      color: rgba(255,255,255,.4);
      z-index: 3;
      transition:
        background .4s cubic-bezier(.16,1,.3,1),
        border-color .4s ease,
        color .4s ease,
        transform .45s cubic-bezier(.16,1,.3,1);
    }
    .pf-card:hover .pf-card-arrow {
      background: var(--gradient-hero);
      border-color: transparent;
      color: #fff;
      transform: rotate(45deg);
    }

    /* Index number */
    .pf-card-index {
      position: absolute;
      top: 1.75rem; left: 2rem;
      font-family: var(--font-mono);
      font-size: .42rem;
      font-weight: 700;
      letter-spacing: .1rem;
      color: rgba(255,255,255,.18);
      z-index: 3;
    }

    /* ── Empty state ──────────────────────────────────── */
    .pf-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 5rem 2rem;
      display: none;
    }
    .pf-empty.visible { display: block; }
    .pf-empty-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      opacity: .3;
    }
    .pf-empty-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--dark-gray);
      margin-bottom: .5rem;
    }
    .pf-empty-desc {
      font-size: .9rem;
      color: var(--silver-gray);
    }

    /* ── Load more ──────────────────────────────────── */
    .pf-load-more-wrap {
      display: flex;
      justify-content: center;
      padding-top: 1rem;
    }
    .pf-load-more {
      display: none; /* shown by JS when needed */
      align-items: center;
      gap: .875rem;
      padding: 1.1rem 2.75rem;
      border: 1.5px solid var(--silver-gray);
      border-radius: 999px;
      color: var(--dark-gray);
      font-family: var(--font-primary);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .07rem;
      text-transform: uppercase;
      cursor: pointer;
      background: transparent;
      position: relative;
      overflow: hidden;
      transition:
        border-color .45s ease,
        color .45s ease,
        box-shadow .45s ease,
        transform .45s cubic-bezier(.16,1,.3,1);
    }
    .pf-load-more.visible { display: inline-flex; }
    .pf-load-more::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-hero);
      opacity: 0;
      transition: opacity .45s ease;
    }
    .pf-load-more span { position: relative; z-index: 1; }
    .pf-load-more:hover {
      border-color: transparent;
      color: #fff;
      box-shadow: 0 18px 52px rgba(255,101,1,.25);
      transform: translateY(-2px);
    }
    .pf-load-more:hover::before { opacity: 1; }

    /* ── Back to home CTA ──────────────────────────── */
    .pf-back-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--light-gray);
      margin-top: 2rem;
    }
    .pf-back-link {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-family: var(--font-primary);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .06rem;
      text-transform: uppercase;
      color: var(--dark-gray);
      text-decoration: none;
      transition: color .25s ease;
    }
    .pf-back-link:hover { color: var(--color-orange); }
    .pf-back-arrow {
      display: inline-block;
      transition: transform .35s cubic-bezier(.16,1,.3,1);
    }
    .pf-back-link:hover .pf-back-arrow { transform: translateX(-4px); }

    /* ══════════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .pf-hero-inner { gap: 2.5rem; padding: 5rem 2.5rem 4rem; }
      .pf-container  { padding: 4rem 2.5rem 6rem; }
    }

    @media (max-width: 900px) {
      .pf-hero { border-radius: 0 0 1.75rem 1.75rem; }
      .pf-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 2rem 3.5rem;
      }
      .pf-hero-stats { grid-template-columns: 1fr 1fr 1fr 1fr; }
      .ds2-nav-links { display: none; }
      .ds2-nav-burger { display: flex; }
      .pf-container  { padding: 3.5rem 2rem 5rem; }
      .pf-grid { gap: 1rem; }
      .pf-card-content { padding: 1.25rem 1.5rem; }
      .pf-card-arrow   { top: 1.25rem; right: 1.5rem; }
      .pf-card-index   { top: 1.25rem; left: 1.5rem; }
    }

    @media (max-width: 600px) {
      .pf-hero { border-radius: 0 0 1.25rem 1.25rem; }
      .pf-hero-inner { padding: 3rem 1rem 2.5rem; }
      .pf-hero-title { font-size: clamp(3.5rem, 16vw, 5rem); }
      .pf-hero-stats { grid-template-columns: 1fr 1fr; }
      .pf-container  { padding: 3rem 1rem 4rem; }
      .pf-grid {
        grid-template-columns: 1fr;
        gap: .875rem;
      }
      .pf-card { aspect-ratio: 16 / 10; }
      .pf-filter-pills { gap: .4rem; }
      .pf-filter-pill  { font-size: .65rem; padding: .45rem .9rem; }
      .ds2-nav-cta { display: none; }
    }

    /* Mobile nav overlay */
    .ds2-nav-mobile {
      position: fixed;
      top: 3.25rem; left: 0; right: 0; bottom: 0;
      background: rgba(8,8,8,.97);
      backdrop-filter: blur(24px);
      z-index: 9998;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }
    .ds2-nav-mobile.open {
      opacity: 1;
      pointer-events: auto;
    }
    .ds2-nav-mobile a {
      font-family: var(--font-primary);
      font-size: 1.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -.03em;
      color: rgba(255,255,255,.5);
      text-decoration: none;
      padding: .5rem 1rem;
      transition: color .25s ease;
    }
    .ds2-nav-mobile a:hover,
    .ds2-nav-mobile a.active { color: var(--color-white); }
    .ds2-nav-mobile-cta {
      margin-top: 1rem;
      padding: .875rem 2.5rem !important;
      border-radius: 999px !important;
      background: var(--gradient-hero) !important;
      color: #fff !important;
      font-size: .85rem !important;
      font-weight: 700 !important;
      letter-spacing: .06rem !important;
    }