/* nrm-pages.css — page-specific overrides */

/* ── Platform pages ── */
.nrm-arch-svg-wrap {
  max-width: 860px;
  margin: 0 auto;
}

/* ── Benchmarks table enhancements ── */
.nrm-bench-note {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  color: var(--nrm-fg-dark-muted);
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--nrm-accent-on-dark);
}

/* ── Research page enhancements ── */
.nrm-research-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.nrm-research-approach__pillar {
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  padding: 1.75rem;
}
.nrm-research-approach__pillar-label {
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nrm-accent-on-dark);
  margin-bottom: 0.75rem;
}
.nrm-research-approach__pillar-title {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 0.75rem;
}
.nrm-research-approach__pillar-body {
  font-size: 0.875rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.65;
}

/* ── About page ── */
.nrm-about-mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
.nrm-about-mission__statement {
  font-family: var(--nrm-font-mono);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--nrm-fg-light-1);
  line-height: 1.55;
  border-left: 3px solid var(--nrm-accent-on-light);
  padding-left: 1.5rem;
}
.nrm-about-story__para {
  font-size: 1.0625rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.7;
  margin-bottom: 1rem;
}
/* ── "How we work" — compact chip/tag layout ── */
.nrm-about-values {
  background: var(--nrm-bg-dark, #080F1A);
  border-radius: var(--nrm-radius-lg);
  padding: 1.5rem 2rem;
  margin-top: 1rem;
}
.nrm-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.nrm-value-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--nrm-bg-dark-card, #111E2E);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  white-space: nowrap;
}
.nrm-value-item__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--nrm-accent-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.625rem;
}
.nrm-value-item__num {
  display: none;
}
.nrm-value-item__title {
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--nrm-fg-dark-1, #E8F0F8);
}
.nrm-value-item__body,
.nrm-value-item__desc {
  display: none;
}

/* ── Blog article header ── */
.nrm-article-header {
  padding: calc(64px + 3rem) 0 3rem;
  background: var(--nrm-bg-light);
}
.nrm-article-header__inner {
  max-width: var(--nrm-container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.nrm-article-header h1 {
  font-family: var(--nrm-font-mono);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--nrm-fg-light-1);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 820px;
}
.nrm-article-cover-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 1.5rem;
}
.nrm-article-cover-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--nrm-radius-lg);
}

/* Related articles */
.nrm-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nrm-grid-gap);
}

/* ── Docs pages ── */
.nrm-docs-step {
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--nrm-border-light);
  position: relative;
}
.nrm-docs-step::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nrm-accent-on-light);
}
.nrm-docs-step__num {
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nrm-accent-on-light);
  margin-bottom: 0.5rem;
}
.nrm-docs-step__title {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.625rem;
}
.nrm-docs-step__body {
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

/* Hardware compatibility table — light variant */
.nrm-hw-table-wrap {
  overflow-x: auto;
  border-radius: var(--nrm-radius-lg);
  border: 1px solid var(--nrm-border-light);
}
.nrm-hw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.nrm-hw-table th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--nrm-bg-light);
  color: var(--nrm-fg-light-2);
  border-bottom: 1px solid var(--nrm-border-light);
}
.nrm-hw-table td {
  padding: 0.875rem 1.25rem;
  color: var(--nrm-fg-light-2);
  border-bottom: 1px solid var(--nrm-border-light);
}
.nrm-hw-table tr:last-child td { border-bottom: none; }
.nrm-hw-table td:first-child {
  font-family: var(--nrm-font-mono);
  font-weight: 600;
  color: var(--nrm-fg-light-1);
}
.nrm-hw-chip-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}
.nrm-hw-chip-status--supported {
  background: rgba(39, 201, 63, 0.1);
  color: #27C93F;
}
.nrm-hw-chip-status--beta {
  background: rgba(255, 189, 46, 0.1);
  color: #FFBD2E;
}
.nrm-hw-chip-status--planned {
  background: rgba(91, 203, 224, 0.1);
  color: #5BCBE0;
}

