body { padding-top: var(--nav-h); }

    /* ── HERO ─────────────────────────────────────── */
    .hero {
      padding: 52px 0 0;
      border-bottom: 1px solid var(--border);
    }


    .hero-eyebrow {
      font-family: var(--font-head);
      font-size: 11px; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--red);
      display: inline-flex; align-items: center; gap: 8px;
      margin-bottom: 18px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 18px; height: 2px;
      background: var(--red);
      display: block;
    }

    .hero-headline {
      font-family: var(--font-head);
      font-size: clamp(32px, 4.5vw, 60px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.035em;
      color: var(--text);
      margin-bottom: 18px;
    }
    .hero-headline em {
      font-style: italic;
      font-family: var(--font-body);
      color: var(--red);
    }

    .hero-sub {
      font-size: 16px;
      color: var(--text-2);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 28px;
    }

    .hero-cta-row {
      display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .btn-primary-wu {
      font-family: var(--font-head);
      font-size: 13px; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      background: var(--red); color: #fff;
      border: none; border-radius: var(--r);
      padding: 12px 24px;
      cursor: pointer;
      transition: all .15s;
      display: inline-flex; align-items: center; gap: 7px;
      text-decoration: none;
    }
    .btn-primary-wu:hover { background: #c42e17; color:#fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232,57,29,.3); }

    .btn-ghost-wu {
      font-family: var(--font-head);
      font-size: 13px; font-weight: 600;
      letter-spacing: .04em;
      color: var(--text-2);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 11px 22px;
      background: none;
      cursor: pointer;
      transition: all .15s;
      display: inline-flex; align-items: center; gap: 7px;
      text-decoration: none;
    }
    .btn-ghost-wu:hover { border-color: var(--border-2); color: var(--text); background: var(--bg-2); }

    .hero-stats {
      display: flex; gap: 32px; flex-wrap: wrap;
    }
    .hero-stat-num {
      font-family: var(--font-head);
      font-size: 22px; font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
      line-height: 1;
    }
    .hero-stat-label {
      font-family: var(--font-head);
      font-size: 11px; font-weight: 500;
      color: var(--text-3);
      margin-top: 3px;
    }

    /* Hero right — featured card stack */
    .hero-right {
      display: flex; flex-direction: column;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-bottom: none;
      border-radius: var(--r-lg) var(--r-lg) 0 0;
      overflow: hidden;
      height: 100%;
    }

    .hero-card {
      background: var(--bg-card);
      padding: 22px 24px;
      cursor: pointer;
      transition: background .15s;
      text-decoration: none; color: inherit;
      display: flex; flex-direction: column; gap: 8px;
    }
    .hero-card:hover { background: var(--bg-2); color: inherit; }
    .hero-card:first-child {
      background: var(--inv-bg);
      transition: background .25s var(--ease);
    }
    .hero-card:first-child:hover { background: #1d1d1b; }

    .hero-card-title {
      font-family: var(--font-head);
      font-size: 16px; font-weight: 700;
      line-height: 1.3;
      color: var(--text);
    }
    .hero-card:first-child .hero-card-title { color: var(--inv-text); transition: color .25s var(--ease); }
    .hero-card:first-child .hero-card-meta  { color: rgba(255,255,255,.3); }

    .hero-card-meta {
      font-family: var(--font-head);
      font-size: 11px; color: var(--text-3);
      display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    }

    /* ── CATEGORY CARDS (5 focus areas) ─────────────── */
    .cat-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 24px;
      cursor: pointer;
      transition: all .2s var(--ease);
      text-decoration: none; color: inherit;
      display: flex; flex-direction: column; gap: 10px;
      height: 100%;
    }
    .cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-2); color: inherit; }

    .cat-card-icon {
      width: 44px; height: 44px;
      border-radius: var(--r);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }

    .cat-card-title {
      font-family: var(--font-head);
      font-size: 15px; font-weight: 700;
      color: var(--text);
    }

    .cat-card-count {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-3);
      margin-top: auto;
    }

    /* ── FEATURED NEWS GRID ──────────────────────── */
    .news-grid-main {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .news-cell {
      background: var(--bg-card);
      padding: 24px;
      cursor: pointer;
      transition: background .15s;
      text-decoration: none; color: inherit;
      display: flex; flex-direction: column; gap: 10px;
    }
    .news-cell:hover { background: var(--bg-2); color: inherit; }
    .news-cell.span2 { grid-column: span 2; background: var(--inv-bg); transition: background .25s var(--ease); }
    .news-cell.span2:hover { background: #1d1d1b; }

    .nc-headline {
      font-family: var(--font-head);
      font-size: 17px; font-weight: 700;
      line-height: 1.35;
      color: var(--text);
    }
    .news-cell.span2 .nc-headline { font-size: 22px; color: var(--inv-text); transition: color .25s var(--ease); }

    .nc-summary {
      font-size: 13px;
      line-height: 1.65;
      color: var(--text-2);
    }
    .news-cell.span2 .nc-summary { color: rgba(240,239,233,.45); }

    .nc-footer {
      display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
      margin-top: auto;
    }
    .nc-source {
      font-family: var(--font-head);
      font-size: 10px; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--text-3);
    }
    .news-cell.span2 .nc-source { color: rgba(255,255,255,.25); }
    .news-cell.span2 .wu-bell { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.18); }

    /* ── ALERT BANNER ───────────────────────────── */
    .alert-banner {
      background: var(--inv-bg);
      border-radius: var(--r-lg);
      padding: 40px 48px;
      display: flex; align-items: center; justify-content: space-between; gap: 32px;
      flex-wrap: wrap;
      transition: background .25s var(--ease);
    }

    .alert-banner-title {
      font-family: var(--font-head);
      font-size: clamp(22px, 3vw, 36px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--inv-text);
      transition: color .25s var(--ease);
    }
    .alert-banner-title span { color: var(--red); }

    .alert-banner-sub {
      font-size: 14px;
      color: rgba(240,239,233,.4);
      margin-top: 6px;
    }

    /* ── HOW IT WORKS ───────────────────────────── */
    .step-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 28px;
      height: 100%;
      transition: border-color .2s;
    }
    .step-card:hover { border-color: var(--border-2); }

    .step-num-badge {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--red-10);
      color: var(--red);
      font-family: var(--font-mono);
      font-size: 13px; font-weight: 500;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }

    .step-title {
      font-family: var(--font-head);
      font-size: 16px; font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    @media (max-width: 991px) {
      .news-grid-main { grid-template-columns: 1fr 1fr; }
      .news-cell.span2 { grid-column: span 2; }
    }
    @media (max-width: 767px) {
      .hero { padding: 32px 0 0; }
      .news-grid-main { grid-template-columns: 1fr; }
      .news-cell.span2 { grid-column: span 1; }
      .alert-banner { padding: 28px 24px; }
      .hero-right { height: auto; margin-top: 32px; }
    }