:root {
  --ncl-navy: #07111f;
  --ncl-panel: #0d1a2d;
  --ncl-gold: #d7aa43;
  --ncl-cream: #f5f0e6;
  --ncl-text: #eef3f8;
  --ncl-muted: #a8b5c6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, sans-serif; background: var(--ncl-navy); color: var(--ncl-text); }
a { color: inherit; }
.hidden { display: none !important; }

.ncl-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ncl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.ncl-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ncl-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ncl-logo-fallback,
.ncl-hero-logo-fallback {
  display: grid;
  place-items: center;
  border: 2px solid var(--ncl-gold);
  color: var(--ncl-gold);
  font-weight: 900;
  letter-spacing: .08em;
}

.ncl-logo-fallback { width: 52px; height: 52px; border-radius: 50%; }
.ncl-header-logo { width: 58px; height: 58px; object-fit: contain; }
.ncl-brand-kicker { color: var(--ncl-gold); text-transform: uppercase; font-size: 11px; letter-spacing: .22em; font-weight: 800; }
.ncl-brand-name { font-weight: 800; font-size: 18px; }

.ncl-nav { display: flex; gap: 24px; }
.ncl-nav a { text-decoration: none; color: #d9e1eb; font-weight: 700; font-size: 14px; }
.ncl-nav a:hover { color: var(--ncl-gold); }

.ncl-hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ncl-hero-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(215,170,67,.2), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #10213a 55%, #07111f 100%);
  background-size: cover;
  background-position: center;
}

.ncl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,17,31,.98) 0%, rgba(7,17,31,.86) 48%, rgba(7,17,31,.35) 100%);
}

.ncl-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 70px;
  align-items: center;
  padding: 110px 0;
}

.ncl-eyebrow,
.ncl-section-kicker {
  color: var(--ncl-gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 900;
}

.ncl-hero h1 {
  max-width: 780px;
  margin: 14px 0 22px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -.045em;
  color: white;
}

.ncl-hero-copy > p:not(.ncl-eyebrow) {
  max-width: 680px;
  color: #c7d2df;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.ncl-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.ncl-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.ncl-btn-primary { background: var(--ncl-gold); color: #111827; }
.ncl-btn-secondary { border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.06); color: white; }
.ncl-btn:hover { transform: translateY(-1px); }

.ncl-hero-mark { display: grid; place-items: center; }
.ncl-hero-logo-fallback {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  font-size: 76px;
  box-shadow: 0 0 80px rgba(215,170,67,.13);
}
.ncl-hero-logo { width: min(360px, 100%); max-height: 360px; object-fit: contain; }

.ncl-section { padding: 100px 0; }
.ncl-section-light { background: var(--ncl-cream); color: #172033; }
.ncl-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.ncl-section h2 { margin: 8px 0 0; font-size: clamp(34px, 4vw, 55px); line-height: 1.04; letter-spacing: -.03em; }
.ncl-prose { font-size: 19px; line-height: 1.8; color: #4a5567; }

.ncl-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}
.ncl-section-heading > p { max-width: 520px; color: var(--ncl-muted); line-height: 1.7; }
.ncl-section-light .ncl-section-heading > p { color: #647084; }

.ncl-division-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.ncl-division-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(160deg, var(--division-primary), var(--division-secondary));
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}
.ncl-division-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  top: -75px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.ncl-division-logo,
.ncl-division-logo-fallback {
  width: 94px;
  height: 94px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.ncl-division-logo-fallback {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  font-weight: 900;
  font-size: 28px;
}
.ncl-division-card h3 { position: relative; z-index: 1; margin: 32px 0 10px; color: white; font-size: 31px; }
.ncl-division-card p { position: relative; z-index: 1; color: rgba(255,255,255,.82); line-height: 1.6; }
.ncl-division-links { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: auto; }
.ncl-division-links a {
  padding: 11px 8px;
  text-align: center;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
.ncl-division-links a:hover { background: white; color: #111827; }
.ncl-division-links a[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.ncl-document-list { display: grid; gap: 14px; }
.ncl-document {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: white;
  border: 1px solid #dde2e9;
  border-radius: 16px;
}
.ncl-document-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: #f5ead0; color: #8a6519; }
.ncl-document h3 { margin: 0 0 5px; color: #182033; }
.ncl-document p { margin: 0; color: #697487; font-size: 14px; }
.ncl-document a { color: #172033; font-weight: 900; text-decoration: none; }

.ncl-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ncl-news-card { overflow: hidden; border-radius: 18px; background: var(--ncl-panel); border: 1px solid rgba(255,255,255,.09); }
.ncl-news-card img { width: 100%; height: 190px; object-fit: cover; }
.ncl-news-card-body { padding: 22px; }
.ncl-news-card small { color: var(--ncl-gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.ncl-news-card h3 { color: white; }
.ncl-news-card a { text-decoration: none; }

.ncl-partners { background: #0a1526; }
.ncl-partner-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.ncl-partner {
  min-width: 220px;
  min-height: 130px;
  padding: 20px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: white;
  color: #172033;
  text-decoration: none;
  font-weight: 900;
}
.ncl-partner img { max-width: 170px; max-height: 75px; object-fit: contain; }

.ncl-empty {
  padding: 28px;
  border: 1px dashed currentColor;
  border-radius: 16px;
  opacity: .68;
}

.ncl-footer { border-top: 1px solid rgba(255,255,255,.08); background: #050c16; }
.ncl-footer-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--ncl-muted); }
.ncl-footer-link { color: white; font-weight: 800; text-decoration: none; }

@media (max-width: 850px) {
  .ncl-nav { display: none; }
  .ncl-hero-content,
  .ncl-intro-grid { grid-template-columns: 1fr; }
  .ncl-hero-mark { display: none; }
  .ncl-division-grid,
  .ncl-news-grid { grid-template-columns: 1fr; }
  .ncl-section-heading { display: block; }
  .ncl-section-heading > p { margin-top: 16px; }
}

@media (max-width: 560px) {
  .ncl-shell { width: min(100% - 24px, 1180px); }
  .ncl-brand-name { font-size: 15px; }
  .ncl-hero { min-height: 620px; }
  .ncl-hero-content { padding: 80px 0; }
  .ncl-section { padding: 72px 0; }
  .ncl-document { grid-template-columns: 46px 1fr; }
  .ncl-document > a { grid-column: 2; }
  .ncl-footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; }
}