/* ── API Reference ── */
.nrm-api-endpoint {
  margin-bottom: 2.5rem;
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-lg);
  overflow: hidden;
}
.nrm-api-endpoint__header {
  padding: 1rem 1.5rem;
  background: var(--nrm-bg-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--nrm-border-light);
}
.nrm-api-method {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
.nrm-api-method--get  { background: rgba(39, 201, 63, 0.15); color: #27C93F; }
.nrm-api-method--post { background: rgba(91, 203, 224, 0.15); color: #5BCBE0; }
.nrm-api-endpoint__path {
  font-family: var(--nrm-font-mono);
  font-size: 0.875rem;
  color: var(--nrm-fg-light-1);
}
.nrm-api-endpoint__body {
  padding: 1.5rem;
}
.nrm-api-endpoint__desc {
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ── Spike decoration SVG ── */
.nrm-spike-deco {
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
}

/* ── Two-col problem framing ── */
.nrm-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.nrm-two-col__title {
  font-family: var(--nrm-font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 1rem;
}
.nrm-two-col__body {
  font-size: 0.9375rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.7;
}

/* ── Runtime features ── */
.nrm-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nrm-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.nrm-feature-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--nrm-accent-on-dark);
  margin-top: 0.125rem;
}
.nrm-feature-item__title {
  font-family: var(--nrm-font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 0.25rem;
}
.nrm-feature-item__desc {
  font-size: 0.875rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.6;
}

/* ── Light context feature list ── */
.nrm-section--light .nrm-feature-item__icon,
.nrm-section--white .nrm-feature-item__icon { color: var(--nrm-accent-on-light); }
.nrm-section--light .nrm-feature-item__title,
.nrm-section--white .nrm-feature-item__title { color: var(--nrm-fg-light-1); }
.nrm-section--light .nrm-feature-item__desc,
.nrm-section--white .nrm-feature-item__desc { color: var(--nrm-fg-light-2); }

/* ══════════════════════════════════════════════════════════════
   STATUS PAGE
   ══════════════════════════════════════════════════════════════ */
.nrm-status-overall {
  margin-top: 1.5rem;
}
.nrm-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-1);
}
.nrm-status-indicator--operational {
  color: #16a34a;
}
.nrm-status-indicator--operational i {
  font-size: 1.25rem;
  color: #16a34a;
}
.nrm-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.nrm-status-card {
  background: #fff;
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-lg);
  padding: 1.5rem;
}
.nrm-status-card--operational {
  border-left: 3px solid #16a34a;
}
.nrm-status-card--degraded {
  border-left: 3px solid #d97706;
}
.nrm-status-card--outage {
  border-left: 3px solid #dc2626;
}
.nrm-status-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.625rem;
}
.nrm-status-card__name {
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
}
.nrm-status-card__desc {
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.nrm-status-badge {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nrm-status-badge--operational {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.nrm-status-badge--degraded {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}
.nrm-status-badge--outage {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}
.nrm-status-history {
  margin-top: 0.75rem;
}
.nrm-status-history__bars {
  display: flex;
  gap: 2px;
  height: 28px;
  align-items: stretch;
}
.nrm-history-bar {
  flex: 1;
  border-radius: 2px;
  display: block;
}
.nrm-history-bar--up      { background: #16a34a; opacity: 0.7; }
.nrm-history-bar--degraded { background: #d97706; opacity: 0.9; }
.nrm-history-bar--outage  { background: #dc2626; opacity: 0.9; }
.nrm-status-history__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.375rem;
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  color: var(--nrm-fg-light-3);
}
.nrm-incident-log {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nrm-incident {
  background: #fff;
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-lg);
  padding: 1.5rem;
}
.nrm-incident--resolved { border-left: 3px solid #16a34a; }
.nrm-incident--ongoing  { border-left: 3px solid #d97706; }
.nrm-incident__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}
.nrm-incident__status {
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.nrm-incident__status--resolved {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.nrm-incident__status--ongoing {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}
.nrm-incident__date {
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-3);
}
.nrm-incident__title {
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.5rem;
}
.nrm-incident__body {
  font-size: 0.875rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   AUTH / LOGIN PAGES
   ══════════════════════════════════════════════════════════════ */
.nrm-auth-page {
  min-height: 100vh;
  background: var(--nrm-bg-dark);
}
.nrm-auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.nrm-auth-layout--centered {
  grid-template-columns: 1fr;
  justify-items: center;
}
.nrm-auth-aside {
  background: var(--nrm-bg-dark);
  border-right: 1px solid var(--nrm-border-dark);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
}
.nrm-auth-aside__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 480px;
}
.nrm-auth-aside__logo {
  display: inline-block;
  margin-bottom: 3rem;
}
.nrm-auth-aside__content {
  flex: 1;
}
.nrm-auth-aside__label {
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nrm-accent-on-dark);
  margin-bottom: 1rem;
}
.nrm-auth-aside__headline {
  font-family: var(--nrm-font-mono);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--nrm-fg-dark-1);
  line-height: 1.3;
  margin-bottom: 2rem;
}
.nrm-auth-aside__terminal {
  margin-bottom: 2rem;
}
.nrm-term--auth .nrm-term__body {
  font-size: 0.8125rem;
  line-height: 1.45;
}
.nrm-auth-aside__quote {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--nrm-border-dark);
}
.nrm-auth-aside__quote p {
  font-size: 0.875rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.625rem;
}
.nrm-auth-aside__quote-attr {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  color: var(--nrm-fg-dark-muted);
  font-style: normal !important;
}
.nrm-auth-aside__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.nrm-auth-aside__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.5;
}
.nrm-auth-aside__check-icon {
  color: var(--nrm-accent-on-dark);
  font-family: var(--nrm-font-mono);
  font-weight: 600;
  flex-shrink: 0;
}
.nrm-auth-aside__stat-strip {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--nrm-border-dark);
  margin-top: auto;
}
.nrm-auth-aside__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nrm-auth-aside__stat-value {
  font-family: var(--nrm-font-mono);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--nrm-accent-on-dark);
}
.nrm-auth-aside__stat-label {
  font-size: 0.75rem;
  color: var(--nrm-fg-dark-muted);
  line-height: 1.4;
}
.nrm-auth-panel {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nrm-auth-panel--solo {
  width: 100%;
  max-width: 480px;
  padding: clamp(2rem, 5vw, 4rem);
}
.nrm-auth-panel__inner {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.nrm-auth-logo-link {
  display: inline-block;
  margin-bottom: 2.5rem;
}
.nrm-auth-logo-link img {
  filter: brightness(0) invert(0);
}
.nrm-auth-form-wrap {
  width: 100%;
  max-width: 400px;
}
.nrm-auth-form-wrap--narrow {
  max-width: 360px;
}
.nrm-auth-form-wrap__header {
  margin-bottom: 2rem;
}
.nrm-auth-form-wrap__title {
  font-family: var(--nrm-font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0d1a2b;
  margin-bottom: 0.5rem;
}
.nrm-auth-form-wrap__sub {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.55;
}
.nrm-auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nrm-form-group {
  margin-bottom: 1.25rem;
}
.nrm-form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.nrm-form-row--two .nrm-form-group {
  margin-bottom: 0;
}
.nrm-form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.375rem;
}
.nrm-form-label__link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #007A6E;
  text-decoration: none;
}
.nrm-form-label__link:hover { text-decoration: underline; }
.nrm-form-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  font-family: var(--nrm-font-body);
  color: #0d1a2b;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: var(--nrm-radius-md);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.nrm-form-input:focus {
  border-color: #007A6E;
  box-shadow: 0 0 0 3px rgba(0, 122, 110, 0.12);
  background: #fff;
}
.nrm-form-textarea {
  resize: vertical;
  min-height: 100px;
}
.nrm-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 10px 6px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.nrm-form-select option {
  background: #fff;
  color: #0d1a2b;
}
.nrm-form-input::placeholder,
.nrm-form-textarea::placeholder,
.nrm-form-select::placeholder {
  color: #9ca3af;
}
.nrm-btn--full {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}
.nrm-auth-notice {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--nrm-radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.nrm-auth-notice p {
  font-size: 0.875rem;
  color: #78350f;
  line-height: 1.5;
}
.nrm-auth-notice a { color: #007A6E; }
.nrm-auth-notice--success {
  background: #ecfdf5;
  border-color: #86efac;
}
.nrm-auth-notice--success p { color: #14532d; }
.nrm-auth-form-wrap__footer {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1.25rem;
}
.nrm-auth-form-wrap__footer a { color: #007A6E; }
.nrm-auth-form-wrap__legal {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}
.nrm-auth-form-wrap__legal a { color: #007A6E; }
.nrm-auth-success {
  text-align: center;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.nrm-auth-success__icon { margin-bottom: 0.5rem; }
.nrm-auth-success__title {
  font-family: var(--nrm-font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d1a2b;
}
.nrm-auth-success__body {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: 360px;
}

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════════════════════ */
.nrm-legal-page {
  padding: calc(64px + 2.5rem) 0 4rem;
  background: var(--nrm-bg-light);
}
.nrm-container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.legal-article {
  color: var(--nrm-fg-light-2);
}
.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--nrm-border-light);
}
.legal-header h1 {
  font-family: var(--nrm-font-mono);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.625rem;
}
.legal-meta {
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-3);
  line-height: 1.6;
}
.legal-article section {
  margin-bottom: 2.25rem;
}
.legal-article h2 {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.875rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--nrm-border-light);
}
.legal-article h3 {
  font-family: var(--nrm-font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-article p {
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.legal-article ul,
.legal-article ol {
  padding-left: 1.375rem;
  margin-bottom: 0.875rem;
}
.legal-article li {
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.65;
  margin-bottom: 0.375rem;
}
.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.7;
}
.legal-article a {
  color: var(--nrm-accent-on-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-article a:hover { color: var(--nrm-fg-light-1); }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
}
.legal-table th {
  text-align: left;
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nrm-fg-light-3);
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--nrm-border-light);
  background: var(--nrm-bg-light);
}
.legal-table td {
  padding: 0.625rem 1rem;
  color: var(--nrm-fg-light-2);
  border-bottom: 1px solid var(--nrm-border-light);
}
.legal-table tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nrm-research-approach { grid-template-columns: 1fr; }
  .nrm-about-mission { grid-template-columns: 1fr; gap: 2rem; }
  .nrm-values-grid { grid-template-columns: 1fr; }
  .nrm-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .nrm-related-grid { grid-template-columns: repeat(2, 1fr); }
  .nrm-status-grid { grid-template-columns: 1fr; }
  .nrm-auth-layout {
    grid-template-columns: 1fr;
  }
  .nrm-auth-aside { display: none; }
  .nrm-auth-panel { min-height: 100vh; }
}
@media (max-width: 768px) {
  .nrm-values-grid { grid-template-columns: 1fr; }
  .nrm-related-grid { grid-template-columns: 1fr; }
  .nrm-form-row--two { grid-template-columns: 1fr; }
}
