/* nrm-components.css — reusable components */

/* ═══════════════════════════════════════
   CARDS
   ═══════════════════════════════════════ */
.nrm-card {
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  padding: var(--nrm-card-pad);
}
.nrm-card--light {
  background: var(--nrm-bg-white);
  border-color: var(--nrm-border-light);
}
.nrm-card--light-alt {
  background: var(--nrm-bg-light);
  border-color: var(--nrm-border-light);
}
.nrm-card__label {
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.nrm-card .nrm-card__label       { color: var(--nrm-accent-on-dark); }
.nrm-card--light .nrm-card__label { color: var(--nrm-accent-on-light); }

.nrm-card__title {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}
.nrm-card .nrm-card__title        { color: var(--nrm-fg-dark-1); }
.nrm-card--light .nrm-card__title  { color: var(--nrm-fg-light-1); }

.nrm-card__body {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.nrm-card .nrm-card__body        { color: var(--nrm-fg-dark-2); }
.nrm-card--light .nrm-card__body  { color: var(--nrm-fg-light-2); }

.nrm-card__icon {
  width: 36px;
  height: 36px;
  color: var(--nrm-accent-on-dark);
  margin-bottom: 1rem;
}
.nrm-card--light .nrm-card__icon { color: var(--nrm-accent-on-light); }

/* Card grid layouts */
.nrm-card-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nrm-grid-gap);
}
.nrm-card-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--nrm-grid-gap);
}
.nrm-card-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--nrm-grid-gap);
}

/* ═══════════════════════════════════════
   VALUE PROOF STRIP
   ═══════════════════════════════════════ */
.nrm-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  overflow: hidden;
}
.nrm-proof-strip__item {
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--nrm-border-dark);
  text-align: center;
}
.nrm-proof-strip__item:last-child { border-right: none; }
.nrm-proof-strip__value {
  font-family: var(--nrm-font-mono);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--nrm-accent-on-dark);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.nrm-proof-strip__desc {
  font-size: 0.8125rem;
  color: var(--nrm-fg-dark-muted);
  font-family: var(--nrm-font-mono);
}

/* ═══════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════ */
.nrm-section-header {
  margin-bottom: 3rem;
}
.nrm-section-header--center {
  text-align: center;
}
.nrm-section-header--center .nrm-section-header__lede {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.nrm-section-header__eyebrow {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.nrm-section--dark .nrm-section-header__eyebrow,
.nrm-section--dark-alt .nrm-section-header__eyebrow,
.nrm-section--dark-card .nrm-section-header__eyebrow { color: var(--nrm-accent-on-dark); }
.nrm-section--light .nrm-section-header__eyebrow,
.nrm-section--light-alt .nrm-section-header__eyebrow,
.nrm-section--white .nrm-section-header__eyebrow     { color: var(--nrm-accent-on-light); }

.nrm-section-header__title {
  font-family: var(--nrm-font-mono);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}
.nrm-section--dark .nrm-section-header__title,
.nrm-section--dark-alt .nrm-section-header__title,
.nrm-section--dark-card .nrm-section-header__title { color: var(--nrm-fg-dark-1); }
.nrm-section--light .nrm-section-header__title,
.nrm-section--light-alt .nrm-section-header__title,
.nrm-section--white .nrm-section-header__title     { color: var(--nrm-fg-light-1); }

.nrm-section-header__lede {
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 640px;
}
.nrm-section--dark .nrm-section-header__lede,
.nrm-section--dark-alt .nrm-section-header__lede,
.nrm-section--dark-card .nrm-section-header__lede { color: var(--nrm-fg-dark-2); }
.nrm-section--light .nrm-section-header__lede,
.nrm-section--light-alt .nrm-section-header__lede,
.nrm-section--white .nrm-section-header__lede     { color: var(--nrm-fg-light-2); }

/* ═══════════════════════════════════════
   PIPELINE STEPS (how-it-works)
   ═══════════════════════════════════════ */
.nrm-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.nrm-pipeline__step {
  padding: 1.5rem 1.25rem;
  position: relative;
  text-align: center;
}
.nrm-pipeline__step::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -1.25rem;
  width: 2.5rem;
  height: 1px;
  background: var(--nrm-accent-on-dark);
  opacity: 0.4;
}
.nrm-pipeline__step:last-child::after { display: none; }
.nrm-pipeline__num {
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  color: var(--nrm-accent-on-dark);
  margin-bottom: 0.625rem;
}
.nrm-pipeline__name {
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 0.5rem;
}
.nrm-pipeline__note {
  font-size: 0.8125rem;
  color: var(--nrm-fg-dark-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════ */
.nrm-table-wrap {
  overflow-x: auto;
  border-radius: var(--nrm-radius-lg);
  border: 1px solid var(--nrm-border-dark);
}
.nrm-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--nrm-font-mono);
  font-size: 0.875rem;
}
.nrm-table th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--nrm-border-dark);
}
.nrm-section--dark .nrm-table th,
.nrm-section--dark-alt .nrm-table th { color: var(--nrm-fg-dark-muted); }
.nrm-section--light .nrm-table th,
.nrm-section--white .nrm-table th   { color: var(--nrm-fg-light-2); background: var(--nrm-bg-light); }
.nrm-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--nrm-border-dark);
}
.nrm-table tr:last-child td { border-bottom: none; }
.nrm-section--dark .nrm-table td,
.nrm-section--dark-alt .nrm-table td { color: var(--nrm-fg-dark-2); }
.nrm-section--light .nrm-table td,
.nrm-section--white .nrm-table td   { color: var(--nrm-fg-light-2); }
.nrm-table td.nrm-table__highlight {
  color: var(--nrm-accent-on-dark);
  font-weight: 500;
}
.nrm-section--light .nrm-table td.nrm-table__highlight,
.nrm-section--white .nrm-table td.nrm-table__highlight { color: var(--nrm-accent-on-light); }
.nrm-table tr.nrm-table__row--featured {
  background: rgba(0, 200, 180, 0.06);
}

