  /* =============================================
     HERO
     ============================================= */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 60px;
    text-align: center;
  }

  /* Grid lines overlay — declassified-dossier crosshatch */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right,  rgba(220,38,38,0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(220,38,38,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: -1px -1px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 35%, transparent 95%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 35%, transparent 95%);
  }

  #particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 940px;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(163,24,24,0.45);
    padding: 9px 20px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.75);
    opacity: 0;
    animation: fadeUp 0.7s ease 0.2s forwards;
  }

  .hero-badge-dot {
    position: relative;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--red), 0 0 14px rgba(220,38,38,0.55);
    animation: pulse 2s ease infinite;
  }
  .hero-badge-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #dc2626;
    animation: badgePing 2s ease-out infinite;
  }
  @keyframes badgePing {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-badge-dot::after { animation: none; display: none; }
  }
  .hero-badge-text {
    color: rgba(240,237,232,0.85);
  }
  .hero-badge-sep {
    color: var(--red);
    margin: 0 4px;
    opacity: 0.85;
  }

  /* Per-character stagger animation — applied via JS */
  .hero-title-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero-title-char.in {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-title-char.space { width: 0.32em; }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(48px, 8.8vw, 109px);
    line-height: 0.88;
    color: var(--white);
    letter-spacing: -3px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.35s forwards;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
  }
  @keyframes heroBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(14px, 1.6vw, 18px);
    color: rgba(240,237,232,0.36);
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
  }

  .hero-body {
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(240,237,232,0.44);
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.65s forwards;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }

  .hero-pills {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.95s forwards;
  }

  /* Media appearance badges */
  .hero-media-badges {
    display: flex;
    align-items: center;
    gap: 18px 26px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    max-width: 720px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.05s forwards;
  }
  .hero-media-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.32);
    width: 100%;
    text-align: center;
    margin-bottom: -4px;
  }
  .hero-media-badge {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.55);
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 3px;
    background: rgba(255,255,255,0.02);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
  }
  .hero-media-badge:hover {
    color: var(--white);
    border-color: rgba(220,38,38,0.55);
    background: rgba(220,38,38,0.06);
  }
  /* Brand-colored glows per outlet — vivid idle + intensified hover */
  .badge-fox     { box-shadow: 0 0 10px rgba(0,51,153,0.45), 0 0 3px rgba(0,51,153,0.3); border-color: rgba(0,51,153,0.55); color: rgba(153,187,255,0.7); }
  .badge-fox:hover     { box-shadow: 0 0 22px rgba(0,51,153,0.7), 0 0 6px rgba(0,51,153,0.5); border-color: rgba(0,51,153,0.8); color: #99bbff; }
  .badge-newsmax { box-shadow: 0 0 10px rgba(204,0,0,0.4), 0 0 3px rgba(204,0,0,0.25); border-color: rgba(204,0,0,0.5); color: rgba(255,120,120,0.7); }
  .badge-newsmax:hover { box-shadow: 0 0 22px rgba(204,0,0,0.65), 0 0 6px rgba(204,0,0,0.45); border-color: rgba(204,0,0,0.75); color: #ff7878; }
  .badge-jpost   { box-shadow: 0 0 10px rgba(212,160,23,0.4), 0 0 3px rgba(212,160,23,0.25); border-color: rgba(212,160,23,0.5); color: rgba(240,210,100,0.7); }
  .badge-jpost:hover   { box-shadow: 0 0 22px rgba(212,160,23,0.65), 0 0 6px rgba(212,160,23,0.45); border-color: rgba(212,160,23,0.75); color: #f0d264; }
  .badge-ntd     { box-shadow: 0 0 10px rgba(106,13,173,0.4), 0 0 3px rgba(106,13,173,0.25); border-color: rgba(106,13,173,0.5); color: rgba(180,130,240,0.7); }
  .badge-ntd:hover     { box-shadow: 0 0 22px rgba(106,13,173,0.65), 0 0 6px rgba(106,13,173,0.45); border-color: rgba(106,13,173,0.75); color: #b482f0; }
  .badge-jjournal { box-shadow: 0 0 10px rgba(184,134,11,0.4), 0 0 3px rgba(184,134,11,0.25); border-color: rgba(184,134,11,0.5); color: rgba(221,184,122,0.7); }
  .badge-jjournal:hover { box-shadow: 0 0 22px rgba(184,134,11,0.65), 0 0 6px rgba(184,134,11,0.45); border-color: rgba(184,134,11,0.75); color: #ddb87a; }

  .hero-pill {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 11px;
    border: 1px solid;
    border-radius: 12px;
    text-decoration: none;
    background: transparent;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease;
  }

  .hero-pill:hover {
    transform: scale(1.05);
  }

  /* cyan — Funding Network */
  .hero-pill.blue {
    border-color: #00f0ff;
    color: #00f0ff;
    box-shadow: 0 0 8px rgba(0,240,255,0.4), 0 0 20px rgba(0,240,255,0.15);
  }
  .hero-pill.blue:hover {
    box-shadow: 0 0 14px rgba(0,240,255,0.7), 0 0 36px rgba(0,240,255,0.3);
  }

  /* crimson — Investigation Files */
  .hero-pill.red {
    border-color: #ff2d2d;
    color: #ff2d2d;
    box-shadow: 0 0 8px rgba(255,45,45,0.4), 0 0 20px rgba(255,45,45,0.15);
  }
  .hero-pill.red:hover {
    box-shadow: 0 0 14px rgba(255,45,45,0.7), 0 0 36px rgba(255,45,45,0.3);
  }

  /* gold — Timeline */
  .hero-pill.amber {
    border-color: #ffd000;
    color: #ffd000;
    box-shadow: 0 0 8px rgba(255,208,0,0.4), 0 0 20px rgba(255,208,0,0.15);
  }
  .hero-pill.amber:hover {
    box-shadow: 0 0 14px rgba(255,208,0,0.7), 0 0 36px rgba(255,208,0,0.3);
  }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 4px;
    color: rgba(240,237,232,0.2);
    text-transform: uppercase;
    z-index: 1;
    animation: fadeIn 1.2s ease 1.2s both;
  }

  /* =============================================
     STATS ROW
     ============================================= */
  .stats-row {
    background: transparent;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }

  .stats-row-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 20px;
    border-right: 1px solid var(--border);
  }

  .stats-row-stat:last-child { border-right: none; }

  .stats-row-num {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--white);
    line-height: 1;
  }

  .stats-row-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.5);
  }

  .stats-row-sublabel {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(240,237,232,0.28);
    text-transform: uppercase;
  }

  /* =============================================
     RESPONSIVE
     ============================================= */
  @media (max-width: 900px) {
    .hero { padding: 80px 24px 48px; }
    .hero-title { letter-spacing: -2px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stats-row-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
    .stats-row-stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .stats-row-stat:last-child,
    .stats-row-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  }

  /* =============================================
     EMAIL POPUP MODAL
     ============================================= */
  .email-popup {
    position: fixed;
    inset: 0;
    z-index: 9995;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .email-popup.is-open {
    display: flex;
    opacity: 1;
  }
  .email-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8,8,12,0.86);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
  }
  .email-popup-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: linear-gradient(180deg, rgba(20,20,28,0.95) 0%, rgba(12,12,18,0.99) 100%);
    border: 1px solid rgba(220,38,38,0.32);
    border-radius: 10px;
    padding: 38px 36px 30px;
    box-shadow:
      0 0 0 1px rgba(220,38,38,0.10),
      0 30px 80px rgba(0,0,0,0.7),
      0 0 60px rgba(220,38,38,0.18);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .email-popup.is-open .email-popup-card {
    transform: translateY(0);
  }
  .email-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 4px;
    color: rgba(240,237,232,0.7);
    font-family: var(--mono);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }
  .email-popup-close:hover {
    color: var(--white);
    border-color: var(--red);
    background: rgba(220,38,38,0.10);
  }
  .email-popup-eyebrow {
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }
  .email-popup-heading {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.1;
  }
  .email-popup-sub {
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.55;
    color: rgba(240,237,232,0.55);
    margin: 0 0 22px;
  }
  .email-popup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .email-popup-row {
    display: flex;
    gap: 10px;
  }
  .email-popup-row .email-popup-input { flex: 1; }
  .email-popup-input,
  .email-popup-textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 5px;
    padding: 12px 14px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .email-popup-textarea {
    font-family: var(--body);
    font-size: 13px;
    resize: vertical;
    min-height: 70px;
  }
  .email-popup-input::placeholder,
  .email-popup-textarea::placeholder {
    color: rgba(240,237,232,0.32);
  }
  .email-popup-input:focus,
  .email-popup-textarea:focus {
    border-color: rgba(220,38,38,0.55);
    background: rgba(255,255,255,0.06);
  }
  .email-popup-cta {
    margin-top: 6px;
    background: #dc2626;
    color: #fff;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 22px;
    border: 1px solid #dc2626;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }
  .email-popup-cta:hover:not(:disabled) {
    background: #ef4444;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(220,38,38,0.5);
  }
  .email-popup-cta:disabled { opacity: 0.6; cursor: default; }
  .email-popup-error {
    margin: 6px 0 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: #dc2626;
  }
  .email-popup-foot {
    margin: 16px 0 0;
    text-align: center;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.32);
  }

  .email-popup-success {
    text-align: center;
    padding: 20px 0 8px;
  }
  .email-popup-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(220,38,38,0.12);
    border: 1px solid rgba(220,38,38,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #dc2626;
    box-shadow: 0 0 24px rgba(220,38,38,0.3);
  }
  .email-popup-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--white);
    margin: 0 0 6px;
  }
  .email-popup-success-sub {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(240,237,232,0.55);
    margin: 0;
  }

  @media (max-width: 600px) {
    .email-popup-card { padding: 30px 22px 22px; }
    .email-popup-row { flex-direction: column; }
    .email-popup-heading { font-size: 24px; }
  }

  /* =============================================
     LEAD CAPTURE — "Stay In The Loop"
     ============================================= */
  .lead-capture {
    padding: 64px 24px 56px;
    display: flex;
    justify-content: center;
  }

  .lead-capture-card {
    width: 100%;
    max-width: 620px;
    background: linear-gradient(180deg, rgba(18,18,24,0.6) 0%, rgba(12,12,18,0.85) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 40px 40px 32px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.03);
  }

  .lead-capture-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
  }
  .lead-capture-eyebrow-line {
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--red);
  }

  .lead-capture-headline {
    font-family: var(--serif);
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
    line-height: 1.1;
  }

  .lead-capture-sub {
    font-family: var(--body);
    font-size: 14px;
    color: rgba(240,237,232,0.5);
    margin: 0 0 24px;
  }

  .lead-capture-form {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .lead-capture-input {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--white);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 14px 18px;
    outline: none;
    border-radius: 4px;
    transition: border-color 0.25s ease, background 0.25s ease;
  }
  .lead-capture-input::placeholder { color: rgba(240,237,232,0.32); }
  .lead-capture-input:focus {
    border-color: rgba(220,38,38,0.55);
    background: rgba(255,255,255,0.06);
  }

  .lead-capture-btn {
    background: #dc2626;
    color: #fff;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 26px;
    border: 1px solid #dc2626;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .lead-capture-btn:hover {
    background: #ef4444;
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(220,38,38,0.45);
  }

  .lead-capture-disclaimer {
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.32);
  }

  @media (max-width: 600px) {
    .lead-capture { padding: 48px 18px 40px; }
    .lead-capture-card { padding: 30px 22px 26px; }
    .lead-capture-form { flex-direction: column; }
    .lead-capture-btn { padding: 14px 20px; }
  }

  /* =============================================
     TABBED SECTION
     ============================================= */
  .tabs-section {
    background: transparent;
    padding: 0;
  }

  .tabs-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 40px 0;
  }

  .tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .tabs-nav::-webkit-scrollbar { display: none; }

  .tabs-nav-cta {
    flex-shrink: 0;
    padding: 10px 24px;
    font-size: 10px;
    letter-spacing: 1.5px;
    white-space: nowrap;
  }

  .tab-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 20px;
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240,237,232,0.35);
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease, border-color 0.25s ease;
    margin-bottom: -1px;
  }

  .tab-btn:hover {
    color: rgba(240,237,232,0.75);
  }

  .tab-btn.active {
    color: var(--white);
    border-bottom-color: var(--red);
  }

  .tabs-content {
    padding-top: 0;
  }

  .tab-panel {
    display: none;
  }

  .tab-panel.active {
    display: block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .tab-panel.active.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .tab-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .tab-card-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
  }

  .tab-card-title {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 32px);
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.05;
    margin: 0;
  }

  .tab-card-body {
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(240,237,232,0.55);
    max-width: 600px;
    margin: 0;
  }

  .tab-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: gap 0.25s ease, opacity 0.25s ease;
    width: fit-content;
  }

  .tab-card-link:hover {
    gap: 14px;
    opacity: 0.8;
  }

  /* ── Shared panel primitives ── */
  .panel-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
  }

  .panel-headline {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0;
  }

  .panel-body {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(240,237,232,0.55);
    margin: 0;
  }

  .panel-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: opacity 0.25s ease;
  }

  .panel-link:hover { opacity: 0.7; }

  .panel-center-link { text-align: center; }

  .panel-links { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 4px; }

  /* ── Panel section header (shared) ── */
  .panel-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .panel-section-left { display: flex; flex-direction: column; gap: 4px; }

  .panel-stats-inline {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(240,237,232,0.4);
    white-space: nowrap;
    padding-bottom: 4px;
  }

  /* ── Videos tab — redesigned ── */
  .vid-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
    margin-bottom: 48px;
  }

  .vid-hero-title {
    font-family: var(--serif);
    font-size: 42px;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.05;
  }

  .vid-hero-sub {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
    max-width: 680px;
    margin: 0;
  }

  .vid-stats-bar {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    margin-bottom: 48px;
  }

  .vid-stats-main {
    display: flex;
    flex: 1;
    align-items: center;
  }

  .vid-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.06);
  }

  .vid-stat-item:first-child { padding-left: 0; }

  .vid-stat-num {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
  }

  .vid-stat-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  .vid-stats-hint {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.2);
    white-space: nowrap;
    padding-left: 32px;
  }

  .vid-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .vid-cat-grid > a:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
    max-width: calc(33.33% - 14px);
    justify-self: center;
  }

  .vid-cat-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid transparent;
    border-radius: 12px;
    padding: 36px 40px;
    min-height: 200px;
    display: flex;
    align-items: stretch;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.2s ease, border-left-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }
  .vid-cat-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 82%;
    opacity: 0.22;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .vid-cat-card:hover .vid-cat-thumb { opacity: 0.35; }
  .vid-cat-inner { position: relative; z-index: 1; }

  .vid-cat-card:hover {
    border-color: rgba(255,255,255,0.12);
    border-left-color: var(--red);
    background: rgba(255,255,255,0.04);
    transform: scale(1.02);
  }

  .vid-cat-inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .vid-cat-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
  }

  .vid-cat-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
  }

  .vid-cat-name {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
  }

  .vid-cat-desc {
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .vid-cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 4px;
  }

  .vid-cat-cta-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
  }

  .vid-cat-card:hover .vid-cat-cta-arrow { transform: translateX(4px); }

  .vid-cat-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 100px;
  }

  .vid-cat-number {
    font-family: var(--display);
    font-size: 100px;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.3s ease;
  }

  .vid-cat-card:hover .vid-cat-number { color: rgba(255,255,255,0.07); }

  /* ── Press tab — redesigned ── */
  .press-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 52px;
  }

  .press-main-title {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--white);
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
  }

  .press-subline {
    font-family: var(--body);
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.5;
  }

  /* ── Endorsement cards ── */
  .endorsements-wrap {
    margin: 8px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .endorsements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .endorse-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px 28px 24px;
    background: linear-gradient(180deg, rgba(20,20,28,0.5) 0%, rgba(12,12,18,0.85) 100%);
    border: 1px solid rgba(220,38,38,0.22);
    border-left: 3px solid var(--red);
    border-radius: 6px;
    text-decoration: none;
    color: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .endorse-card:hover {
    transform: translateY(-3px);
    border-color: rgba(220,38,38,0.5);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 24px rgba(220,38,38,0.2);
  }
  .endorse-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at top right, rgba(220,38,38,0.18), transparent 70%);
    pointer-events: none;
  }
  .endorse-card-stamp {
    position: absolute;
    top: 12px;
    right: -28px;
    transform: rotate(8deg);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 2.5px;
    color: rgba(220,38,38,0.55);
    border: 1px solid rgba(220,38,38,0.4);
    padding: 3px 30px 2px;
    background: rgba(220,38,38,0.05);
    pointer-events: none;
  }
  .endorse-card-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .endorse-card-name {
    font-family: var(--display);
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .endorse-card-platform {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
  }
  .endorse-card-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(240,237,232,0.7);
    margin: 0;
    flex: 1;
  }
  .endorse-card-link {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(220,38,38,0.75);
    transition: color 0.2s ease;
  }
  .endorse-card:hover .endorse-card-link { color: var(--red); }
  .endorse-card-static .endorse-card-link {
    color: rgba(220,38,38,0.75);
  }
  .endorse-card { cursor: pointer; }
  .endorse-card.endorse-open { transform: none; }
  .endorse-card-embed {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(220,38,38,0.15);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, padding-top 0.4s ease;
    padding-top: 0;
  }
  .endorse-card-embed.endorse-embed-open {
    max-height: 1200px;
    opacity: 1;
    padding-top: 14px;
  }
  .endorse-embed-note {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(240,237,232,0.4);
    margin: 0 0 10px;
  }
  .endorse-embed-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #000;
  }
  .endorse-embed-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
  }
  .tweet-embed-wrap {
    width: 100%;
    max-width: 550px;
    margin: 12px 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    min-height: 280px;
  }
  .tweet-embed-wrap iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
  }
  .press-tweet-item {
    grid-column: span 1;
  }
  .endorse-embed-quote-card {
    background: rgba(220,38,38,0.06);
    border: 1px solid rgba(220,38,38,0.2);
    border-left: 3px solid var(--red);
    border-radius: 6px;
    padding: 20px 24px;
  }
  .endorse-embed-quote-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(240,237,232,0.8);
    margin: 0 0 12px;
  }
  .endorse-embed-quote-attr {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(220,38,38,0.6);
    margin: 0;
  }

  @media (max-width: 720px) {
    .endorsements-grid { grid-template-columns: 1fr; }
  }

  .press-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }

  .press-feat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid transparent;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    transition: border-color 0.25s ease, border-left-color 0.25s ease, transform 0.3s ease;
  }

  .press-feat-card:hover {
    border-color: rgba(255,255,255,0.12);
    border-left-color: var(--red);
    transform: translateY(-4px);
  }

  .press-feat-outlet-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    align-self: flex-start;
  }

  .press-feat-outlet-badge.tv {
    background: rgba(163,24,24,0.25);
    color: var(--red);
  }

  .press-feat-outlet-badge.print {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
  }

  .press-feat-headline {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--white);
    line-height: 1.25;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .press-feat-summary {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(240,237,232,0.5);
    margin: 0;
  }

  .press-feat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .press-feat-date {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
  }

  .press-feat-link {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--red);
  }

  /* Per-outlet press sections */
  .press-outlet-section { margin-bottom: 40px; }
  .press-outlet-header { margin-bottom: 16px; }
  .press-outlet-name {
    font-family: var(--display);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 2px solid var(--red);
    padding-bottom: 6px;
  }
  .press-outlet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .press-outlet-section.press-highlight {
    border-left: 3px solid var(--red);
    padding-left: 16px;
    background: rgba(220,38,38,0.04);
    border-radius: 6px;
    padding: 16px;
    transition: border-color 0.5s ease, background 0.5s ease;
  }
  .press-coverage-link {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(220,38,38,0.65);
    margin-top: auto;
  }
  .press-coverage-item:hover .press-coverage-link { color: var(--red); }

  /* Keep old classes for any remaining references */
  .press-all-section { margin-bottom: 52px; }
  .press-all-header { margin-bottom: 20px; }
  .press-all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .press-coverage-item {
    background: rgba(255,255,255,0.025);
    border-radius: 8px;
    padding: 20px 24px;
    border-left: 2px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    transition: border-left-color 0.2s ease;
  }

  .press-coverage-item:hover { border-left-color: var(--red); }

  .press-coverage-outlet {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
  }

  .press-coverage-desc {
    font-family: var(--body);
    font-size: 13px;
    color: rgba(240,237,232,0.5);
    line-height: 1.4;
    margin: 0;
  }

  .press-coverage-date {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
  }

  /* Press contact strip */
  .press-contact-strip {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .press-contact-label {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
  }

  .press-contact-info {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin: 0;
  }

  .ff-bottom-login-link:hover { opacity: 0.7; }

  /* ── Friedman Files tab — premium purple variant ── */
  .tab-btn-ff {
    color: rgba(124,58,237,0.55);
    padding-left: 40px;
  }

  .tab-btn-ff:hover {
    color: #7c3aed;
  }

  .tab-btn-ff.active {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
  }

  /* File icon (::before) */
  .tab-btn-ff::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -9px;
    width: 8px;
    height: 9px;
    border: 1.5px solid currentColor;
    border-radius: 1px;
    clip-path: polygon(0 0, 60% 0, 100% 38%, 100% 100%, 0 100%);
    background: rgba(124,58,237,0.12);
    transition: transform 0.3s ease-out;
  }

  /* Cabinet opening (::after) */
  .tab-btn-ff::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 50%;
    margin-top: 3px;
    width: 10px;
    height: 5px;
    border: 1.5px solid rgba(124,58,237,0.35);
    border-top: none;
    border-radius: 0 0 2px 2px;
  }

  /* File slides into cabinet on hover */
  .tab-btn-ff:hover::before {
    transform: translateY(6px);
  }

  /* ── Support tab — red variant, pulsing glow ── */
  .tab-btn-support {
    position: relative;
    color: #ff4040 !important;
    text-shadow: 0 0 8px rgba(255,60,60,0.85), 0 0 18px rgba(255,40,40,0.55);
    animation: tabSupportPulse 2.2s ease-in-out infinite;
  }
  .tab-btn-support::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff2020 20%, #ff4040 50%, #ff2020 80%, transparent);
    box-shadow: 0 0 12px rgba(255,40,40,0.9), 0 0 24px rgba(255,40,40,0.55);
    opacity: 0.85;
    pointer-events: none;
    animation: tabSupportUnderline 2.2s ease-in-out infinite;
  }
  .tab-btn-support:hover {
    color: #ff5050 !important;
    text-shadow: 0 0 12px rgba(255,80,80,1), 0 0 28px rgba(255,40,40,0.75);
    animation-play-state: paused;
  }
  .tab-btn-support.active {
    color: #ff5050 !important;
    border-bottom-color: #ff2020;
    text-shadow: 0 0 14px rgba(255,80,80,1), 0 0 32px rgba(255,40,40,0.8);
  }
  @keyframes tabSupportPulse {
    0%, 100% { text-shadow: 0 0 6px rgba(255,50,50,0.7), 0 0 14px rgba(255,40,40,0.38); }
    50%      { text-shadow: 0 0 14px rgba(255,80,80,1),   0 0 28px rgba(255,40,40,0.75); }
  }
  @keyframes tabSupportUnderline {
    0%, 100% { opacity: 0.45; box-shadow: 0 0 8px rgba(255,40,40,0.6),  0 0 16px rgba(255,40,40,0.3); }
    50%      { opacity: 1;    box-shadow: 0 0 16px rgba(255,40,40,1),   0 0 32px rgba(255,40,40,0.65); }
  }
  @media (prefers-reduced-motion: reduce) {
    .tab-btn-support,
    .tab-btn-support::after { animation: none; }
  }

  /* ── Support tab inline donate UI ── */
  .support-tab-card {
    width: 100%;
    max-width: 600px;
    margin: 24px auto 16px;
    background: linear-gradient(180deg, rgba(20,20,28,0.85) 0%, rgba(12,12,18,0.95) 100%);
    border: 1px solid rgba(163,24,24,0.32);
    border-radius: 12px;
    padding: 44px 40px 36px;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
      0 0 0 1px rgba(163,24,24,0.10),
      0 0 38px rgba(163,24,24,0.18),
      0 0 80px rgba(163,24,24,0.06),
      inset 0 1px 0 rgba(255,255,255,0.04);
  }
  .support-tab-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(163,24,24,0.30), transparent 45%, transparent 55%, rgba(163,24,24,0.30));
    pointer-events: none;
    z-index: -1;
    opacity: 0.85;
  }

  .support-pill-wrap { display: flex; justify-content: center; }
  .support-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin: 0 auto 22px;
    background: rgba(220,38,38,0.10);
    border: 1px solid rgba(220,38,38,0.45);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #dc2626;
  }
  .support-pill::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #dc2626;
    box-shadow: 0 0 8px rgba(220,38,38,0.7);
    animation: pulse 2s ease infinite;
  }

  .support-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(28px, 5vw, 38px);
    color: var(--white);
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.15;
    text-shadow: 0 1px 18px rgba(0,0,0,0.6);
  }
  .support-sub {
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(240,237,232,0.5);
    text-align: center;
    margin: 0 auto 32px;
    max-width: 440px;
  }

  .support-freq {
    display: flex;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 7px;
    padding: 3px;
    margin-bottom: 24px;
    gap: 3px;
  }
  .support-freq-btn {
    flex: 1;
    background: none;
    border: none;
    border-radius: 5px;
    padding: 9px 16px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.38);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .support-freq-btn.active {
    background: #dc2626;
    color: #fff;
  }
  .support-freq-btn:not(.active):hover {
    color: rgba(240,237,232,0.75);
  }

  .support-amounts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .support-amount-btn {
    flex: 1 1 calc(25% - 8px);
    min-width: 64px;
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 11px 6px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgba(240,237,232,0.5);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
  }
  .support-amount-btn:hover:not(.selected) {
    border-color: rgba(220,38,38,0.45);
    color: rgba(240,237,232,0.85);
    transform: translateY(-1px);
  }
  .support-amount-btn.selected {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(220,38,38,0.45);
  }

  .support-input-wrap {
    position: relative;
    margin-bottom: 12px;
  }
  .support-input-prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--mono);
    font-size: 13px;
    color: rgba(240,237,232,0.28);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
  }
  .support-input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 6px;
    padding: 13px 16px;
    font-family: var(--body);
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .support-input.has-prefix { padding-left: 28px; }
  .support-input::placeholder { color: rgba(240,237,232,0.18); }
  .support-input:focus {
    border-color: rgba(220,38,38,0.45);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.07);
  }

  .support-cta {
    width: 100%;
    height: 54px;
    margin-top: 20px;
    margin-bottom: 12px;
    background: #dc2626;
    border: none;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  }
  .support-cta:hover:not(:disabled) {
    background: #ef4444;
    box-shadow: 0 0 24px rgba(220,38,38,0.45);
  }
  .support-cta:disabled {
    opacity: 0.5;
    cursor: default;
  }

  .support-footer-note {
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.32);
    text-align: center;
    margin-top: 4px;
  }
  .support-footer-sep {
    color: rgba(220,38,38,0.45);
    margin: 0 6px;
  }

  .support-standalone-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.4);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .support-standalone-link:hover { color: var(--red); }

  @media (max-width: 600px) {
    .support-tab-card { padding: 28px 22px 24px; border-radius: 8px; }
    .support-amount-btn { flex: 1 1 calc(33.33% - 8px); }
  }

  /* Friedman Files card — purple border tint */
  .tab-card-ff {
    border-color: rgba(124,58,237,0.15);
  }

  .tab-card-label-ff {
    color: #7c3aed;
  }

  .tab-card-link-ff {
    color: #7c3aed;
  }

  .tab-card-link-ff:hover {
    opacity: 0.75;
  }

  /* ── Friedman Files tab panel — locked cabinet ── */
  .ff-tab-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .ff-tab-lock-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 12px rgba(124,58,237,0.4));
  }
  .ff-tab-classify-label {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 16px;
  }
  .ff-tab-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 20px;
    line-height: 1.1;
  }
  .ff-tab-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(240,237,232,0.55);
    max-width: 700px;
    margin: 0 auto;
  }

  /* Price card */
  .ff-tab-price-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
  }
  .ff-tab-price-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(124,58,237,0.3);
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(124,58,237,0.08);
    padding: 40px 44px 36px;
    max-width: 500px;
    width: 100%;
    text-align: center;
  }
  .ff-pc-tier {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .ff-pc-price {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
  }
  .ff-pc-price span {
    font-size: 24px;
    opacity: 0.5;
  }
  .ff-pc-tagline {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(240,237,232,0.28);
    margin-bottom: 20px;
  }
  .ff-pc-divider {
    border: none;
    border-top: 1px solid rgba(124,58,237,0.15);
    margin: 20px 0;
  }
  .ff-pc-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
  }
  .ff-pc-checklist li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(240,237,232,0.5);
    padding: 5px 0;
  }
  .ff-unlock-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .ff-unlock-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  .ff-pc-stripe-note {
    font-family: var(--mono);
    font-size: 9px;
    color: rgba(240,237,232,0.18);
    margin: 12px 0 0;
    letter-spacing: 1px;
  }
  .ff-pc-one-sub {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(220,38,38,0.7);
    margin: 10px 0 0;
    text-transform: uppercase;
  }

  /* Returning subscriber login box */
  .ff-login-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    text-align: center;
  }
  .ff-login-box-label {
    font-family: var(--body);
    font-size: 14px;
    color: var(--white);
    margin-bottom: 12px;
  }
  .ff-login-toggle-btn {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 10px 24px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .ff-login-toggle-btn:hover { border-color: rgba(255,255,255,0.4); }
  .ff-login-form-wrap { margin-top: 14px; }
  .ff-login-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--body);
    font-size: 14px;
    padding: 10px 14px;
    margin-bottom: 8px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }
  .ff-login-input:focus { border-color: rgba(255,255,255,0.25); }
  .ff-login-input::placeholder { color: rgba(240,237,232,0.3); }
  .ff-login-send-btn {
    width: 100%;
    background: #a31818;
    color: #fff;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .ff-login-send-btn:hover:not(:disabled) { background: #bc2020; }
  .ff-login-send-btn:disabled { opacity: 0.5; cursor: default; }
  .ff-login-error {
    font-family: var(--mono);
    font-size: 11px;
    color: #dc2626;
    margin-top: 8px;
    letter-spacing: 0.5px;
  }
  .ff-login-success-msg {
    font-family: var(--body);
    font-size: 14px;
    color: #4ade80;
    margin-bottom: 4px;
  }
  .ff-login-expired-warn {
    font-family: var(--body);
    font-size: 12px;
    line-height: 1.5;
    color: #d97706;
    background: rgba(217,119,6,0.08);
    border: 1px solid rgba(217,119,6,0.2);
    padding: 10px 14px;
    margin-bottom: 10px;
    text-align: left;
  }
  .ff-login-success-note {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(240,237,232,0.3);
  }

  /* Split preview — dossiers + videos */
  .ff-preview-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
  }
  .ff-preview-group {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.12);
    border-radius: 10px;
    padding: 24px;
  }
  .ff-preview-label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(124,58,237,0.6);
    margin-bottom: 16px;
  }
  .ff-preview-dossier-grid {
    display: grid;
    gap: 8px;
  }
  .ff-preview-dossier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
  }
  .ff-preview-dossier-name {
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(240,237,232,0.2);
    letter-spacing: 1px;
  }
  .ff-preview-lock-tag {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(124,58,237,0.4);
    border: 1px solid rgba(124,58,237,0.15);
    padding: 2px 8px;
    border-radius: 3px;
  }
  .ff-preview-video-desc {
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(240,237,232,0.35);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .ff-preview-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ff-preview-video {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/9;
  }
  .ff-preview-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.4);
  }
  .ff-preview-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8,8,12,0.5);
  }
  .ff-preview-lock-icon {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(124,58,237,0.5);
    border: 1px solid rgba(124,58,237,0.2);
    padding: 4px 10px;
    border-radius: 3px;
  }
  @media (max-width: 700px) {
    .ff-preview-split { grid-template-columns: 1fr; }
  }

  /* Free files section */
  .ff-free-section {
    margin-bottom: 56px;
  }
  .ff-free-label {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 24px;
  }
  .ff-free-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .ff-free-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border-left: 3px solid #22c55e;
    padding: 32px;
  }
  .ff-free-card-file {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(240,237,232,0.28);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
  }
  .ff-free-card-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 4px;
    padding: 2px 8px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }
  .ff-free-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
  }
  .ff-free-card-org {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(240,237,232,0.4);
    margin: 0 0 16px;
  }
  .ff-free-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
  }
  .ff-free-pill {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(240,237,232,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: 0.5px;
  }
  .ff-free-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(240,237,232,0.45);
    margin: 0 0 18px;
  }
  .ff-free-card-cta {
    font-family: var(--mono);
    font-size: 12px;
    color: #22c55e;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: opacity 0.2s ease;
  }
  .ff-free-card-cta:hover { opacity: 0.7; }

  /* ============================================
     LOCKED FUNDING MAP TEASER
     ============================================ */
  .ff-map-teaser {
    position: relative;
    margin: 32px 0 0;
    border: 1px solid rgba(220,38,38,0.22);
    border-radius: 8px;
    overflow: hidden;
    min-height: 360px;
    background: rgba(8,8,12,0.6);
    box-shadow:
      0 0 0 1px rgba(220,38,38,0.08),
      0 0 40px rgba(220,38,38,0.10),
      inset 0 0 60px rgba(0,0,0,0.5);
  }
  .ff-map-blur {
    position: absolute;
    inset: 0;
    filter: blur(6px);
    opacity: 0.4;
    pointer-events: none;
    overflow: hidden;
  }
  .ff-map-blur::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at center, rgba(8,8,12,0.0) 30%, rgba(8,8,12,0.85) 100%),
      linear-gradient(180deg, rgba(8,8,12,0.4) 0%, rgba(8,8,12,0.6) 100%);
    pointer-events: none;
  }
  .ff-map-svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .ff-map-lock-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 32px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .ff-map-lock-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(220,38,38,0.12);
    border: 1px solid rgba(220,38,38,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
    margin-bottom: 4px;
    box-shadow: 0 0 0 6px rgba(220,38,38,0.06);
    animation: ffMapLockPulse 2.4s ease-in-out infinite;
  }
  .ff-map-lock-icon { width: 32px; height: 40px; display: block; }

  @keyframes ffMapLockPulse {
    0%, 100% {
      box-shadow:
        0 0 0 6px rgba(220,38,38,0.04),
        0 0 22px rgba(220,38,38,0.25);
      transform: scale(1);
    }
    50% {
      box-shadow:
        0 0 0 12px rgba(220,38,38,0.0),
        0 0 38px rgba(220,38,38,0.55);
      transform: scale(1.05);
    }
  }

  .ff-map-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
  }
  .ff-map-heading {
    font-family: var(--display);
    font-size: clamp(26px, 3vw, 36px);
    color: var(--white);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 18px rgba(0,0,0,0.65);
  }
  .ff-map-sub {
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(240,237,232,0.55);
    max-width: 520px;
    margin: 0;
  }

  .ff-map-stats {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 6px 0 4px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ff-map-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
  .ff-map-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--white);
    line-height: 1;
  }
  .ff-map-stat-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.45);
  }
  .ff-map-stat-sep {
    font-family: var(--mono);
    color: rgba(220,38,38,0.45);
    font-size: 18px;
    line-height: 1;
  }

  .ff-map-cta {
    max-width: 360px;
    margin-top: 8px;
  }
  .ff-map-preview-link {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.45);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .ff-map-preview-link:hover { color: var(--red); }

  @media (max-width: 600px) {
    .ff-map-teaser { min-height: 300px; }
    .ff-map-lock-overlay { padding: 36px 20px 32px; }
    .ff-map-stats { gap: 12px; }
    .ff-map-stat-num { font-size: 22px; }
    .ff-map-stat-sep { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .ff-map-lock-icon-wrap { animation: none; }
  }

  /* ============================================
     DOSSIER ARCHIVE — 10 numbered files
     + Intelligence Brief
     ============================================ */
  .ff-archive-wrap {
    margin: 56px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .ff-archive-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .ff-archive-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
  }
  .ff-archive-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    margin: 0;
  }
  .ff-archive-sub {
    font-family: var(--body);
    font-size: 14px;
    color: rgba(240,237,232,0.5);
    max-width: 580px;
    margin: 0;
    line-height: 1.6;
  }

  .ff-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }

  .ff-archive-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 22px 22px;
    background: linear-gradient(180deg, rgba(20,20,28,0.55) 0%, rgba(12,12,18,0.85) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    text-decoration: none;
    color: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .ff-archive-card.released:hover {
    transform: translateY(-3px);
    border-color: rgba(220,38,38,0.5);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 22px rgba(220,38,38,0.18);
  }
  .ff-archive-card.coming-soon {
    border-color: rgba(255,255,255,0.05);
    background: linear-gradient(180deg, rgba(15,15,20,0.55) 0%, rgba(8,8,12,0.85) 100%);
  }
  .ff-archive-card.coming-soon .ff-archive-card-title,
  .ff-archive-card.coming-soon .ff-archive-card-desc {
    opacity: 0.55;
  }

  /* Watermark for released files */
  .ff-archive-card.released::before {
    content: 'CLASSIFIED';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    letter-spacing: 6px;
    color: rgba(220,38,38,0.04);
    text-transform: uppercase;
    pointer-events: none;
    transform: rotate(-12deg);
  }

  .ff-archive-card-stamp {
    position: absolute;
    top: 14px;
    right: -32px;
    transform: rotate(8deg);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 2.5px;
    color: rgba(220,38,38,0.7);
    border: 1px solid rgba(220,38,38,0.5);
    padding: 3px 36px 2px;
    background: rgba(220,38,38,0.06);
    pointer-events: none;
  }
  .ff-archive-card-stamp.soon {
    color: rgba(240,237,232,0.4);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.03);
  }

  .ff-archive-card-num {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2.5px;
    color: rgba(240,237,232,0.4);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }
  .ff-archive-card-tag {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }
  .ff-archive-card-title {
    font-family: var(--display);
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 4px 0 0;
    line-height: 1.15;
    position: relative;
    z-index: 1;
  }
  .ff-archive-card-desc {
    font-family: var(--body);
    font-size: 12px;
    line-height: 1.6;
    color: rgba(240,237,232,0.55);
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .ff-archive-card-cta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(220,38,38,0.7);
    margin-top: 6px;
    position: relative;
    z-index: 1;
  }
  .ff-archive-card.coming-soon .ff-archive-card-cta {
    color: rgba(240,237,232,0.32);
  }
  .ff-archive-card.released:hover .ff-archive-card-cta { color: var(--red); }

  /* Intelligence Brief grid */
  .intel-brief {
    margin-top: 16px;
    padding: 36px 32px 32px;
    background: rgba(8,8,12,0.5);
    border: 1px solid rgba(220,38,38,0.18);
    border-radius: 6px;
    position: relative;
  }
  .intel-brief::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--red), transparent);
  }
  .intel-brief-header {
    text-align: center;
    margin-bottom: 28px;
  }
  .intel-brief-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
  }
  .intel-brief-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 6px 0 0;
  }
  .intel-brief-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
  }
  .intel-brief-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 14px 8px;
    border-right: 1px solid rgba(255,255,255,0.05);
  }
  .intel-brief-stat:last-child { border-right: none; }
  .intel-brief-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 18px rgba(220,38,38,0.18);
  }
  .intel-brief-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.42);
    line-height: 1.4;
  }

  @media (max-width: 720px) {
    .intel-brief-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 14px 0; }
    .intel-brief-stat:last-child { border-bottom: none; }
  }

  /* Bottom CTA */
  .ff-bottom-cta-wrap {
    text-align: center;
    padding: 24px 0 0;
  }
  .ff-bottom-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(240,237,232,0.4);
    margin: 0 0 24px;
  }
  .ff-bottom-cta-wrap .ff-unlock-btn {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Member state */
  .ff-locked-state { display: block; }
  .ff-member-state { display: none; text-align: center; padding: 48px 0 32px; }
  body.is-ff-member .ff-locked-state { display: none; }
  body.is-ff-member .ff-member-state { display: block; }
  /* Loading state — hide both locked/member until auth resolves */
  body.ff-auth-loading .ff-locked-state,
  body.ff-auth-loading .ff-member-state { opacity: 0; transition: opacity 0.3s ease; }
  body:not(.ff-auth-loading) .ff-locked-state,
  body:not(.ff-auth-loading) .ff-member-state { transition: opacity 0.3s ease; }
  .ff-member-active-label {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: #22c55e;
    margin-bottom: 16px;
  }
  .ff-member-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 28px;
  }
  .ff-open-files-btn {
    display: inline-block;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 8px;
    padding: 16px 36px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .ff-open-files-btn:hover { opacity: 0.9; transform: translateY(-1px); }

  @media (max-width: 700px) {
    .ff-free-grid { grid-template-columns: 1fr; }
    .ff-tab-title { font-size: 30px; }
    .ff-pc-price { font-size: 42px; }
    .ff-tab-price-card { padding: 28px 24px; }
  }

  .tabs-section.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .tabs-section.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 860px) {
    .vid-cat-grid { grid-template-columns: 1fr; }
    .vid-cat-grid > a:last-child:nth-child(3n+1) { grid-column: auto; max-width: 100%; justify-self: auto; }
    .vid-stats-bar { gap: 0; }
    .vid-stat-item { padding: 16px 20px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .file-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .press-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .press-all-grid { grid-template-columns: repeat(2, 1fr); }
    .press-outlet-grid { grid-template-columns: repeat(2, 1fr); }
    .sub-pricing-section { max-width: 100%; }
  }

  @media (max-width: 680px) {
    .tabs-section-inner { padding: 24px 20px 0; }
    .tabs-nav-cta { display: none; }
    .tab-btn { padding: 10px 12px; font-size: 11px; letter-spacing: 0.15em; }
    .tab-btn-ff { padding-left: 26px; }
    .tab-card { padding: 40px 20px 60px; }
    .panel-headline { font-size: 22px; }
    .panel-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .vid-hero-title { font-size: 32px; }
    .vid-cat-name { font-size: 26px; }
    .vid-cat-number { font-size: 72px; }
    .vid-cat-card { padding: 28px 28px; }
    .cat-grid { grid-template-columns: 1fr; }
    .press-featured-grid { grid-template-columns: 1fr; }
    .press-all-grid { grid-template-columns: 1fr; }
    .press-outlet-grid { grid-template-columns: 1fr; }
    .press-contact-strip { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
    .file-preview-grid { grid-template-columns: 1fr; }
    .sub-pricing-row { grid-template-columns: 1fr; }
    .sub-pricing-section { padding: 0 0 40px; }
    .price-card { padding: 32px 24px; }
    .sub-hero-title { font-size: 32px; }
    .panel-links { flex-direction: column; gap: 12px; }
  }

  /* YouTube player — page-specific overrides (base in shared.css) */
  /* Inline variant inside endorsement cards / truth-social — fills parent 16:9 wrapper */
  .endorse-embed-video .yt-player,
  .truth-social-video .yt-player { position: absolute; inset: 0; aspect-ratio: auto; }

  /* ============================================================
     TRUTH SOCIAL QUOTE CARD
     Dark card with subtle red border glow below the hero.
     ============================================================ */
  .truth-social-section {
    padding: 56px 24px 40px;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .truth-social-card {
    position: relative;
    width: 100%;
    max-width: 760px;
    background: linear-gradient(180deg, rgba(18,18,24,0.85) 0%, rgba(12,12,18,0.95) 100%);
    border: 1px solid rgba(163,24,24,0.38);
    border-radius: 10px;
    padding: 34px 40px 30px;
    box-shadow:
      0 0 0 1px rgba(163,24,24,0.12),
      0 0 32px rgba(163,24,24,0.22),
      0 0 72px rgba(163,24,24,0.08),
      inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .truth-social-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(163,24,24,0.28), transparent 45%, transparent 55%, rgba(163,24,24,0.28));
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
  }

  .truth-social-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
  }

  .truth-social-eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0;
  }

  .truth-social-quote {
    font-family: var(--serif);
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--white);
    margin: 0 0 22px;
    font-style: italic;
    text-shadow: 0 1px 18px rgba(163,24,24,0.15);
  }

  .truth-social-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
    margin-bottom: 18px;
  }
  .truth-social-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
  }

  .truth-social-attribution {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .truth-social-handle {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(240,237,232,0.55);
  }

  .truth-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(163,24,24,0.55);
    border-radius: 4px;
    background: rgba(163,24,24,0.06);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .truth-social-link:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: translateX(2px);
  }

  @media (max-width: 680px) {
    .truth-social-section { padding: 40px 18px 28px; }
    .truth-social-card { padding: 26px 22px 22px; }
    .truth-social-attribution { align-items: flex-start; flex-direction: column; gap: 14px; }
  }

  /* ── Hero "Explore The Network" CTA vibrant red glow ─────────────────────── */
  .hero-ctas .btn-primary {
    position: relative;
    background: linear-gradient(135deg, #ff2020 0%, #e02020 55%, #a31818 100%) !important;
    border-color: rgba(255,60,60,0.9) !important;
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255,80,80,0.8), 0 1px 2px rgba(0,0,0,0.6);
    box-shadow:
      0 0 0 1px rgba(255,60,60,0.7),
      0 0 22px rgba(224,32,32,0.85),
      0 0 52px rgba(255,40,40,0.55),
      0 0 96px rgba(255,40,40,0.3),
      0 6px 22px rgba(0,0,0,0.5);
    animation: heroPrimaryGlow 2.2s ease-in-out infinite;
  }
  .hero-ctas .btn-primary::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 4px;
    pointer-events: none;
    box-shadow: 0 0 38px 6px rgba(255,40,40,0.55);
    opacity: 0.7;
    animation: heroPrimaryRing 2.2s ease-in-out infinite;
  }
  .hero-ctas .btn-primary:hover {
    background: linear-gradient(135deg, #ff3030 0%, #ff2020 55%, #c01818 100%) !important;
    border-color: rgba(255,80,80,1) !important;
    animation-play-state: paused;
    transform: translateY(-2px) scale(1.04);
    box-shadow:
      0 0 0 1px rgba(255,80,80,1),
      0 0 34px rgba(255,40,40,1),
      0 0 72px rgba(255,40,40,0.7),
      0 0 120px rgba(255,40,40,0.4),
      0 8px 26px rgba(0,0,0,0.55);
  }
  @keyframes heroPrimaryGlow {
    0%, 100% {
      box-shadow:
        0 0 0 1px rgba(255,60,60,0.55),
        0 0 18px rgba(224,32,32,0.7),
        0 0 42px rgba(255,40,40,0.4),
        0 0 82px rgba(255,40,40,0.22),
        0 6px 22px rgba(0,0,0,0.5);
    }
    50% {
      box-shadow:
        0 0 0 1px rgba(255,80,80,0.95),
        0 0 30px rgba(255,50,50,1),
        0 0 68px rgba(255,40,40,0.75),
        0 0 120px rgba(255,40,40,0.42),
        0 6px 22px rgba(0,0,0,0.5);
    }
  }
  @keyframes heroPrimaryRing {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50%      { opacity: 0.9;  transform: scale(1.04); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-ctas .btn-primary,
    .hero-ctas .btn-primary::after { animation: none; }
  }

  /* ── Persistent homepage sign-in alert pill ──────────────────────────────── */
  #site-signin.signin-homepage {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    background: rgba(163,24,24,0.18);
    border-color: rgba(220,38,38,0.8);
    box-shadow:
      0 4px 16px rgba(0,0,0,0.5),
      0 0 22px rgba(220,38,38,0.55),
      0 0 44px rgba(220,38,38,0.25);
    animation: signinAlertPulse 2.2s ease-in-out infinite;
  }
  #site-signin.signin-homepage:hover {
    animation-play-state: paused;
    background: var(--red);
    border-color: var(--red);
    box-shadow:
      0 6px 22px rgba(0,0,0,0.55),
      0 0 34px rgba(220,38,38,0.85),
      0 0 70px rgba(220,38,38,0.45);
  }
  @keyframes signinAlertPulse {
    0%, 100% {
      box-shadow:
        0 4px 16px rgba(0,0,0,0.5),
        0 0 18px rgba(220,38,38,0.45),
        0 0 36px rgba(220,38,38,0.18);
    }
    50% {
      box-shadow:
        0 4px 16px rgba(0,0,0,0.5),
        0 0 30px rgba(220,38,38,0.85),
        0 0 62px rgba(220,38,38,0.38);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    #site-signin.signin-homepage { animation: none; }
  }
