    /* Scoped reset — wall page only, never touches the shared header/footer. */
    .wol-page,
    .wol-page *,
    .wol-page *::before,
    .wol-page *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Design tokens — scoped to the wrapper (not :root) to avoid collisions. */
    .wol-page {
      --navy: #0a2334;
      --navy-light: #162D40;
      --navy-mid: #0d3049;
      --cyan: #00d0ff;
      --green: #38ff70;
      --green-dark: #19b545;
      --amber: #ffc857;
      --blue: #258cfb;
      --bg: #f5f7fa;
      --surface: #fff;
      --surface-alt: #f0f3f7;
      --text-primary: #1a1a2e;
      --text-secondary: #4e4e4e;
      --text-muted: #8892a4;
      --text-faint: #b8bfc9;
      --border: #e2e8f0;
      --border-hover: #c8d4e0;
      --linkedin: #0A66C2;
      --reddit: #FF4500;
      --discord: #5865F2;
      --spiceworks: #E1251B;
      --radius: 12px;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Weight is baked into the family name (work-sans-*, poppins-*) — set the
       weighted family, not font-weight, to avoid faux-bold synthesis. */
    .wol-page {
      font-family: work-sans-regular, Arial, Helvetica, sans-serif;
      color: var(--text-primary);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    /* Re-assert Poppins headings — overrides general.css's font-family:inherit!important. */
    .wol-page h1, .wol-page h2, .wol-page h3,
    .wol-page h4, .wol-page h5, .wol-page h6 {
      font-family: poppins-semibold, Arial, Helvetica, sans-serif !important;
    }

    /* ===== INTRO — dark hero that bleeds into the white card panel ===== */
    .wol-intro {
      position: relative;
      background:
        radial-gradient(ellipse 70% 64% at 50% -6%, rgba(0, 208, 255, .14), transparent 62%),
        linear-gradient(180deg, #0c2d4a 0%, #0a2740 100%);
      box-shadow: inset 0 30px 46px -26px rgba(0, 0, 0, .55)
    }

    /* Decorative brand hero graphic, faded into the lower band (behind content). */
    .wol-intro::after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: var(--wol-hero-bg) center 35% / cover no-repeat;
      opacity: .08;
      -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 30%);
      mask-image: linear-gradient(180deg, transparent 0, #000 30%);
    }

    .wol-intro-inner {
      position: relative;
      z-index: 2;
      max-width: 1020px;
      margin: 0 auto;
      padding: 5.5rem 24px 8rem;
      text-align: center;
      animation: fadeDown .7s var(--ease) .05s both
    }

    .wol-eyebrow {
      margin: 0 0 14px;
      font-family: work-sans-regular, Arial, Helvetica, sans-serif;
      font-weight: normal;
      font-size: .80rem;
      color: #4dd6f5
    }

    .wol-headline {
      font-size: clamp(1.85rem, 3.1vw, 2.45rem);
      color: #fff;
      line-height: 1.14;
      letter-spacing: -.025em;
      margin: 0;
      text-wrap: balance
    }

    .wol-headline .grad {
      background: linear-gradient(100deg, #45f08a, #28d4ff 92%);
      background-size: 220% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 38px rgba(0, 208, 255, .16);
      animation: heroSheen 9s ease-in-out infinite
    }

    @keyframes heroSheen {
      0%, 100% { background-position: 0% center }
      50%      { background-position: 100% center }
    }

    .wol-lead {
      font-size: clamp(1rem, 1.15vw, 1.08rem);
      line-height: 1.6;
      color: rgba(255, 255, 255, .8);
      max-width: 1020px;
      margin: clamp(18px, 2.2vw, 26px) auto 0
    }

    .wol-lead .wol-reply {
      color: #4dd6f5;
      font-family: work-sans-semibold, Arial, Helvetica, sans-serif;
      font-weight: normal;
      white-space: nowrap
    }

    .wol-cred {
      font-size: .88rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, .55);
      max-width: 720px;
      margin: 14px auto 0
    }

    .wol-cred strong {
      color: rgba(255, 255, 255, .9);
      font-family: work-sans-semibold, Arial, Helvetica, sans-serif;
      font-weight: normal
    }

    .wol-cred a {
      color: rgba(255, 255, 255, .9);
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-color: rgba(255, 255, 255, .3);
      transition: color .2s ease, text-decoration-color .2s ease
    }

    .wol-cred a:hover {
      color: #5aea7a;
      text-decoration-color: rgba(90, 234, 122, .5)
    }

    @media (prefers-reduced-motion: reduce) {
      .wol-headline .grad { animation: none }
    }

    /* ===== MASONRY — white card panel floating on the dark field ===== */
    .masonry-section {
      position: relative;
      z-index: 2;
      width: min(1360px, calc(100% - 48px));
      margin: clamp(-72px, -3.8vw, -64px) auto 0;   /* pulled up to overlap the hero */
      background: var(--surface);
      border-radius: 16px;
      box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .5);
      padding: 2rem;
      overflow: hidden;
    }

    /* Accessible label, visually hidden (kept in the outline for AT/SEO). */
    .wol-visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0
    }

    /* ===== CONTRIBUTION BAND — the "add your voice" ask ===== */
    .wol-contribute {
      padding: clamp(46px, 5.5vw, 74px) 24px clamp(46px, 5vw, 68px)
    }

    .wol-contribute-inner {
      width: min(1360px, calc(100% - 48px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(28px, 5vw, 76px);
      padding-inline: 2rem;
    }

    .wol-contribute-copy {
      max-width: 640px;
      text-align: left
    }

    .wol-contribute-eyebrow {
      font-family: work-sans-regular, Arial, Helvetica, sans-serif;
      font-size: 1.02rem;
      color: var(--text-secondary);
      margin: 0 0 8px
    }

    .wol-contribute-title {
      font-size: clamp(1.5rem, 2.6vw, 1.85rem);
      line-height: 1.28;
      color: var(--text-primary);
      margin: 0;
    }

    .wol-contribute-title .grad {
      background: linear-gradient(146deg, #bd0c8f, #0954dd 94%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: 'poppins-medium';
      letter-spacing: -.65px;
    }

    .wol-contribute-sub {
      font-size: 1rem;
      line-height: 1.55;
      color: var(--text-secondary);
      max-width: 580px;
      margin: 16px 0 0
    }

    .wol-share {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .wol-share-callout {
      font-family: work-sans-regular, Arial, Helvetica, sans-serif;
      font-size: .92rem;
      color: var(--text-secondary);
      margin: 0 0 12px
    }

    .wol-share-links {
      list-style: none;
      display: flex;
      gap: 12px;
      margin: 0
    }

    .wol-share-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 30px;
      color: #fff;
      text-decoration: none;
      font-family: poppins-bold, Arial, Helvetica, sans-serif;
      font-size: .82rem;
      letter-spacing: -.02em;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease)
    }

    .wol-share-badge i { font-size: 22px; line-height: 1 }

    .wol-share-badge[data-platform="reddit"]   { background: var(--reddit) }
    .wol-share-badge[data-platform="g2"]        { background: #ff492c }
    .wol-share-badge[data-platform="linkedin"]  { background: var(--linkedin) }
    .wol-share-badge[data-platform="discord"]   { background: var(--discord) }

    /* Spiceworks — white logo chip (no monochrome glyph). */
    .wol-share-badge[data-platform="spiceworks"] { background: #fff; border: 1px solid var(--border) }
    .wol-share-badge[data-platform="spiceworks"] img { width: 24px; height: 24px; object-fit: contain }

    .wol-share-badge:hover {
      color: #fff; /* hold white; global a:hover{color:inherit} would otherwise darken the glyphs */
      transform: translateY(-3px);
      box-shadow: 0 12px 22px -10px rgba(16, 32, 55, .5)
    }

    .wol-share-badge:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 3px
    }

    @media (max-width: 860px) {
      .wol-contribute-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .wol-share-badge { transition: none }
    }

    /* JS masonry (wall-of-love.js) — items pinned to columns so lazy image loads
       never rebalance cards across columns mid-scroll. */
    .masonry-grid {
      display: flex;
      align-items: flex-start;
      gap: 24px
    }

    .masonry-col {
      flex: 1 1 0;
      display: flex;
      flex-direction: column;
      gap: 24px;
      min-width: 0
    }

    .masonry-item {
      animation: fadeIn .5s var(--ease) both
    }

    /* ===== CARD ===== */
    .social-card {
      /* Card is a <button> — reset UA chrome so it renders as a plain block. */
      appearance: none;
      -webkit-appearance: none;
      width: 100%;
      margin: 0;
      padding: 0;
      font: inherit;
      text-align: inherit;
      display: block;
      text-decoration: none;
      color: inherit;
      background: var(--surface);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
      position: relative;
      cursor: zoom-in
    }

    .social-card:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 2px
    }

    .social-card::before { display: none }

    .social-card:hover {
      transform: translateY(-3px);
      box-shadow:
        0 14px 36px rgba(10, 35, 52, .09),
        0 4px 12px rgba(10, 35, 52, .05),
        0 0 0 1px var(--card-ring, rgba(10, 35, 52, .08));
      border-color: transparent
    }

    /* Hover ring keyed to the source platform (not the topic). */
    .social-card[data-platform="reddit"]     { --card-ring: rgba(255, 69, 0, .45) }
    .social-card[data-platform="linkedin"]   { --card-ring: rgba(10, 102, 194, .45) }
    .social-card[data-platform="g2"]         { --card-ring: rgba(255, 73, 44, .45) }
    .social-card[data-platform="discord"]    { --card-ring: rgba(88, 101, 242, .45) }
    .social-card[data-platform="spiceworks"] { --card-ring: rgba(225, 37, 27, .45) }


    /* ===== TOPIC PALETTE — chip + quote-card gradient + lightbox accent per topic ===== */
    [data-topic="security"]    { --topic-bg: rgba(231, 76, 60, .1);  --topic-fg: #c0392b; --topic-light: #ff8071; --topic-ring: rgba(231, 76, 60, .32);  --topic-grad-from: #ffe9e4; --topic-grad-to: #ffc9be }
    [data-topic="storage"]     { --topic-bg: rgba(132, 36, 195, .1); --topic-fg: #8424c3; --topic-light: #c98efa; --topic-ring: rgba(132, 36, 195, .32); --topic-grad-from: #f3e7ff; --topic-grad-to: #e0c5f5 }
    [data-topic="identity"]    { --topic-bg: rgba(37, 140, 251, .1); --topic-fg: var(--blue); --topic-light: #6cb1ff; --topic-ring: rgba(37, 140, 251, .32); --topic-grad-from: #e5f0ff; --topic-grad-to: #c8def8 }
    [data-topic="automation"]  { --topic-bg: rgba(25, 181, 69, .1);  --topic-fg: var(--green-dark); --topic-light: #4dd66f; --topic-ring: rgba(25, 181, 69, .32);  --topic-grad-from: #e6f8eb; --topic-grad-to: #c2eccd }
    [data-topic="reporting"]   { --topic-bg: rgba(0, 168, 197, .1);  --topic-fg: #0096b8; --topic-light: #3dcbe0; --topic-ring: rgba(0, 168, 197, .32);  --topic-grad-from: #e3f6fa; --topic-grad-to: #bee5ef }
    [data-topic="compliance"]  { --topic-bg: rgba(255, 152, 0, .12); --topic-fg: #e67e00; --topic-light: #ffa547; --topic-ring: rgba(255, 152, 0, .35); --topic-grad-from: #fff1de; --topic-grad-to: #ffd9a7 }
    [data-topic="industry"]    { --topic-bg: rgba(193, 142, 0, .12); --topic-fg: #a17600; --topic-light: #e3c34d; --topic-ring: rgba(193, 142, 0, .35); --topic-grad-from: #fbf1cf; --topic-grad-to: #f0dc97 }
    [data-topic="community"]   { --topic-bg: rgba(212, 38, 134, .1); --topic-fg: #b21f6f; --topic-light: #f06bb0; --topic-ring: rgba(212, 38, 134, .32); --topic-grad-from: #ffe6f1; --topic-grad-to: #ffc4dc }

    /* Topic chip — quote cards only (hidden on screenshot cards). */
    .card-topic-overlay {
      display: none;
      align-items: center;
      gap: 6px;
      font-family: ui-monospace, Consolas, 'Courier New', monospace;
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 100px;
      color: var(--topic-fg, var(--text-secondary));
      line-height: 1
    }

    .quote-card .card-topic-overlay {
      display: inline-flex
    }

    .card-topic-overlay::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--topic-fg, var(--text-secondary))
    }

    /* ===== QUOTE CARD VARIANT — soft pastel topic gradient ===== */
    .quote-card .card-screenshot {
      cursor: zoom-in;
      background: linear-gradient(135deg, var(--topic-grad-from, #f0f3f7) 0%, var(--topic-grad-to, #d8dfe7) 100%);
      padding: 36px 28px 30px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      line-height: normal;
      min-height: 280px
    }

    .quote-card.social-card::before {
      display: none
    }

    .quote-card .card-topic-overlay {
      position: static;
      align-self: flex-start;
      background: rgba(255, 255, 255, .55);
      border: 1px solid rgba(10, 35, 52, .06);
      box-shadow: none
    }

    .quote-card-mark {
      font-family: poppins-bold, Arial, Helvetica, sans-serif;
      font-size: 3.6rem;
      line-height: .6;
      color: var(--topic-fg, var(--text-secondary));
      opacity: .32;
      margin-bottom: -14px;
      user-select: none
    }

    .quote-card-text {
      font-family: poppins-semibold, Arial, Helvetica, sans-serif;
      font-size: 1.22rem;
      line-height: 1.34;
      color: var(--text-primary);
      letter-spacing: -.015em;
      margin: 0;
      flex: 1
    }

    .quote-card-attribution {
      font-size: .8rem;
      color: var(--text-secondary);
      margin-top: 4px;
      letter-spacing: .005em
    }

    .quote-card-attribution strong {
      color: var(--text-primary);
      font-family: work-sans-semibold, Arial, Helvetica, sans-serif;
      font-weight: normal
    }

    .card-screenshot {
      position: relative;
      display: block;
      overflow: hidden;
      background: var(--surface-alt);
      line-height: 0;
      cursor: zoom-in
    }

    .card-screenshot img {
      width: 100%;
      height: auto;
      display: block
    }

    /* ===== SOURCE PLATFORM BADGE — slim footer strip ===== */
    .card-source-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      background: var(--surface);
      border-top: 1px solid var(--border)
    }

    .card-source {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: work-sans-semibold, Arial, Helvetica, sans-serif;
      font-size: .72rem;
      letter-spacing: .01em;
      color: var(--text-secondary)
    }

    .card-source i {
      font-size: 14px;
      line-height: 1;
      flex-shrink: 0
    }

    .card-source[data-platform="reddit"] i { color: var(--reddit) }
    .card-source[data-platform="linkedin"] i { color: var(--linkedin) }
    .card-source[data-platform="discord"] i { color: var(--discord) }

    /* G2 wordmark chip (no single-glyph icon). */
    .card-source-g2 {
      font-family: poppins-bold, Arial, Helvetica, sans-serif;
      font-size: .72rem;
      line-height: 1;
      letter-spacing: -.02em;
      color: #fff;
      background: #ff492c;
      border-radius: 5px;
      padding: 3px 5px
    }

    /* Spiceworks — full-color logo (no monochrome glyph). */
    .card-source-logo {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      object-fit: contain
    }

    /* ===== LIGHTBOX ===== */
    .lightbox {
      position: fixed;
      inset: 0;
      /* Below the site header (#header z:1000) so the nav stays visible. Deliberately
         outside the project z-index scale — the legacy header lives at 1000. */
      z-index: 990;
      background: rgba(6, 16, 26, .82);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 96px 24px 48px;
      opacity: 0;
      pointer-events: none;
      /* visibility 0 until the fade-out ends — drops the buttons from the tab order while hidden. */
      visibility: hidden;
      transition: opacity .3s var(--ease), visibility 0s .3s
    }

    .lightbox.open {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
      transition: opacity .3s var(--ease)
    }

    .lightbox-stage {
      position: relative;
      max-width: min(1100px, 100%);
      max-height: 100%;
      display: flex;
      align-items: stretch;
      gap: 24px;
      transform: scale(.96);
      transition: transform .35s var(--ease)
    }

    .lightbox.open .lightbox-stage {
      transform: scale(1)
    }

    /* Thin modal scrollbars. */
    .lightbox-stage,
    .lightbox-aside {
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, .22) transparent
    }

    .lightbox-stage::-webkit-scrollbar,
    .lightbox-aside::-webkit-scrollbar {
      width: 8px
    }

    .lightbox-stage::-webkit-scrollbar-track,
    .lightbox-aside::-webkit-scrollbar-track {
      background: transparent
    }

    .lightbox-stage::-webkit-scrollbar-thumb,
    .lightbox-aside::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, .18);
      border-radius: 8px
    }

    .lightbox-stage::-webkit-scrollbar-thumb:hover,
    .lightbox-aside::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, .3)
    }

    /* Left column: screenshot figure + source bar. */
    .lightbox-media {
      align-self: center;
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 0;
      max-width: 100%
    }

    /* Figure clips the zoomed image so it can't spill over the side panel. */
    .lightbox-figure {
      position: relative;
      max-width: 100%;
      min-width: 0;
      max-height: calc(100vh - 250px);
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
      background: var(--surface);
      line-height: 0;
      cursor: zoom-in
    }

    .lightbox-source {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 8px;
      width: fit-content;
      text-decoration: none;
    }

    .lightbox-source.hidden { display: none }

    .lightbox-source-where {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: work-sans-semibold, Arial, Helvetica, sans-serif;
      font-size: .75rem;
      color: #fff;
      line-height: 1
    }

    /* Platform mark cloned from the card's .card-source (icon font / G2 chip / logo). */
    .lightbox-source-where i { font-size: 16px; line-height: 1; flex-shrink: 0 }
    .lightbox-source-where[data-platform="reddit"] i { color: #ff4500 }
    .lightbox-source-where[data-platform="linkedin"] i { color: #4aa3ff }
    .lightbox-source-where[data-platform="discord"] i { color: #7984f5 }

    .lightbox-source-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: work-sans-medium, Arial, Helvetica, sans-serif;
      font-size: .75rem;
      color: var(--cyan);
      white-space: nowrap
    }

    .lightbox-source-cta i {
      font-size: 13px;
      transition: transform .2s var(--ease)
    }

    .lightbox-source:hover .lightbox-source-cta { color: #fff }
    .lightbox-source:hover .lightbox-source-cta i { transform: translate(2px, -2px) }

    .lightbox-img {
      max-width: 100%;
      min-width: 0;
      max-height: calc(100vh - 250px);
      display: block;
      transform-origin: center center;
      transition: transform .3s var(--ease);
      will-change: transform
    }

    /* Click toggles pixel-zoom, pointer move pans. --zoom is set per-image in JS. */
    .lightbox-figure.zoomed { cursor: zoom-out }
    .lightbox-figure.zoomed .lightbox-img { transform: scale(var(--zoom, 2.4)) }

    @media (prefers-reduced-motion: reduce) {
      .lightbox-img { transition: none }
    }

    .lightbox-aside {
      width: 360px;
      flex-shrink: 0;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 16px;
      padding: 32px 28px;
      color: rgba(255, 255, 255, .9);
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-height: calc(100vh - 190px);
      height: fit-content;
      overflow-y: auto;
      position: relative
    }

    .lightbox-aside.empty {
      display: none
    }

    .lightbox-quote-section {
      position: relative;
      padding-top: 22px
    }

    .lightbox-quote-section::before {
      content: '\201C';
      position: absolute;
      top: -8px;
      left: -4px;
      font-family: poppins-bold, Arial, Helvetica, sans-serif;
      font-size: 4rem;
      color: var(--cyan);
      opacity: .35;
      line-height: 1;
      user-select: none
    }

    .lightbox-quote {
      font-family: poppins-medium, Arial, Helvetica, sans-serif;
      font-size: 1.08rem;
      line-height: 1.5;
      color: #fff;
      margin: 0;
      letter-spacing: -.005em;
      padding-left: 0
    }

    .lightbox-attribution {
      display: block;
      margin-top: 14px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .55);
      padding-left: 14px;
      border-left: 2px solid rgba(0, 208, 255, .4)
    }

    /* "Our take" section — distinct from the quote. */
    .lightbox-our-take {
      margin-top: 6px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .08)
    }

    .lightbox-our-take-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: work-sans-semibold, Arial, Helvetica, sans-serif;
      font-size: .78rem;
      letter-spacing: .01em;
      color: var(--green);
      margin-bottom: 10px
    }

    .lightbox-our-take-label::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 1px;
      background: var(--green)
    }

    .lightbox-commentary {
      font-size: .88rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, .78);
      margin: 0
    }

    /* Rich text — authored HTML, sanitized server-side, cloned from the card template. */
    .lightbox-commentary strong { color: #fff; font-family: work-sans-semibold, Arial, Helvetica, sans-serif; font-weight: normal }

    .lightbox-commentary a {
      color: var(--cyan);
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 208, 255, .35);
      transition: color .2s var(--ease), border-color .2s var(--ease)
    }

    .lightbox-commentary a:hover { color: #fff; border-color: rgba(255, 255, 255, .5) }

    /* Highlight classes — allowlisted in the server sanitizer; keep the two in sync. */
    .lightbox-commentary .hl { color: var(--green); font-family: work-sans-semibold, Arial, Helvetica, sans-serif; font-weight: normal }

    .lightbox-commentary .hl-cyan { color: var(--cyan); font-family: work-sans-semibold, Arial, Helvetica, sans-serif; font-weight: normal }

    .lightbox-commentary .hl-amber { color: var(--amber); font-family: work-sans-semibold, Arial, Helvetica, sans-serif; font-weight: normal }

    .lightbox-commentary p { margin: 0 0 10px }

    .lightbox-commentary p:last-child { margin-bottom: 0 }

    .lightbox-commentary ul,
    .lightbox-commentary ol {
      margin: 10px 0 0;
      padding-left: 20px
    }

    .lightbox-commentary li { margin: 4px 0 }

    .lightbox-commentary code {
      font-size: .82em;
      padding: 1px 6px;
      border-radius: 5px;
      background: rgba(255, 255, 255, .08)
    }

    .lightbox-cta-wrap {
      margin-top: 6px;
      padding-top: 18px;
      border-top: 1px dashed rgba(255, 255, 255, .1)
    }

    .lightbox-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0;
      background: none;
      color: var(--cyan);
      font-family: work-sans-medium, Arial, Helvetica, sans-serif;
      font-size: .85rem;
      text-decoration: none;
      transition: color .2s var(--ease), gap .2s var(--ease)
    }

    .lightbox-cta:hover {
      color: #fff;
      gap: 10px
    }

    .lightbox-cta i {
      font-size: 13px;
      flex-shrink: 0
    }

    .lightbox-cta-wrap.hidden {
      display: none
    }

    @media(max-width: 1024px) {
      .lightbox-stage {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        max-width: 680px;
        overflow-y: auto;
        max-height: calc(100vh - 150px)
      }

      .lightbox-aside {
        width: 100%;
        max-width: 640px;
        max-height: none
      }

      .lightbox-figure {
        max-height: 60vh
      }

      .lightbox-img {
        max-height: 60vh
      }
    }

    .lightbox-close {
      position: fixed;
      z-index: 4;
      top: 96px;   /* clear of the site header */
      right: 24px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .15);
      background: rgba(255, 255, 255, .08);
      color: #fff;
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s var(--ease), transform .2s var(--ease);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px)
    }

    .lightbox-close:hover {
      background: rgba(255, 255, 255, .16);
      transform: scale(1.05)
    }

    /* Prev / next — chevron only; the padding is the tap target. */
    .lightbox-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      border: none;
      background: none;
      padding: 12px;
      color: rgba(255, 255, 255, .6);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-appearance: none;
      appearance: none;
      transition: color .2s var(--ease), transform .2s var(--ease)
    }

    .lightbox-nav i {
      font-size: 42px;
      filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .55))
    }

    .lightbox-nav-prev { left: 18px }
    .lightbox-nav-next { right: 18px }

    .lightbox-nav:hover { color: #fff }

    .lightbox-nav-prev:hover { transform: translateY(-50%) translateX(-3px) }
    .lightbox-nav-next:hover { transform: translateY(-50%) translateX(3px) }

    .lightbox-nav:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 4px;
      border-radius: 8px
    }

    .lightbox-nav.hidden { display: none }

    @media (prefers-reduced-motion: reduce) {
      .lightbox-nav-prev:hover,
      .lightbox-nav-next:hover { transform: translateY(-50%) }
    }

    .lightbox-hint {
      position: fixed;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      font-family: ui-monospace, Consolas, 'Courier New', monospace;
      font-size: .68rem;
      color: rgba(255, 255, 255, .5);
      letter-spacing: .06em;
      text-transform: uppercase;
      pointer-events: none
    }

    @media(max-width: 600px) {
      .lightbox { padding: 80px 16px 28px }
      .lightbox-close { top: 80px; right: 16px; width: 38px; height: 38px; font-size: 22px }
      .lightbox-nav { display: none }
      .lightbox-hint { display: none }

      /* Screenshot is readable on mobile — hide the repeated quote, keep attribution + Our take. */
      .lightbox-quote { display: none }
      .lightbox-quote-section { padding-top: 0 }
      .lightbox-quote-section::before { display: none }
      .lightbox-attribution { margin-top: 0 }
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(12px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:1024px) {
      .masonry-grid {
        gap: 20px
      }

      .masonry-col {
        gap: 20px
      }
    }

    @media(max-width:600px) {
      .masonry-section {
        padding: 24px 16px 60px
      }
    }

    /* ===== BOTTOM BANNER — dark closing statement, bookends the intro ===== */
    .bottom-banner-section {
      position: relative;
      background:
        radial-gradient(ellipse 720px 440px at 50% -8%, rgba(0, 208, 255, .16), transparent 70%),
        radial-gradient(125% 145% at 50% -25%, #0e3450 0%, var(--navy) 55%, #061a28 100%);
      padding: 72px 24px;
      overflow: hidden;
      color: #fff
    }

    /* Faint grid texture, masked to a soft center. */
    .bottom-banner-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 208, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 208, 255, .04) 1px, transparent 1px);
      background-size: 58px 58px;
      -webkit-mask-image: radial-gradient(ellipse 78% 82% at 50% 42%, #000 8%, transparent 72%);
      mask-image: radial-gradient(ellipse 78% 82% at 50% 42%, #000 8%, transparent 72%);
      pointer-events: none;
      z-index: 1
    }

    /* Entry seam — cyan→green hairline at the handoff from the light grid. */
    .bottom-banner-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(680px, 82%);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 208, 255, .55), rgba(56, 255, 112, .42), transparent);
      pointer-events: none;
      z-index: 2
    }

    .cta-glow-2 {
      position: absolute;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(56, 255, 112, .08), transparent 65%);
      border-radius: 50%;
      filter: blur(90px);
      bottom: -160px;
      left: 2%;
      pointer-events: none;
      z-index: 1
    }

    .cta-banner-inner {
      position: relative;
      z-index: 3;
      max-width: 790px;
      margin: 0 auto;
      text-align: center
    }

    .cta-banner-inner h2 {
      font-size: clamp(1.7rem, 3.4vw, 2.4rem);
      line-height: 1.3;
      color: #fff;
      margin: 0 0 16px;
      letter-spacing: -.02em;
      font-family: poppins-regular, sans-serif !important;
    }

    .cta-grad {
      background: linear-gradient(120deg, var(--cyan), var(--green));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: comforta-regular, poppins-regular;
    }

    .cta-banner-sub {
      font-size: 1.02rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.6;
      margin: 0 auto;
      max-width: 620px
    }

    .cta-actions {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 32px
    }

    .cta-reassure {
      margin-top: 18px;
      font-size: .82rem;
      color: rgba(255, 255, 255, .42);
      letter-spacing: .01em
    }

    /* Primary CTA — the site's signature download button (.btn-dwn pink→purple). */
    .cta-primary-btn {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      background: linear-gradient(160deg, #f50285, #8424c3);
      color: #fff;
      font-family: poppins-semibold, Arial, Helvetica, sans-serif;
      font-size: .86rem;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      box-shadow: 0 6px 22px rgba(245, 2, 133, .32);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease)
    }

    .cta-primary-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -120%;
      width: 55%;
      height: 100%;
      background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .3), transparent);
      transform: skewX(-18deg);
      transition: left .6s var(--ease);
      pointer-events: none
    }

    .cta-primary-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(245, 2, 133, .45)
    }

    .cta-primary-btn:hover::after {
      left: 135%
    }

    .cta-primary-btn i {
      position: relative;
      font-size: 15px
    }

    .cta-secondary-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 20px;
      background: rgba(255, 255, 255, .04);
      color: rgba(255, 255, 255, .8);
      border: 1px solid rgba(255, 255, 255, .16);
      font-family: poppins-medium, Arial, Helvetica, sans-serif;
      font-size: .85rem;
      border-radius: 6px;
      text-decoration: none;
      transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease)
    }

    .cta-secondary-btn i {
      font-size: 14px;
      transition: transform .2s var(--ease)
    }

    .cta-secondary-btn:hover {
      background: rgba(255, 255, 255, .09);
      border-color: rgba(255, 255, 255, .3);
      color: #fff
    }

    .cta-secondary-btn:hover i {
      transform: translateX(3px)
    }

    @media(max-width: 600px) {
      .bottom-banner-section { padding: 66px 18px 60px }
      .cta-actions { width: 100%; flex-direction: column; align-items: stretch }
      .cta-primary-btn, .cta-secondary-btn { justify-content: center }
    }

    @media (prefers-reduced-motion: reduce) {
      .cta-primary-btn::after,
      .cta-secondary-btn i { transition: none }
    }