/* ═══════════════════════════════════════
   TERMINAL / CODE MOCK
   ═══════════════════════════════════════ */
.nrm-term {
  background: var(--nrm-bg-code);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--nrm-radius-lg);
  overflow: hidden;
  font-family: var(--nrm-font-mono);
}
.nrm-term__chrome {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nrm-term__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.nrm-term__dot--red    { background: #FF5F56; }
.nrm-term__dot--yellow { background: #FFBD2E; }
.nrm-term__dot--green  { background: #27C93F; }
.nrm-term__title {
  font-size: 0.72rem;
  color: var(--nrm-fg-dark-muted);
  margin-left: 0.375rem;
  flex: 1;
}
.nrm-term__body {
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  line-height: 1.5;
  font-size: 0.8125rem;
}
.nrm-term__body code {
  display: block;
  white-space: pre;
}
/* Token colours */
.nrm-tt-prompt { color: var(--nrm-accent-on-dark); }
.nrm-tt-cmd    { color: var(--nrm-fg-dark-1); }
.nrm-tt-meta   { color: var(--nrm-fg-dark-muted); }
.nrm-tt-insert { color: #5BCBE0; }
.nrm-tt-stat   { color: var(--nrm-fg-dark-2); }
.nrm-tt-ok     { color: #27C93F; }
.nrm-tt-kw     { color: #C792EA; }
.nrm-tt-str    { color: #A8FF60; }
.nrm-tt-fn     { color: var(--nrm-accent-on-dark); }
.nrm-tt-num    { color: #FFBD2E; }
.nrm-tt-comment { color: var(--nrm-fg-dark-muted); }

/* ═══════════════════════════════════════
   INLINE SVG ARCHITECTURE DIAGRAM
   ═══════════════════════════════════════ */
.nrm-arch-diagram {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════ */
.nrm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nrm-grid-gap);
}
.nrm-blog-card {
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--nrm-trans-fast);
}
.nrm-blog-card:hover {
  border-color: rgba(0,200,180,0.25);
}
.nrm-blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--nrm-bg-dark-alt);
}
.nrm-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nrm-blog-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nrm-blog-card__cat {
  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.5rem;
}
.nrm-blog-card__title {
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 0.5rem;
  flex: 1;
}
.nrm-blog-card__meta {
  font-size: 0.75rem;
  color: var(--nrm-fg-dark-muted);
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

/* Blog article page styles */
.nrm-blog-article {
  max-width: 760px;
  margin: 0 auto;
}
.nrm-blog-article__cover {
  width: 100%;
  height: auto;
  border-radius: var(--nrm-radius-lg);
  margin: 0 auto;
  max-width: 100%;
}
.nrm-blog-article__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--nrm-font-mono);
  font-size: 0.8rem;
  color: var(--nrm-fg-light-2);
  margin-bottom: 1.5rem;
}
.nrm-blog-article__cat {
  background: var(--nrm-bg-light-alt);
  color: var(--nrm-accent-on-light);
  padding: 0.25rem 0.625rem;
  border-radius: var(--nrm-radius-sm);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nrm-article-body {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--nrm-fg-light-1);
}
.nrm-article-body h2 {
  font-family: var(--nrm-font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--nrm-fg-light-1);
  margin: 2.5rem 0 0.875rem;
}
.nrm-article-body h3 {
  font-family: var(--nrm-font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin: 2rem 0 0.625rem;
}
.nrm-article-body p { margin-bottom: 1.25rem; }
.nrm-article-body ul, .nrm-article-body ol {
  margin: 1rem 0 1.25rem 1.5rem;
  list-style: disc;
}
.nrm-article-body li { margin-bottom: 0.375rem; }
.nrm-article-body code {
  font-family: var(--nrm-font-mono);
  font-size: 0.875em;
  background: var(--nrm-bg-light-alt);
  color: var(--nrm-accent-on-light);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

/* ═══════════════════════════════════════
   DOCS LAYOUT
   ═══════════════════════════════════════ */
.nrm-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: var(--nrm-container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.nrm-docs-sidebar {
  position: sticky;
  top: 80px;
}
.nrm-docs-sidebar__title {
  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.875rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--nrm-border-light);
}
.nrm-docs-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nrm-docs-sidebar__links a {
  font-size: 0.875rem;
  color: var(--nrm-fg-light-2);
  padding: 0.5rem 0.75rem;
  border-radius: var(--nrm-radius-sm);
  transition: background var(--nrm-trans-fast), color var(--nrm-trans-fast);
  display: block;
}
.nrm-docs-sidebar__links a:hover,
.nrm-docs-sidebar__links a.nrm-active {
  background: var(--nrm-bg-light-alt);
  color: var(--nrm-fg-light-1);
}
.nrm-docs-content h1 {
  font-family: var(--nrm-font-mono);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--nrm-fg-light-1);
  margin-bottom: 1.5rem;
}
.nrm-docs-content h2 {
  font-family: var(--nrm-font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--nrm-fg-light-1);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--nrm-border-light);
}
.nrm-docs-content h3 {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin: 1.75rem 0 0.5rem;
}
.nrm-docs-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--nrm-fg-light-2);
  margin-bottom: 1rem;
}
.nrm-docs-content ul,
.nrm-docs-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
  list-style: disc;
}
.nrm-docs-content li {
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-2);
  margin-bottom: 0.375rem;
  line-height: 1.6;
}
.nrm-docs-content code {
  font-family: var(--nrm-font-mono);
  font-size: 0.875em;
  background: var(--nrm-bg-light-alt);
  color: var(--nrm-accent-on-light);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}
