.nw-page { padding-bottom: 4rem; }
.nw-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 2.5rem;
  overflow: hidden;
}
.nw-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 90% 10%, rgba(0,102,255,0.16), transparent 55%),
    radial-gradient(ellipse 45% 45% at 5% 90%, rgba(21,181,170,0.1), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  pointer-events: none;
}
.nw-hero .container { position: relative; z-index: 1; }
.nw-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  max-width: 18ch;
  margin-bottom: 0.85rem;
}
.nw-lead {
  font-size: 1.08rem;
  color: var(--platinum);
  max-width: 40rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.nw-status {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  font-family: var(--fm); font-size: 0.75rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--mist);
}
.nw-status strong { color: var(--teal); font-weight: 600; }
.nw-live {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--green);
}
.nw-live::before {
  content: '';
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(48,209,88,0.2);
}

.nw-board {
  margin-top: 0.5rem;
}
.nw-toolbar {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.nw-filters { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.nw-chip {
  font-size: 0.78rem; font-weight: 600; padding: 0.4rem 0.75rem;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.16);
  background: transparent; color: var(--platinum); cursor: pointer;
  font-family: var(--fb);
}
.nw-chip:hover { border-color: var(--teal); color: var(--ivory); }
.nw-chip.active {
  border-color: var(--teal);
  background: rgba(21,181,170,0.14);
  color: var(--teal);
}
.nw-search {
  flex: 1 1 14rem; min-width: 0; max-width: 22rem;
  padding: 0.7rem 1rem;
  background: var(--surface);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  color: var(--ivory); font-size: 0.95rem; font-family: var(--fb);
  outline: none;
}
.nw-search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.2);
}

.nw-legend {
  display: flex; flex-wrap: wrap; gap: 0.85rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.82rem; color: var(--mist);
}
.nw-legend span { color: var(--platinum); }

.nw-table {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
}
.nw-head, .nw-row {
  display: grid;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1.1rem;
  align-items: start;
}
@media (min-width: 900px) {
  .nw-head, .nw-row {
    grid-template-columns: 6.5rem 5.5rem 1fr auto;
  }
}
.nw-head {
  background: #141414;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--fm); font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mist); font-weight: 600;
}
.nw-row {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; color: inherit;
  transition: background 0.15s;
}
.nw-row:last-child { border-bottom: 0; }
.nw-row:hover { background: rgba(255,255,255,0.03); }
.nw-row.hidden { display: none; }
.nw-date {
  font-family: var(--fm); font-size: 0.78rem; color: var(--teal);
  font-weight: 600; white-space: nowrap;
}
.nw-tag {
  font-family: var(--fm); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.06em; padding: 0.2rem 0.45rem;
  border-radius: 3px; width: fit-content;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--platinum);
}
.nw-tag.bsi, .nw-tag.cert { border-color: rgba(57,132,242,0.45); color: #7EB6FF; }
.nw-tag.bfdi { border-color: rgba(21,181,170,0.45); color: var(--teal); }
.nw-tag.gdd, .nw-tag.dsk { border-color: rgba(167,139,250,0.4); color: #C4B5FD; }
.nw-title {
  font-family: var(--fd); font-size: 1rem; font-weight: 600;
  color: var(--ivory); line-height: 1.35; margin: 0 0 0.35rem;
}
.nw-summary {
  margin: 0; font-size: 0.88rem; color: var(--mist); line-height: 1.55;
}
.nw-open {
  font-size: 0.85rem; font-weight: 600; color: var(--teal); white-space: nowrap;
}
.nw-row:hover .nw-open { color: var(--ivory); }

.nw-empty {
  display: none; padding: 2rem; text-align: center; color: var(--mist);
}
.nw-empty.show { display: block; }

.nw-note {
  margin-top: 1.5rem;
  font-size: 0.85rem; color: var(--smoke); line-height: 1.6;
}
.nw-cta {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--edge);
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.nw-cta p { margin: 0; color: var(--platinum); max-width: 30rem; }
.nw-cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

@media (max-width: 899px) {
  .nw-head { display: none; }
  .nw-row { grid-template-columns: auto 1fr; }
  .nw-open { grid-column: 1 / -1; }
}
