    /* ============================================
       CSS VARIABLES & RESET
       ============================================ */
    :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;
    }

    *, *::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(--yellow);
      text-shadow: 3px 3px 0 var(--orange), -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(244,192,37,0.4);
      display: inline-block;
      transform: rotate(-1.5deg);
      letter-spacing: 3px;
      animation: signFlicker 4s infinite;
    }

    @keyframes signFlicker {
      0%, 93%, 100% { box-shadow: var(--shadow), 0 0 30px rgba(244,192,37,0.4); }
      95%            { box-shadow: var(--shadow), 0 0 5px rgba(244,192,37,0.1); }
      97%            { box-shadow: var(--shadow), 0 0 40px rgba(244,192,37,0.6); }
    }

    .sub-marquee {
      font-size: clamp(0.7rem, 2vw, 1rem);
      background: #000;
      color: var(--yellow);
      padding: 0.4rem 1rem;
      display: inline-block;
      margin-top: 10px;
      border: 2px solid var(--yellow);
      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: 900px;
    }

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

    .tab-btn:hover { color: var(--yellow); box-shadow: 4px 4px 0 #000, 0 0 10px rgba(244,192,37,0.3); }
    .tab-btn.active { background: var(--yellow); color: #000; box-shadow: 2px 2px 0 #000; transform: translate(2px, 2px); }

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

    .search-input {
      font-family: 'Share Tech Mono', monospace;
      font-size: 1rem;
      background: #111;
      color: var(--yellow);
      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: #444; }
    .search-input:focus { border-color: var(--yellow); box-shadow: 4px 4px 0 #000, 0 0 15px rgba(244,192,37,0.2); }

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

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

    .section-count {
      font-size: 0.85rem;
      color: #555;
      font-family: 'Share Tech Mono', monospace;
    }

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

    /* ============================================
       BRAND CARD
       ============================================ */
    .brand-card {
      background: var(--bg-dark);
      border: var(--border);
      box-shadow: var(--shadow);
      position: relative;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
    }

    .brand-card:hover {
      transform: translateY(-4px) rotate(-0.3deg);
      box-shadow: 10px 12px 0 #000, 0 0 25px rgba(244,192,37,0.15);
    }

    .brand-card.expanded {
      grid-column: 1 / -1;
    }

    /* Origin badge */
    .origin-badge {
      position: absolute;
      top: -10px;
      right: -10px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 10px;
      border: 2px solid #000;
      box-shadow: 2px 2px 0 #000;
      transform: rotate(6deg);
      z-index: 2;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .origin-badge.intl   { background: var(--neon-blue); color: #000; }
    .origin-badge.local  { background: var(--neon-green); color: #000; }

    /* Avail badge */
    .avail-badge {
      position: absolute;
      top: 12px;
      left: -8px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 2px 10px 2px 14px;
      border: 2px solid #000;
      box-shadow: 2px 2px 0 #000;
      text-transform: uppercase;
      letter-spacing: 1px;
      clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 8px 100%, 0% 50%);
      z-index: 2;
    }

    .avail-excellent { background: var(--neon-green); color: #000; }
    .avail-good      { background: var(--yellow); color: #000; }
    .avail-moderate  { background: var(--orange); color: #fff; }

    .card-header {
      padding: 1.2rem 1.2rem 0.8rem;
    }

    .card-top-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 6px;
    }

    .brand-logo-placeholder {
      width: 48px;
      height: 48px;
      border: 2px solid #333;
      background: #111;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      color: var(--yellow);
      flex-shrink: 0;
      text-transform: uppercase;
    }

    .brand-name-block { flex: 1; }

    .brand-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem;
      color: #fff;
      line-height: 1.1;
      text-shadow: 1px 1px 0 #000;
    }

    .brand-tagline {
      font-size: 0.72rem;
      color: var(--yellow);
      margin-top: 2px;
      font-style: italic;
    }

    .brand-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 8px 0;
    }

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

    .meta-pill .val { color: #ccc; }

    .brand-short {
      font-size: 0.78rem;
      color: #999;
      line-height: 1.5;
      padding: 0 1.2rem 0.8rem;
      border-top: 1px solid #222;
      padding-top: 0.7rem;
    }

    /* Cat tags */
    .cat-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      padding: 0 1.2rem 0.8rem;
    }

    .cat-tag {
      font-family: 'Oswald', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 2px 8px;
      border: 1px solid #000;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cat-fmj   { background: #555; color: #eee; }
    .cat-jhp   { background: var(--neon-red); color: #fff; }
    .cat-sub   { background: var(--neon-blue); color: #000; }
    .cat-comp  { background: var(--neon-purple); color: #fff; }
    .cat-poly  { background: #8b5cf6; color: #fff; }
    .cat-cmj   { background: #0ea5e9; color: #000; }
    .cat-duty  { background: var(--orange); color: #fff; }

    /* Card footer / expand */
    .card-footer-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.6rem 1.2rem;
      border-top: 2px solid #222;
      background: rgba(0,0,0,0.3);
    }

    .notable-label {
      font-size: 0.68rem;
      color: #555;
      font-style: italic;
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .expand-btn {
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      background: transparent;
      color: var(--yellow);
      border: 2px solid var(--yellow);
      cursor: pointer;
      transition: all 0.1s;
      letter-spacing: 1px;
      white-space: nowrap;
      flex-shrink: 0;
      margin-left: 8px;
    }

    .expand-btn:hover { background: var(--yellow); color: #000; }

    /* ============================================
       MODAL POPUP
       ============================================ */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      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 #000;
      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: 2rem;
    }

    @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: 10px;
      right: 15px;
      background: none;
      border: none;
      color: var(--neon-red);
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
      padding: 5px;
    }
    .modal-close-btn:hover { color: #fff; transform: scale(1.1); }

    .modal-header {
      border-bottom: 3px solid var(--yellow);
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
    }

    .modal-title {
      font-size: 2rem;
      color: var(--yellow);
      text-shadow: 2px 2px 0 #000;
    }

    .modal-tagline {
      font-size: 0.9rem;
      color: #888;
      font-style: italic;
    }

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

    @media (max-width: 768px) {
      .modal-grid { grid-template-columns: 1fr; }
      .modal-box { transform: rotate(0deg); animation: modalFade 0.3s ease-out; }
      @keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
    }

    .modal-col h4 {
      font-size: 1rem;
      color: var(--yellow);
      margin-bottom: 10px;
      letter-spacing: 1px;
      border-bottom: 1px solid #333;
      padding-bottom: 4px;
    }

    .modal-history {
      font-size: 0.85rem;
      color: #bbb;
      line-height: 1.6;
    }

    .modal-blurb {
      margin-top: 1.5rem;
      background: #111;
      border-left: 4px solid var(--orange);
      padding: 1rem;
      font-size: 0.9rem;
      color: var(--yellow);
      font-style: italic;
      line-height: 1.5;
      background-image: linear-gradient(45deg, rgba(209, 86, 16, 0.05) 0%, transparent 100%);
    }

    .modal-notable-item {
      font-size: 0.8rem;
      color: #eee;
      padding: 6px 0;
      border-bottom: 1px dashed #333;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .modal-notable-item::before { content: "▶"; color: var(--orange); font-size: 0.7rem; }

    .modal-parent {
      margin-top: 1.5rem;
      font-size: 0.75rem;
      color: #666;
      border-top: 1px solid #222;
      padding-top: 0.8rem;
    }
    .modal-parent span { color: #999; }

    /* ============================================
       EMPTY STATE
       ============================================ */
    .empty-state {
      grid-column: 1 / -1;
      text-align: center;
      color: #555;
      padding: 3rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
    }

    /* ============================================
       STATS BAR
       ============================================ */
    .page-stats {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      max-width: 900px;
      margin: 0 auto 0.5rem;
      padding: 0 1rem;
    }

    .stat-chip {
      background: #111;
      border: 2px solid #222;
      padding: 0.4rem 0.9rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .stat-chip span { color: var(--neon-green); font-size: 1rem; }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 600px) {
      .brand-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Full Dossier Link Button */
    .dossier-link-btn {
      display: inline-block;
      margin-top: 1rem;
      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: var(--yellow);
      border: var(--border);
      box-shadow: 4px 4px 0 #000;
      text-decoration: none;
      transition: all 0.1s;
      letter-spacing: 1px;
    }
    .dossier-link-btn:hover {
      background: var(--yellow);
      color: #000;
      box-shadow: 2px 2px 0 #000;
      transform: translate(2px, 2px);
    }

    /* Site Footer Styling */
    .site-footer {
      text-align: center;
      padding: 3rem 2rem;
      margin-top: 4rem;
      background: var(--bg-dark);
      border-top: var(--border);
      color: #666;
      font-size: 0.85rem;
      line-height: 1.6;
      font-family: 'Share Tech Mono', monospace;
      letter-spacing: 0.5px;
      position: relative;
    }

    .site-footer::before {
      content: "DATA TERMINAL // v2.06";
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--yellow);
      color: #000;
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 2px 15px;
      border: 2px solid #000;
    }