.nrm-docs-content a { color: var(--nrm-accent-on-light); text-decoration: underline; }
.nrm-docs-content a:hover { color: var(--nrm-fg-light-1); }

/* Docs card grid */
.nrm-docs-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nrm-grid-gap);
}
.nrm-docs-card {
  background: var(--nrm-bg-white);
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-lg);
  padding: 1.5rem;
  transition: border-color var(--nrm-trans-fast), box-shadow var(--nrm-trans-fast);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.nrm-docs-card:hover {
  border-color: var(--nrm-accent-on-light);
  box-shadow: 0 4px 16px rgba(0,122,110,0.1);
}
.nrm-docs-card__icon {
  width: 32px;
  height: 32px;
  color: var(--nrm-accent-on-light);
  margin-bottom: 0.875rem;
}
.nrm-docs-card__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-docs-card__desc {
  font-size: 0.875rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.6;
  flex: 1;
}

/* ═══════════════════════════════════════
   TEAM GRID
   ═══════════════════════════════════════ */
.nrm-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.nrm-team-card {
  text-align: center;
}
.nrm-team-card__portrait {
  width: 120px;
  height: 144px;
  object-fit: cover;
  border-radius: var(--nrm-radius-lg);
  margin: 0 auto 1rem;
  display: block;
}
.nrm-team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--nrm-bg-light-alt);
  color: var(--nrm-accent-on-light);
  font-family: var(--nrm-font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.nrm-team-card__name {
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.25rem;
}
.nrm-team-card__title {
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-2);
  margin-bottom: 0.625rem;
}
.nrm-team-card__bio {
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   STATUS PAGE
   ═══════════════════════════════════════ */
.nrm-status-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-lg);
  overflow: hidden;
}
.nrm-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--nrm-border-light);
  background: var(--nrm-bg-white);
}
.nrm-status-row:last-child { border-bottom: none; }
.nrm-status-row__name {
  font-family: var(--nrm-font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nrm-fg-light-1);
}
.nrm-status-row__desc {
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-2);
  margin-top: 0.125rem;
}
.nrm-status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}
.nrm-status-badge--ok {
  background: rgba(39, 201, 63, 0.1);
  color: #27C93F;
}
.nrm-status-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ═══════════════════════════════════════
   LOGIN / AUTH PAGES
   ═══════════════════════════════════════ */
.nrm-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nrm-bg-dark);
  padding: 80px clamp(1rem, 4vw, 2rem) 2rem;
}
.nrm-login-panel {
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
}
.nrm-login-panel__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.nrm-login-panel__logo img {
  height: 28px;
  width: auto;
}
.nrm-login-panel__title {
  font-family: var(--nrm-font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--nrm-fg-dark-1);
  text-align: center;
  margin-bottom: 0.5rem;
}
.nrm-login-panel__sub {
  font-size: 0.875rem;
  color: var(--nrm-fg-dark-2);
  text-align: center;
  margin-bottom: 2rem;
}
.nrm-form-group {
  margin-bottom: 1.25rem;
}
.nrm-form-label {
  display: block;
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--nrm-fg-dark-muted);
  margin-bottom: 0.5rem;
}
.nrm-form-input,
.nrm-form-textarea,
.nrm-form-select {
  display: block;
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: var(--nrm-font-body);
  font-size: 0.9375rem;
  border-radius: var(--nrm-radius-md);
  border: 1px solid;
  background: var(--nrm-bg-dark-alt);
  color: var(--nrm-fg-dark-1);
  border-color: var(--nrm-border-dark);
  transition: border-color var(--nrm-trans-fast);
  box-sizing: border-box;
}
.nrm-form-input:focus,
.nrm-form-textarea:focus,
.nrm-form-select:focus {
  outline: none;
  border-color: var(--nrm-accent-on-dark);
}
.nrm-form-input::placeholder,
.nrm-form-textarea::placeholder { color: var(--nrm-fg-dark-muted); }

