    /* ============================================
       CSS VARIABLES & RESET (Synced with brands.html)
       ============================================ */
    :root {
      --yellow: #f4c025;
      --orange: #d15610;
      --bg-dark: #1a1a1b;
      --bg-darker: #0d0d0d;
      --neon-green: #39ff14;
      --neon-red: #ff073a;
      --neon-blue: #00d4ff;
      --neon-purple: #b026ff;
      --text-main: #e0e0e0;
      --border: 3px solid #000;
      --shadow: 6px 6px 0px #000;
      
      --tag-retail: #3b82f6;
      --tag-online: #10b981;
      --tag-chain: #f59e0b;
      --tag-manufacturer: #8b5cf6;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg-darker);
      color: var(--text-main);
      font-family: 'Share Tech Mono', monospace;
      min-height: 100vh;
      overflow-x: hidden;
      background-image:
        radial-gradient(circle at 50% 50%, transparent 60%, rgba(0,0,0,0.8) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.15) 2px, rgba(0,0,0,0.15) 4px);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background: repeating-linear-gradient(0deg,
          rgba(0,0,0,0) 0px,
          rgba(0,0,0,0) 2px,
          rgba(0,0,0,0.15) 2px,
          rgba(0,0,0,0.15) 4px);
      pointer-events: none;
      z-index: 999;
    }

    h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; }

    /* ============================================
       HEADER
       ============================================ */
    .header {
      text-align: center;
      padding: 2rem 1rem 1rem;
    }

    .marquee-sign {
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--neon-purple);
      text-shadow: 3px 3px 0 #2a004a, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
      border: var(--border);
      padding: 0.8rem 2rem;
      background: var(--bg-dark);
      box-shadow: var(--shadow), 0 0 30px rgba(176, 38, 255, 0.4);
      display: inline-block;
      transform: rotate(1.5deg);
      letter-spacing: 3px;
    }

    .sub-marquee {
      font-size: clamp(0.7rem, 2vw, 1rem);
      background: #000;
      color: var(--neon-purple);
      padding: 0.4rem 1rem;
      display: inline-block;
      margin-top: 10px;
      border: 2px solid var(--neon-purple);
      transform: rotate(-1deg);
    }

    /* ============================================
       BACK LINK
       ============================================ */
    .back-link {
      display: inline-block;
      margin: 1rem 1.5rem;
      text-decoration: none;
    }

    .back-btn {
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      padding: 0.5rem 1.2rem;
      background: var(--bg-dark);
      color: var(--yellow);
      border: var(--border);
      box-shadow: 4px 4px 0 #000;
      cursor: pointer;
      transition: all 0.1s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .back-btn:hover {
      background: #222;
      box-shadow: 2px 2px 0 #000;
      transform: translate(2px, 2px);
    }

    /* ============================================
       FILTER TABS
       ============================================ */
    .tabs-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      padding: 0.5rem 1rem 1rem;
      margin: 0 auto;
      max-width: 1000px;
    }

    .tab-btn {
      font-family: 'Oswald', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      padding: 0.6rem 1.2rem;
      background: var(--bg-dark);
      color: #666;
      border: var(--border);
      box-shadow: 4px 4px 0 #000;
      cursor: pointer;
      transition: all 0.15s;
      letter-spacing: 1px;
    }

    .tab-btn:hover { color: var(--neon-purple); box-shadow: 4px 4px 0 #000, 0 0 10px rgba(176,38,255,0.3); }
    .tab-btn.active { background: var(--neon-purple); color: #fff; box-shadow: 2px 2px 0 #000; transform: translate(2px, 2px); }

    /* ============================================
       SEARCH
       ============================================ */
    .search-wrap {
      display: flex;
      justify-content: center;
      padding: 0 1rem 1.5rem;
    }

    .search-input {
      font-family: 'Share Tech Mono', monospace;
      font-size: 1rem;
      background: #111;
      color: var(--neon-purple);
      border: var(--border);
      box-shadow: 4px 4px 0 #000;
      padding: 0.5rem 1rem;
      width: 100%;
      max-width: 500px;
      outline: none;
      letter-spacing: 1px;
    }

    .search-input::placeholder { color: #333; }
    .search-input:focus { border-color: var(--neon-purple); box-shadow: 4px 4px 0 #000, 0 0 15px rgba(176,38,255,0.2); }

    /* ============================================
       SECTION DIVIDERS
       ============================================ */
    .section-divider {
      max-width: 1100px;
      margin: 2rem auto 0.5rem;
      padding: 0 1rem;
    }

    .section-label {
      font-family: 'Oswald', sans-serif;
      font-size: 1.4rem;
      color: var(--neon-purple);
      text-shadow: 2px 2px 0 #000;
      border-bottom: 3px solid var(--neon-purple);
      padding-bottom: 0.4rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* ============================================
       SUPPLIER GRID
       ============================================ */
    .supplier-grid {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1rem;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
    }

    /* ============================================
       SUPPLIER CARD
       ============================================ */
    .supplier-card {
      background: var(--bg-dark);
      border: var(--border);
      box-shadow: var(--shadow);
      padding: 1.5rem;
      position: relative;
      transition: all 0.25s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .supplier-card:hover {
      transform: translateY(-4px) rotate(0.5deg);
      box-shadow: 10px 12px 0 #000, 0 0 25px rgba(176, 38, 255, 0.15);
      border-color: var(--neon-purple);
    }

    .supplier-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.4rem;
      color: #fff;
      text-shadow: 1px 1px 0 #000;
      margin-bottom: -5px;
    }

    .supplier-tagline {
      font-size: 0.75rem;
      color: var(--yellow);
      font-style: italic;
      min-height: 2.2em;
    }

    .supplier-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
    }

    .meta-pill {
      font-family: 'Oswald', sans-serif;
      font-size: 0.65rem;
      padding: 2px 8px;
      background: #111;
      border: 1px solid #333;
      color: #888;
      text-transform: uppercase;
    }

    .meta-pill.type { background: #000; color: #fff; border-color: var(--neon-purple); }

    .tag-retail { color: var(--tag-retail); }
    .tag-online { color: var(--tag-online); }
    .tag-chain { color: var(--tag-chain); }
    .tag-manufacturer { color: var(--tag-manufacturer); }

    /* ============================================
       MODAL POPUP
       ============================================ */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }

    .modal-overlay.open { display: flex; }

    .modal-box {
      background: var(--bg-dark);
      border: 4px solid var(--neon-purple);
      box-shadow: 12px 12px 0 #000;
      width: 100%;
      max-width: 800px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: rotate(1deg);
      animation: modalSlam 0.3s ease-out;
      padding: 2.5rem;
    }

    @keyframes modalSlam {
      0% { transform: rotate(1deg) scale(0.7); opacity: 0; }
      100% { transform: rotate(1deg) scale(1); opacity: 1; }
    }

    .modal-close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      background: none;
      border: none;
      color: var(--neon-red);
      font-family: 'Oswald', sans-serif;
      font-size: 2.5rem;
      cursor: pointer;
      line-height: 0.8;
    }

    .modal-header {
      border-bottom: 3px solid var(--neon-purple);
      margin-bottom: 2rem;
      padding-bottom: 0.8rem;
    }

    .modal-title {
      font-size: 2.5rem;
      color: #fff;
      text-shadow: 2px 2px 0 #000;
    }

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

    @media (max-width: 768px) {
      .modal-grid { grid-template-columns: 1fr; }
      .modal-box { transform: rotate(0deg); }
    }

    .modal-col h4 {
      font-size: 1.1rem;
      color: var(--neon-purple);
      margin-bottom: 12px;
      border-bottom: 1px solid #333;
      padding-bottom: 5px;
    }

    .modal-text {
      font-size: 0.9rem;
      color: #ccc;
      line-height: 1.6;
    }

    .modal-blurb {
      background: #000;
      border-left: 4px solid var(--neon-purple);
      padding: 1.2rem;
      font-style: italic;
      color: var(--yellow);
      margin-top: 1.5rem;
    }

    .brands-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .brand-pill {
      font-size: 0.75rem;
      background: #222;
      padding: 4px 10px;
      border: 1px solid #444;
      color: #bbb;
    }

    .dossier-link-btn {
      display: inline-block;
      margin-top: 2rem;
      font-family: 'Oswald', sans-serif;
      text-decoration: none;
      background: var(--neon-purple);
      color: #fff;
      padding: 0.8rem 1.5rem;
      border: 3px solid #000;
      box-shadow: 5px 5px 0 #000;
      font-weight: 700;
      letter-spacing: 1px;
      transition: all 0.1s;
    }

    .dossier-link-btn:hover {
      transform: translate(-2px, -2px);
      box-shadow: 7px 7px 0 #000;
    }

    /* ============================================
       FOOTER
       ============================================ */
    .site-footer {
      text-align: center;
      padding: 4rem 2rem;
      background: #0a0a0a;
      border-top: 4px solid #000;
      color: #444;
      font-size: 0.8rem;
    }

    /* ============================================
       SCREEN READER / SEO ONLY (crawlable, visually hidden)
       ============================================ */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

