:root {
  --nr-bg: #081523;
  --nr-bg-2: #0b2135;
  --nr-panel: rgba(10, 26, 42, 0.88);
  --nr-panel-soft: rgba(255, 255, 255, 0.04);
  --nr-line: rgba(145, 177, 205, 0.18);
  --nr-line-strong: rgba(81, 233, 231, 0.34);
  --nr-text: #ecf3f9;
  --nr-muted: #aac2d6;
  --nr-accent: #28e0dc;
  --nr-accent-2: #2aa7ff;
  --nr-success: #a8ffde;
  --nr-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --nr-radius: 22px;
  --nr-shell: min(1200px, calc(100% - 36px));
  --nr-font: Inter, "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--nr-font);
  color: var(--nr-text);
  background:
    radial-gradient(circle at 15% 10%, rgba(40, 224, 220, 0.09), transparent 24%),
    radial-gradient(circle at 80% 5%, rgba(42, 167, 255, 0.10), transparent 28%),
    linear-gradient(180deg, #07111d 0%, #0a1726 56%, #08111c 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; display: block; }
.nr-shell { width: var(--nr-shell); margin: 0 auto; }
.nr-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(7, 17, 29, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nr-topbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nr-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.45rem;
}
.nr-brand__logo {
  width: 31px;
  height: 31px;
  border: 2px solid var(--nr-accent);
  border-radius: 8px;
  position: relative;
  transform: skew(-10deg);
}
.nr-brand__logo::before,
.nr-brand__logo::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-left: 2px solid var(--nr-accent);
  transform: skew(10deg);
}
.nr-brand__logo::after {
  inset: 4px 8px 4px auto;
  width: 2px;
  background: var(--nr-accent);
  border-left: 0;
}
.nr-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nr-nav a {
  color: #d8e6f0;
  font-size: 0.98rem;
  font-weight: 600;
}
.nr-nav a:last-child {
  color: var(--nr-accent);
}
.nr-hero {
  padding: 54px 0 42px;
}
.nr-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  gap: 32px;
  align-items: stretch;
}
.nr-panel {
  border: 1px solid var(--nr-line);
  border-radius: var(--nr-radius);
  background: linear-gradient(160deg, rgba(8, 24, 40, 0.95), rgba(8, 18, 31, 0.90));
  box-shadow: var(--nr-shadow);
  overflow: hidden;
}
.nr-copy {
  padding: 46px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nr-eyebrow {
  margin: 0 0 12px;
  color: var(--nr-accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.nr-title {
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.nr-lead {
  margin: 20px 0 0;
  max-width: 62ch;
  color: var(--nr-muted);
  font-size: 1.08rem;
}
.nr-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.nr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.nr-button:hover { transform: translateY(-1px); }
.nr-button--primary {
  color: #001a1d;
  background: linear-gradient(135deg, var(--nr-accent), #86fff3);
}
.nr-button--secondary {
  color: var(--nr-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.nr-facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.nr-fact {
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: var(--nr-panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.nr-fact span {
  display: block;
  margin-bottom: 5px;
  color: #9fd0ee;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.nr-fact strong {
  display: block;
  font-size: 1rem;
}
.nr-visual {
  padding: 0;
  position: relative;
  background: linear-gradient(145deg, rgba(4, 18, 34, 0.96), rgba(8, 31, 55, 0.92));
}
.nr-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nr-visual__badge {
  position: absolute;
  right: 22px;
  top: 20px;
  padding: 10px 14px;
  color: #04212c;
  background: linear-gradient(135deg, #8dfff4, #39dff2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nr-section {
  padding: 20px 0 46px;
}
.nr-section__intro {
  max-width: 760px;
  margin-bottom: 24px;
}
.nr-section__intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.nr-section__intro p {
  margin: 0;
  color: var(--nr-muted);
}
.nr-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.nr-card {
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid var(--nr-line);
  background: linear-gradient(180deg, rgba(11, 26, 41, 0.88), rgba(9, 19, 32, 0.90));
  box-shadow: var(--nr-shadow);
}
.nr-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #041922;
  background: linear-gradient(135deg, var(--nr-accent), #8df8ff);
  border-radius: 12px;
  font-weight: 900;
}
.nr-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}
.nr-card p { margin: 0; color: var(--nr-muted); }
.nr-program {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 22px;
}
.nr-program__body,
.nr-program__meta {
  padding: 28px 26px;
  border-radius: 20px;
  border: 1px solid var(--nr-line);
  background: linear-gradient(180deg, rgba(8, 20, 34, 0.94), rgba(8, 18, 31, 0.92));
  box-shadow: var(--nr-shadow);
}
.nr-program__body h3,
.nr-program__meta h3 { margin: 0 0 12px; font-size: 1.32rem; }
.nr-program__body p,
.nr-program__meta p { margin: 0 0 14px; color: var(--nr-muted); }
.nr-checklist { display: grid; gap: 10px; margin-top: 16px; }
.nr-checklist div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.nr-checklist strong { color: var(--nr-success); }
.nr-footer {
  padding: 34px 0 44px;
  color: #b7c9d8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nr-footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .nr-hero__grid,
  .nr-program,
  .nr-cards { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nr-topbar__inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .nr-copy { padding: 30px 24px; }
  .nr-facts { grid-template-columns: 1fr; }
  .nr-hero { padding-top: 30px; }
  .nr-title { font-size: clamp(2.2rem, 13vw, 3.7rem); }
  .nr-actions { flex-direction: column; }
  .nr-button { width: 100%; }
}
@media print {
  body { background: #fff; color: #111; }
  .nr-topbar { position: static; background: #fff; border-bottom: 1px solid #ddd; }
  .nr-panel, .nr-card, .nr-program__body, .nr-program__meta {
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
    border-color: #d7d7d7 !important;
  }
  .nr-lead, .nr-section__intro p, .nr-card p, .nr-program__body p, .nr-program__meta p { color: #333 !important; }
  .nr-button { border: 1px solid #ccc; color: #111 !important; background: #fff !important; }
  a { color: #111 !important; text-decoration: underline; }
}

/* NR MANIFOLD2 LAYOUT FIX START */
/*
 * Keep the NRM-45 hero visual subordinate to the page content.
 * The source graphic is 16:9, so it is displayed as a contained
 * presentation image rather than allowed to expand the grid.
 */
.nr-hero__grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
}

.nr-hero__grid > * {
  min-width: 0;
}

.nr-visual {
  align-self: center;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
}

.nr-visual img {
  width: 100%;
  height: 100%;
  max-height: 315px;
  object-fit: cover;
  object-position: center;
}

.nr-visual__badge {
  right: 14px;
  top: 14px;
  padding: 8px 11px;
  font-size: 0.72rem;
}

@media (max-width: 1100px) {
  .nr-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 24px;
  }

  .nr-copy {
    padding: 38px 34px;
  }

  .nr-visual {
    max-width: 500px;
  }

  .nr-visual img {
    max-height: 282px;
  }
}

@media (max-width: 900px) {
  .nr-hero__grid {
    grid-template-columns: 1fr;
  }

  .nr-visual {
    justify-self: center;
    max-width: 720px;
    width: min(100%, 720px);
  }

  .nr-visual img {
    max-height: none;
  }
}

@media (max-width: 560px) {
  .nr-hero {
    padding-top: 24px;
  }

  .nr-copy {
    padding: 28px 22px;
  }

  .nr-visual {
    border-radius: 16px;
  }

  .nr-visual__badge {
    right: 10px;
    top: 10px;
    padding: 7px 9px;
    font-size: 0.66rem;
  }
}
/* NR MANIFOLD2 LAYOUT FIX END */

/* NR MANUFACTURING HERO IMAGE SIZE FIX START */
/*
 * Keep the NRM-45 artwork subordinate to the hero copy.
 * The source graphic is 16:9 and should be displayed as an illustration,
 * not stretched to fill the full height of the hero column.
 */
.nr-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px) !important;
  align-items: center !important;
}

.nr-copy,
.nr-visual {
  min-width: 0 !important;
}

.nr-visual {
  width: 100% !important;
  max-width: 460px !important;
  min-height: 0 !important;
  height: auto !important;
  justify-self: end !important;
  align-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  overflow: hidden !important;
}

.nr-visual img {
  display: block !important;
  width: 100% !important;
  max-width: 420px !important;
  height: auto !important;
  max-height: 270px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 14px !important;
}

.nr-visual__badge {
  top: 12px !important;
  right: 12px !important;
  z-index: 2 !important;
  font-size: 0.72rem !important;
  padding: 7px 11px !important;
}

@media (max-width: 1050px) {
  .nr-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px) !important;
    gap: 22px !important;
  }

  .nr-visual {
    max-width: 400px !important;
  }

  .nr-visual img {
    max-width: 370px !important;
    max-height: 238px !important;
  }
}

@media (max-width: 860px) {
  .nr-hero__grid {
    grid-template-columns: 1fr !important;
  }

  .nr-visual {
    width: min(100%, 620px) !important;
    max-width: 620px !important;
    justify-self: center !important;
    margin: 0 auto !important;
  }

  .nr-visual img {
    width: min(100%, 560px) !important;
    max-width: 560px !important;
    max-height: none !important;
  }
}

@media (max-width: 560px) {
  .nr-visual {
    padding: 10px !important;
    border-radius: 16px !important;
  }

  .nr-visual img {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* NR MANUFACTURING HERO IMAGE SIZE FIX END */