/* light-context form overrides */
.nrm-form--light .nrm-form-label { color: var(--nrm-fg-light-2); }
.nrm-form--light .nrm-form-input,
.nrm-form--light .nrm-form-textarea,
.nrm-form--light .nrm-form-select {
  background: var(--nrm-bg-white);
  color: var(--nrm-fg-light-1);
  border-color: var(--nrm-border-light);
}
.nrm-form--light .nrm-form-input:focus,
.nrm-form--light .nrm-form-textarea:focus,
.nrm-form--light .nrm-form-select:focus {
  border-color: var(--nrm-accent-on-light);
}
.nrm-form--light .nrm-form-input::placeholder,
.nrm-form--light .nrm-form-textarea::placeholder { color: var(--nrm-fg-light-2); }

.nrm-form-textarea { min-height: 120px; resize: vertical; }

/* Select custom styling */
.nrm-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6480' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.nrm-login-panel__footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--nrm-fg-dark-muted);
}
.nrm-login-panel__footer a {
  color: var(--nrm-accent-on-dark);
}
.nrm-login-panel__footer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════ */
.nrm-cta-band {
  background: var(--nrm-bg-dark);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  padding: 3rem;
  text-align: center;
}
.nrm-cta-band--full {
  border-radius: 0;
  border-left: none;
  border-right: none;
  padding: 5rem clamp(1rem, 4vw, 2.5rem);
}
.nrm-cta-band__title {
  font-family: var(--nrm-font-mono);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 1rem;
}
.nrm-cta-band__lede {
  font-size: 1rem;
  color: var(--nrm-fg-dark-2);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.nrm-cta-band__actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   USE CASE PANELS
   ═══════════════════════════════════════ */
.nrm-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nrm-grid-gap);
}
.nrm-usecase-panel {
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  padding: 2rem;
}
.nrm-usecase-panel__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-usecase-panel__title {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 1rem;
}
.nrm-usecase-panel__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.nrm-usecase-panel__bullets li {
  font-size: 0.875rem;
  color: var(--nrm-fg-dark-2);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.nrm-usecase-panel__bullets li::before {
  content: '·';
  position: absolute;
  left: 0.25rem;
  color: var(--nrm-accent-on-dark);
  font-size: 1.2rem;
  line-height: 1.3;
}

/* ═══════════════════════════════════════
   RESEARCH PAPERS
   ═══════════════════════════════════════ */
.nrm-paper-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nrm-paper {
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  padding: 1.75rem;
}
.nrm-paper__type {
  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.5rem;
}
.nrm-paper__title {
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
.nrm-paper__authors {
  font-size: 0.8125rem;
  color: var(--nrm-fg-dark-muted);
  margin-bottom: 0.625rem;
  font-style: italic;
}
.nrm-paper__abstract {
  font-size: 0.875rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.nrm-paper__ref {
  font-family: var(--nrm-font-mono);
  font-size: 0.75rem;
  color: var(--nrm-fg-dark-muted);
}

/* ═══════════════════════════════════════
   CUSTOMER PROFILES
   ═══════════════════════════════════════ */
.nrm-customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nrm-grid-gap);
}
.nrm-customer-card {
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  padding: 2rem;
}
.nrm-customer-card__sector {
  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.625rem;
}
.nrm-customer-card__name {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 0.875rem;
}
.nrm-customer-card__challenge {
  font-size: 0.875rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.nrm-customer-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--nrm-border-dark);
}
.nrm-customer-card__metric {
  font-family: var(--nrm-font-mono);
  font-size: 0.8rem;
  color: var(--nrm-fg-dark-2);
}
.nrm-customer-card__metric strong {
  color: var(--nrm-accent-on-dark);
}
.nrm-customer-card__attr {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--nrm-fg-dark-muted);
  font-style: italic;
}

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */
.nrm-legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: calc(64px + 3rem) clamp(1rem, 4vw, 2.5rem) 4rem;
}
.legal-article {}
.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--nrm-border-light);
}
.legal-header h1 {
  font-family: var(--nrm-font-mono);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.75rem;
}
.legal-meta {
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-2);
}
.legal-article section {
  margin-bottom: 2.5rem;
}
.legal-article h2 {
  font-family: var(--nrm-font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--nrm-border-light);
}
.legal-article h3 {
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin: 1.25rem 0 0.5rem;
}
.legal-article p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--nrm-fg-light-2);
  margin-bottom: 0.875rem;
}
.legal-article ul {
  list-style: disc;
  margin: 0.75rem 0 0.875rem 1.5rem;
}
.legal-article li {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--nrm-fg-light-2);
  margin-bottom: 0.375rem;
}
.legal-article address {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--nrm-fg-light-2);
  margin-top: 0.875rem;
}
.legal-article a {
  color: var(--nrm-accent-on-light);
  text-decoration: underline;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0;
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-md);
  overflow: hidden;
}
.legal-table th {
  background: var(--nrm-bg-light);
  padding: 0.625rem 1rem;
  text-align: left;
  font-family: var(--nrm-font-mono);
  font-size: 0.75rem;
  color: var(--nrm-fg-light-1);
  border-bottom: 1px solid var(--nrm-border-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; }

/* ═══════════════════════════════════════
   CAREERS
   ═══════════════════════════════════════ */
.nrm-job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nrm-job-card {
  background: var(--nrm-bg-white);
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: border-color var(--nrm-trans-fast);
}
.nrm-job-card:hover { border-color: var(--nrm-accent-on-light); }
.nrm-job-card__dept {
  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.375rem;
}
.nrm-job-card__title {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.375rem;
}
.nrm-job-card__meta {
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-2);
  display: flex;
  gap: 1rem;
}
.nrm-job-card__action {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CONTACT FORM (dark context)
   ═══════════════════════════════════════ */
.nrm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
.nrm-contact-form {}
.nrm-contact-info__block {
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  padding: 2rem;
}
.nrm-contact-info__item {
  margin-bottom: 1.5rem;
}
.nrm-contact-info__item:last-child { margin-bottom: 0; }
.nrm-contact-info__label {
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nrm-fg-dark-muted);
  margin-bottom: 0.375rem;
}
.nrm-contact-info__value {
  font-size: 0.9375rem;
  color: var(--nrm-fg-dark-2);
}
.nrm-contact-info__value a {
  color: var(--nrm-accent-on-dark);
}
.nrm-contact-info__value a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   BLOG ARTICLE — full component family
   (was missing: header, category, title, byline, breadcrumb)
   ═══════════════════════════════════════ */
.nrm-blog-article__header {
  background: var(--nrm-bg-light);
  padding: calc(64px + 2.5rem) 0 2.5rem;
}
.nrm-blog-article__header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.nrm-blog-article__breadcrumb {
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-3);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.nrm-blog-article__breadcrumb a {
  color: var(--nrm-accent-on-light);
  text-decoration: none;
}
.nrm-blog-article__breadcrumb a:hover { text-decoration: underline; }
.nrm-blog-article__breadcrumb span { color: var(--nrm-fg-light-3); }
.nrm-blog-article__category {
  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.875rem;
}
.nrm-blog-article__title {
  font-family: var(--nrm-font-mono);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--nrm-fg-light-1);
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 760px;
}
.nrm-blog-article__byline {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-2);
}
.nrm-blog-article__byline-sep {
  color: var(--nrm-fg-light-3);
}
.nrm-blog-article__cover-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  padding-top: 1.5rem;
  background: var(--nrm-bg-light);
}
.nrm-blog-article__body-wrap {
  padding: 2rem 0 4rem;
  background: var(--nrm-bg-white);
}
.nrm-blog-article__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--nrm-fg-light-1);
}
.nrm-blog-article__body h2 {
  font-family: var(--nrm-font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--nrm-fg-light-1);
  margin: 2.5rem 0 0.875rem;
}
.nrm-blog-article__body h3 {
  font-family: var(--nrm-font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin: 2rem 0 0.625rem;
}
.nrm-blog-article__body p { margin-bottom: 1.25rem; }
.nrm-blog-article__body a { color: var(--nrm-accent-on-light); }
.nrm-blog-article__body ul,
.nrm-blog-article__body ol {
  margin: 1rem 0 1.25rem 1.5rem;
  list-style: disc;
}
.nrm-blog-article__body li { margin-bottom: 0.375rem; color: var(--nrm-fg-light-2); }

/* Blog card category (HTML uses __category, CSS had __cat — alias both) */
.nrm-blog-card__category {
  display: inline-block;
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nrm-accent-on-dark);
  margin-bottom: 0.625rem;
}
.nrm-blog-card__body--light .nrm-blog-card__category,
.nrm-blog-card__category--light {
  color: var(--nrm-accent-on-light);
}

/* Blog related section */
.nrm-blog-related { padding: 4rem 0; }

/* Blog card light variants */
.nrm-blog-card__body--light .nrm-blog-card__title a,
.nrm-blog-card__title--light a { color: var(--nrm-fg-light-1); }
.nrm-blog-card__body--light .nrm-blog-card__title a:hover,
.nrm-blog-card__title--light a:hover { color: var(--nrm-accent-on-light); }
.nrm-blog-card__body--light .nrm-blog-card__meta,
.nrm-blog-card__meta--light { color: var(--nrm-fg-light-3); }

/* ═══════════════════════════════════════
   SUBHERO MODIFIERS
   (--light, --centered, --eyebrow--light etc.)
   ═══════════════════════════════════════ */
.nrm-subhero__inner--centered {
  max-width: var(--nrm-container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  justify-content: center;
}
.nrm-subhero__content--centered {
  text-align: center;
  max-width: 720px;
}
.nrm-subhero__eyebrow--light {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nrm-accent-on-light);
  margin-bottom: 0.75rem;
}
.nrm-subhero__headline--light {
  font-family: var(--nrm-font-mono);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--nrm-fg-light-1);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin-bottom: 0.875rem;
}
.nrm-subhero__lede--light {
  font-size: 1.0625rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   SECTION HEADER LIGHT MODIFIER
   ═══════════════════════════════════════ */
.nrm-section-header--light .nrm-section-header__eyebrow { color: var(--nrm-accent-on-light); }
.nrm-section-header--light .nrm-section-header__title   { color: var(--nrm-fg-light-1); }
.nrm-section-header--light .nrm-section-header__lede    { color: var(--nrm-fg-light-2); }

/* ═══════════════════════════════════════
   DOCS SIDEBAR EXTENDED
   (sidebar section groups, nav links, active state, content breadcrumb)
   ═══════════════════════════════════════ */
.nrm-docs-sidebar__section {
  margin-bottom: 1.5rem;
}
.nrm-docs-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nrm-docs-sidebar__link {
  display: block;
  font-size: 0.875rem;
  color: var(--nrm-fg-light-2);
  padding: 0.4375rem 0.75rem;
  border-radius: var(--nrm-radius-sm);
  text-decoration: none;
  transition: background var(--nrm-trans-fast), color var(--nrm-trans-fast);
}
.nrm-docs-sidebar__link:hover {
  background: var(--nrm-bg-light-alt);
  color: var(--nrm-fg-light-1);
}
.nrm-docs-sidebar__link--active {
  background: var(--nrm-bg-light-alt);
  color: var(--nrm-accent-on-light);
  font-weight: 500;
}
.nrm-docs-content__breadcrumb {
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-3);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.nrm-docs-content__breadcrumb a {
  color: var(--nrm-accent-on-light);
  text-decoration: none;
}
.nrm-docs-content__breadcrumb a:hover { text-decoration: underline; }

/* Alias for nrm-legal-article used in docs (legal-style content block) */
.nrm-legal-article {
  color: var(--nrm-fg-light-2);
}

/* ═══════════════════════════════════════
   DOCS CARD ENHANCEMENTS
   ═══════════════════════════════════════ */
.nrm-docs-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  color: var(--nrm-accent-on-light);
  text-decoration: none;
  margin-top: 0.75rem;
}
.nrm-docs-card__link:hover { text-decoration: underline; }
.nrm-card__icon--light {
  color: var(--nrm-accent-on-light);
}
.nrm-card__cta {
  margin-top: auto;
  padding-top: 1rem;
}
.nrm-code-light {
  background: var(--nrm-bg-light-alt);
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-md);
  padding: 1.25rem;
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--nrm-fg-light-1);
  overflow-x: auto;
}

/* ═══════════════════════════════════════
   RESEARCH PAGE — track & paper families
   ═══════════════════════════════════════ */
.nrm-research-track {
  padding: 2rem;
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
}
.nrm-research-track__num {
  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-track__title {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 0.625rem;
}
.nrm-research-track__body {
  font-size: 0.875rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.65;
}
.nrm-research-papers {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nrm-research-paper {
  padding: 1.5rem;
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
}

/* ═══════════════════════════════════════
   ABOUT PAGE — stat block
   ═══════════════════════════════════════ */
.nrm-about-stat-block {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--nrm-border-light);
}
.nrm-about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nrm-about-stat__num {
  font-family: var(--nrm-font-mono);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--nrm-accent-on-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ═══════════════════════════════════════
   CONTACT PAGE — form family
   ═══════════════════════════════════════ */
.nrm-contact-form-wrap {
  background: var(--nrm-bg-white);
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-lg);
  padding: 2rem 2.5rem;
  color: var(--nrm-fg-light-1);
}
.nrm-contact-form-title {
  font-family: var(--nrm-font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.5rem;
}
.nrm-contact-form-desc {
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.nrm-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nrm-form .nrm-form-group { margin-bottom: 1.125rem; }

/* ═══════════════════════════════════════
   CUSTOMERS PAGE — profile family
   ═══════════════════════════════════════ */
.nrm-customer-profiles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nrm-customer-profile {
  background: var(--nrm-bg-dark-card);
  border: 1px solid var(--nrm-border-dark);
  border-radius: var(--nrm-radius-lg);
  padding: 2rem;
}
.nrm-customer-profile__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.nrm-customer-profile__logo-block {
  flex-shrink: 0;
}
.nrm-letter-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nrm-bg-dark-alt);
  border: 1px solid var(--nrm-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nrm-font-mono);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--nrm-accent-on-dark);
}
.nrm-letter-avatar--lg {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

/* ═══════════════════════════════════════
   HERO VISUAL WRAPPER (index.html)
   ═══════════════════════════════════════ */
.nrm-hero__visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════
   BENCHMARKS — compare table & note
   ═══════════════════════════════════════ */
.nrm-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.nrm-compare-table th {
  text-align: left;
  padding: 0.875rem 1rem;
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nrm-fg-dark-muted);
  border-bottom: 1px solid var(--nrm-border-dark);
}
.nrm-compare-table td {
  padding: 0.875rem 1rem;
  color: var(--nrm-fg-dark-2);
  border-bottom: 1px solid var(--nrm-border-dark);
  font-family: var(--nrm-font-mono);
  font-size: 0.875rem;
}
.nrm-compare-table tr:last-child td { border-bottom: none; }
.nrm-compare-table__winner {
  color: var(--nrm-accent-on-dark) !important;
  font-weight: 600;
}
.nrm-benchmarks-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);
}

/* login form-row alias (nrm-form-row vs nrm-form-row--two) */
.nrm-form-row {
  display: flex;
  flex-direction: column;
}

/* ═══════════════════════════════════════
   DOCS CONTENT — intro block
   ═══════════════════════════════════════ */
.nrm-docs-content__intro {
  font-size: 1.0625rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 660px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--nrm-border-light);
}

/* ═══════════════════════════════════════
   DOCS STEPS — numbered installation/guide steps
   ═══════════════════════════════════════ */
.nrm-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.nrm-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: flex-start;
}
.nrm-step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--nrm-accent-on-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nrm-font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}
.nrm-step__body {
  padding-top: 0.5rem;
}
.nrm-step__title {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
  margin-bottom: 0.5rem;
}
.nrm-step__body p { font-size: 0.9375rem; color: var(--nrm-fg-light-2); line-height: 1.65; }

/* ═══════════════════════════════════════
   TERMINAL — light page variant
   ═══════════════════════════════════════ */
.nrm-term--light-page {
  background: #1A2233;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--nrm-radius-md);
  overflow: hidden;
}
.nrm-term--light-page .nrm-term__chrome {
  background: #222d40;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nrm-term--light-page .nrm-term__title { color: rgba(255,255,255,0.5); }
.nrm-term--light-page .nrm-term__body  { background: #1A2233; }

/* ═══════════════════════════════════════
   API ENDPOINT METHOD BADGES (docs/api-reference)
   ═══════════════════════════════════════ */
.nrm-api-endpoint__method {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  border-radius: var(--nrm-radius-sm);
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nrm-api-endpoint__method--get  { background: #d1fae5; color: #065f46; }
.nrm-api-endpoint__method--post { background: #dbeafe; color: #1e3a8a; }

/* legal-table aliased for docs pages (docs/supported-hardware uses this) */
.nrm-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1.25rem 0;
}
.nrm-legal-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nrm-fg-light-3);
  border-bottom: 2px solid var(--nrm-border-light);
  background: var(--nrm-bg-light-alt);
}
.nrm-legal-table td {
  padding: 0.75rem 1rem;
  color: var(--nrm-fg-light-2);
  border-bottom: 1px solid var(--nrm-border-light);
  font-size: 0.875rem;
}
.nrm-legal-table tr:last-child td { border-bottom: none; }

/* ═══════════════════════════════════════
   RESEARCH PAGE — paper detail fields
   ═══════════════════════════════════════ */
.nrm-research-paper__title {
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nrm-fg-dark-1);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.nrm-research-paper__meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.625rem;
}
.nrm-research-paper__venue {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nrm-accent-on-dark);
}
.nrm-research-paper__year {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  color: var(--nrm-fg-dark-3);
}
.nrm-research-paper__authors {
  font-size: 0.8125rem;
  color: var(--nrm-fg-dark-2);
  margin-bottom: 0.625rem;
}
.nrm-research-paper__abstract {
  font-size: 0.875rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   ABOUT PAGE — values grid & items
   ═══════════════════════════════════════ */
.nrm-about-stat__label {
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.4;
}
.nrm-about-mission {
  max-width: 660px;
}
.nrm-about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.nrm-value-item {
  padding: 1.5rem;
  background: var(--nrm-bg-white);
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-lg);
}
.nrm-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.nrm-value-item__icon {
  font-size: 1.5rem;
  color: var(--nrm-accent-on-light);
  margin-bottom: 0.875rem;
}
.nrm-value-item__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-value-item__desc {
  font-size: 0.875rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   TEAM PAGE — card body, advisor cards, advisors grid
   ═══════════════════════════════════════ */
.nrm-team-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nrm-advisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.nrm-advisor-card {
  padding: 1.5rem;
  background: var(--nrm-bg-light-alt);
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-lg);
}
.nrm-advisor-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nrm-advisor-card__name {
  font-family: var(--nrm-font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nrm-fg-light-1);
}
.nrm-advisor-card__affiliation {
  font-size: 0.8125rem;
  color: var(--nrm-accent-on-light);
}
.nrm-advisor-card__focus {
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.5;
  margin-top: 0.375rem;
}

/* ═══════════════════════════════════════
   CAREERS PAGE — jobs list, job card sub-elements
   ═══════════════════════════════════════ */
.nrm-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nrm-job-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.nrm-job-tag {
  display: inline-block;
  font-family: var(--nrm-font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 2rem;
  background: var(--nrm-bg-light-alt);
  color: var(--nrm-accent-on-light);
  border: 1px solid rgba(0,204,153,0.25);
}
.nrm-job-card__desc {
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-2);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}
.nrm-job-card__req {
  font-size: 0.8125rem;
  color: var(--nrm-fg-light-3);
  font-family: var(--nrm-font-mono);
}

/* ═══════════════════════════════════════
   CONTACT PAGE — info sidebar & channels
   ═══════════════════════════════════════ */
.nrm-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nrm-contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nrm-contact-info__heading {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nrm-accent-on-dark);
  margin-bottom: 0.375rem;
}
.nrm-contact-channel {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.nrm-contact-channel__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nrm-accent-on-dark);
  flex-shrink: 0;
  font-size: 0.875rem;
}
.nrm-contact-channel__label {
  font-family: var(--nrm-font-mono);
  font-size: 0.75rem;
  color: var(--nrm-fg-dark-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nrm-contact-channel__value {
  font-size: 0.9375rem;
  color: var(--nrm-fg-dark-1);
}
.nrm-contact-channel__value a { color: var(--nrm-accent-on-dark); text-decoration: none; }
.nrm-contact-channel__value a:hover { text-decoration: underline; }
.nrm-contact-expectations {
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--nrm-radius-md);
}

/* ═══════════════════════════════════════
   CONTACT PAGE — dark form family
   (nrm-form--dark overrides nrm-form styles for dark-bg sections)
   ═══════════════════════════════════════ */
.nrm-form--dark .nrm-form__label { color: var(--nrm-fg-dark-2); }
.nrm-form--dark .nrm-form__input,
.nrm-form--dark .nrm-form__textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--nrm-fg-dark-1);
}
.nrm-form--dark .nrm-form__input:focus,
.nrm-form--dark .nrm-form__textarea:focus {
  border-color: var(--nrm-accent-on-dark);
  background: rgba(255,255,255,0.09);
}
.nrm-form--dark .nrm-form__input::placeholder,
.nrm-form--dark .nrm-form__textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
/* Contact form base (nrm-form__* vs nrm-form-* in auth — both valid) */
.nrm-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.125rem;
}
.nrm-form__row {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.nrm-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.nrm-form__label {
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--nrm-fg-light-2);
  display: block;
}
.nrm-form__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  background: var(--nrm-bg-white);
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-md);
  font-family: var(--nrm-font-body);
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-1);
  outline: none;
  transition: border-color var(--nrm-trans-fast);
}
.nrm-form__input:focus {
  border-color: var(--nrm-accent-on-light);
}
.nrm-form__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  background: var(--nrm-bg-white);
  border: 1px solid var(--nrm-border-light);
  border-radius: var(--nrm-radius-md);
  font-family: var(--nrm-font-body);
  font-size: 0.9375rem;
  color: var(--nrm-fg-light-1);
  min-height: 120px;
  resize: vertical;
  outline: none;
  transition: border-color var(--nrm-trans-fast);
}
.nrm-form__textarea:focus { border-color: var(--nrm-accent-on-light); }
.nrm-form__submit {
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════
   CUSTOMERS PAGE — profile extended fields & result items
   ═══════════════════════════════════════ */
.nrm-customer-profile__name {
  font-family: var(--nrm-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nrm-fg-dark-1);
}
.nrm-customer-profile__sector {
  font-family: var(--nrm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nrm-accent-on-dark);
  margin-top: 0.25rem;
}
.nrm-customer-profile__body {
  margin-top: 1rem;
}
.nrm-customer-profile__desc {
  font-size: 0.9375rem;
  color: var(--nrm-fg-dark-2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.nrm-customer-profile__quote {
  font-size: 1.0625rem;
  color: var(--nrm-fg-dark-1);
  line-height: 1.65;
  font-style: italic;
  border-left: 3px solid var(--nrm-accent-on-dark);
  padding-left: 1rem;
  margin: 1rem 0;
}
.nrm-customer-profile__attribution {
  font-family: var(--nrm-font-mono);
  font-size: 0.8125rem;
  color: var(--nrm-fg-dark-3);
  margin-top: 0.5rem;
}
.nrm-customer-profile__results {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--nrm-border-dark);
}
.nrm-customer-result {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.nrm-customer-result__num {
  font-family: var(--nrm-font-mono);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--nrm-accent-on-dark);
  line-height: 1;
}
.nrm-customer-result__label {
  font-size: 0.75rem;
  color: var(--nrm-fg-dark-3);
}

/* ═══════════════════════════════════════
   SUBHERO VISUAL AREA (customers, research, about decorative visual)
   ═══════════════════════════════════════ */
.nrm-subhero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   BLOG GRID — 3-column variant
   ═══════════════════════════════════════ */
.nrm-blog-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ═══════════════════════════════════════
   RESPONSIVE COMPONENTS
   ═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .nrm-team-grid        { grid-template-columns: repeat(2, 1fr); }
  .nrm-docs-card-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nrm-blog-grid        { grid-template-columns: repeat(2, 1fr); }
  .nrm-card-grid--3     { grid-template-columns: repeat(2, 1fr); }
  .nrm-card-grid--4     { grid-template-columns: repeat(2, 1fr); }
  .nrm-usecase-grid     { grid-template-columns: 1fr; }
  .nrm-customer-grid    { grid-template-columns: 1fr; }
  .nrm-pipeline         { grid-template-columns: repeat(2, 1fr); }
  .nrm-pipeline__step::after { display: none; }
  .nrm-contact-grid     { grid-template-columns: 1fr; }
  .nrm-proof-strip      { grid-template-columns: 1fr; }
  .nrm-proof-strip__item { border-right: none; border-bottom: 1px solid var(--nrm-border-dark); }
  .nrm-proof-strip__item:last-child { border-bottom: none; }
  .nrm-docs-layout      { grid-template-columns: 1fr; }
  .nrm-docs-sidebar     { position: static; }
}
@media (max-width: 768px) {
  .nrm-blog-grid        { grid-template-columns: 1fr; }
  .nrm-team-grid        { grid-template-columns: repeat(2, 1fr); }
  .nrm-advisors-grid    { grid-template-columns: 1fr; }
  .nrm-card-grid--3     { grid-template-columns: 1fr; }
  .nrm-card-grid--2     { grid-template-columns: 1fr; }
  .nrm-card-grid--4     { grid-template-columns: 1fr; }
  .nrm-docs-card-grid   { grid-template-columns: 1fr; }
  .nrm-pipeline         { grid-template-columns: 1fr; }
  .nrm-job-card         { flex-direction: column; align-items: flex-start; }
}
